From 0c61e42f4ced480b6105768d0e1d6e24d790da8d Mon Sep 17 00:00:00 2001 From: Jonathan Youett <youett@mi.fu-berlin.de> Date: Fri, 14 Oct 2011 12:56:50 +0000 Subject: [PATCH] bugfix... [[Imported from SVN: r7917]] --- dune/gfe/globalgeodesicfefunction.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dune/gfe/globalgeodesicfefunction.hh b/dune/gfe/globalgeodesicfefunction.hh index 47b01add..618b1a8e 100644 --- a/dune/gfe/globalgeodesicfefunction.hh +++ b/dune/gfe/globalgeodesicfefunction.hh @@ -38,7 +38,7 @@ GlobalGeodesicFEFunction { {} /** \brief Evaluate the function at local coordinates. */ - void evaluateLocal(const Element& element, const Dune::FieldVector<gridDim,ctype>& local, TargetSpace& out) + void evaluateLocal(const Element& element, const Dune::FieldVector<ctype,gridDim>& local, TargetSpace& out) { int numOfBasisFct = basis_.getLocalFiniteElement(element).size(); @@ -54,7 +54,7 @@ GlobalGeodesicFEFunction { } /** \brief Evaluate the derivative of the function at local coordinates. */ - void evaluateDerivativeLocal(const Element& element, const Dune::FieldVector<gridDim,ctype>& local, + void evaluateDerivativeLocal(const Element& element, const Dune::FieldVector<ctype,gridDim>& local, Dune::FieldMatrix<ctype, embeddedDim, gridDim>& out) { int numOfBasisFct = basis_.getLocalFiniteElement(element).size(); -- GitLab