Skip to content
Snippets Groups Projects
Commit 30e58b38 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

bugfix of the bugfix

[[Imported from SVN: r665]]
parent 4a779594
No related branches found
No related tags found
No related merge requests found
...@@ -278,7 +278,7 @@ int main (int argc, char *argv[]) try ...@@ -278,7 +278,7 @@ int main (int argc, char *argv[]) try
corr = contactMMGStep.getSol(); corr = contactMMGStep.getSol();
printf("infinity norm of the correction: %g\n", corr.infinity_norm()); printf("infinity norm of the correction: %g\n", corr.infinity_norm());
if (corr.infinity_norm()) { if (corr.infinity_norm() < 1e-5) {
std::cout << "CORRECTION IS SMALL ENOUGH" << std::endl; std::cout << "CORRECTION IS SMALL ENOUGH" << std::endl;
break; break;
} }
......
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