79 if (levelSet ==
nullptr) {
81 .addWarning(
"No level set was passed to Check.")
86 std::ostringstream oss;
90 it(levelSet->getDomain());
91 !it.isFinished(); it.next()) {
93 if (it.getCenter().isDefined()) {
94 for (
int i = 0; i < 2 *
D; ++i) {
95 if (it.getNeighbor(i).isDefined()) {
96 if (std::abs(GetStatusFromDistance(it.getCenter().getValue()) -
97 GetStatusFromDistance(it.getNeighbor(i).getValue())) >
99 oss <<
"The defined point " << it.getCenter().getStartIndices()
100 <<
" has an inconsistent defined neighbor in direction "
101 << getDirectionString(i) <<
"!" << std::endl;
103 oss <<
"Value center point: " << it.getCenter().getValue()
104 <<
" Value neighbor point: " << it.getNeighbor(i).getValue()
108 if (it.getNeighbor(i).getValue() >= 0.) {
109 if (it.getCenter().getValue() <
T(-0.5)) {
110 oss <<
"The defined point " << it.getCenter().getStartIndices()
111 <<
" has a level set value less than -0.5 but has an "
112 "undefined positive neighbor in direction "
113 << getDirectionString(i) <<
"!" << std::endl;
116 if (it.getCenter().getValue() >
T(0.5)) {
117 oss <<
"The defined point " << it.getCenter().getStartIndices()
118 <<
" has a level set value greater than 0.5 but has an "
119 "undefined negative neighbor in direction "
120 << getDirectionString(i) <<
"!" << std::endl;
126 for (
int i = 0; i < 2 *
D; ++i) {
127 if (!it.getNeighbor(i).isDefined()) {
128 if (isNegative(it.getCenter().getValue()) !=
129 isNegative(it.getNeighbor(i).getValue())) {
130 oss <<
"The undefined run from "
131 << it.getCenter().getStartIndices() <<
" to "
132 << it.getCenter().getEndIndices()
133 <<
" has undefined neighbor grid points of opposite sign in "
135 << getDirectionString(i) <<
"!" << std::endl;
143 if (std::string s = oss.str(); !s.empty()) {
147 std::string message =
"Report from Check:\n" + s;
148 Logger::getInstance().addError(s);