Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit f194d79b authored by frey_m's avatar frey_m
Browse files

RectangularDomain: remove check

parent c1d3ed41
No related branches found
No related tags found
1 merge request!372Resolve "SAAMG: Enable RectangularDomain"
...@@ -90,13 +90,6 @@ void RectangularDomain::getBoundaryStencil(int x, int y, int z, double &W, ...@@ -90,13 +90,6 @@ void RectangularDomain::getBoundaryStencil(int x, int y, int z, double &W,
if (z == nr[2] - 1) if (z == nr[2] - 1)
B = 0.0; B = 0.0;
//simple check if center value of stencil is positive
#ifdef DEBUG
if (C <= 0)
throw OpalException("RectangularDomain::getBoundaryStencil",
"Stencil C is <= 0! This case should never occur!");
#endif
} }
void RectangularDomain::getBoundaryStencil(int idx, double &W, double &E, void RectangularDomain::getBoundaryStencil(int idx, double &W, double &E,
......
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