Skip to content
Snippets Groups Projects
Commit 09a037a4 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/test_mpfa2p' into 'master'

Correction of mpfa2p tests

See merge request !424
parent 0ba98aea
No related branches found
No related tags found
Loading
...@@ -279,7 +279,7 @@ private: ...@@ -279,7 +279,7 @@ private:
{ {
for (int i = 0; i < dim; i++) for (int i = 0; i < dim; i++)
{ {
if (globalPos[i] < lensOneLowerLeft_[i] + eps_ || globalPos[i] > lensOneUpperRight_[i] - eps_) if (globalPos[i] < lensOneLowerLeft_[i] - eps_ || globalPos[i] > lensOneUpperRight_[i] + eps_)
{ {
return false; return false;
} }
...@@ -290,7 +290,7 @@ private: ...@@ -290,7 +290,7 @@ private:
{ {
for (int i = 0; i < dim; i++) for (int i = 0; i < dim; i++)
{ {
if (globalPos[i] < lensTwoLowerLeft_[i] + eps_ || globalPos[i] > lensTwoUpperRight_[i] - eps_) if (globalPos[i] < lensTwoLowerLeft_[i] - eps_ || globalPos[i] > lensTwoUpperRight_[i] + eps_)
{ {
return false; return false;
} }
...@@ -301,7 +301,7 @@ private: ...@@ -301,7 +301,7 @@ private:
{ {
for (int i = 0; i < dim; i++) for (int i = 0; i < dim; i++)
{ {
if (globalPos[i] < lensThreeLowerLeft_[i] + eps_ || globalPos[i] > lensThreeUpperRight_[i] - eps_) if (globalPos[i] < lensThreeLowerLeft_[i] - eps_ || globalPos[i] > lensThreeUpperRight_[i] + eps_)
{ {
return false; return false;
} }
......
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