From 70535bf919bac93fa3414254a38f18af53fd0d10 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Tue, 9 Oct 2012 06:26:22 +0000 Subject: [PATCH] Use the type for JacobianInverseTransposed that is exported by the Geometry Starting with dune-2.3 we cannot assume that it is a FieldMatrix anymore. [[Imported from SVN: r6885]] --- dune/solvers/test/common.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/solvers/test/common.hh b/dune/solvers/test/common.hh index 7b68d5fb..ee156120 100644 --- a/dune/solvers/test/common.hh +++ b/dune/solvers/test/common.hh @@ -68,7 +68,7 @@ void assemblePQ1Stiffness(const GridView& gridView, Matrix& matrix) typedef typename Dune::QuadratureRule<double,dim> QuadratureRule; typedef typename Dune::template FieldVector<double,dim> LocalCoordinate; typedef typename Dune::template FieldVector<double,dimworld> GlobalCoordinate; - typedef typename Dune::template FieldMatrix<double,dimworld,dim> InverseJacobianTransposed; + typedef typename Element::Geometry::JacobianInverseTransposed InverseJacobianTransposed; typedef typename FiniteElement::Traits::LocalBasisType::Traits::JacobianType JacobianType; const IndexSet& indexSet = gridView.indexSet(); -- GitLab