Skip to content
Snippets Groups Projects
Commit 2fac40ac authored by Carsten Gräser's avatar Carsten Gräser
Browse files

Merge branch 'bugfix/jacobianinverse-python' into 'master'

[bugfix][python] Fix geometry.jacobianInverse() in python

See merge request !736
parents 6ea1a270 7b5bff97
No related branches found
No related tags found
1 merge request!736[bugfix][python] Fix geometry.jacobianInverse() in python
Pipeline #70512 passed
......@@ -303,7 +303,7 @@ namespace Dune
} );
cls.def( "jacobianInverse", [] ( const Geometry &self, const LocalCoordinate &x ) {
return static_cast< JacobianInverseTransposed >( self.jacobianInverseTransposed( x ) );
return static_cast< JacobianInverse >( self.jacobianInverse( x ) );
}, "x"_a,
R"doc(
obtain inverse Jacobian of this mapping in a local point
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment