Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
amdis
amdis-core
Commits
b0dac1a2
Commit
b0dac1a2
authored
Mar 18, 2019
by
Praetorius, Simon
Browse files
correct dimension in datatransfer checkInside for surface grids
parent
95a126a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/amdis/DataTransfer.inc.hpp
View file @
b0dac1a2
...
...
@@ -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
));
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment