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

correct dimension in datatransfer checkInside for surface grids

parent 95a126a5
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
LocalCoordinate local = childGeo.local(geo.global(x));
// TODO(FM): Using an implementation detail as workaround for insufficient
// tolerance, see https://gitlab.dune-project.org/core/dune-grid/issues/84
bool isInside = Dune::Geo::Impl::template checkInside<ctype,d>
(refTypeId, d, local, checkInsideTolerance);
bool isInside = Dune::Geo::Impl::checkInside(refTypeId, d, local, checkInsideTolerance);
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