Skip to content
Snippets Groups Projects
Commit 87e7a942 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/datatransfer_surfacegrid' into 'master'

correct dimension in datatransfer checkInside for surface grids

See merge request !12
parents c3c0e160 b0dac1a2
No related branches found
No related tags found
1 merge request!12correct dimension in datatransfer checkInside for surface grids
...@@ -189,8 +189,7 @@ namespace AMDiS ...@@ -189,8 +189,7 @@ namespace AMDiS
LocalCoordinate local = childGeo.local(geo.global(x)); LocalCoordinate local = childGeo.local(geo.global(x));
// TODO(FM): Using an implementation detail as workaround for insufficient // TODO(FM): Using an implementation detail as workaround for insufficient
// tolerance, see https://gitlab.dune-project.org/core/dune-grid/issues/84 // tolerance, see https://gitlab.dune-project.org/core/dune-grid/issues/84
bool isInside = Dune::Geo::Impl::template checkInside<ctype,d> bool isInside = Dune::Geo::Impl::checkInside(refTypeId, d, local, checkInsideTolerance);
(refTypeId, d, local, checkInsideTolerance);
return BoolCoordPair(isInside, std::move(local)); return BoolCoordPair(isInside, std::move(local));
}; };
......
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