Skip to content
Snippets Groups Projects
Commit 6e9312c2 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

[Cleanup] Cosmetics

parent f1c90be9
No related branches found
No related tags found
No related merge requests found
...@@ -499,17 +499,15 @@ int main(int argc, char *argv[]) { ...@@ -499,17 +499,15 @@ int main(int argc, char *argv[]) {
timeSteppingScheme->extractVelocity(v); timeSteppingScheme->extractVelocity(v);
iterationWriter << iterationCounter << " "; iterationWriter << iterationCounter << " ";
if (printProgress) { if (printProgress)
std::cerr << '.'; (std::cerr << '.').flush();
std::cerr.flush();
}
if (state_fpi > 1) { if (state_fpi > 1) {
double const correctionNorm = velocityEnergyNorm.diff(u_saved, u); double const correctionNorm = velocityEnergyNorm.diff(u_saved, u);
if (correctionNorm < fixedPointTolerance) { if (correctionNorm < fixedPointTolerance) {
if (printProgress)) { if (printProgress)
std::cerr << '#'; (std::cerr << '#').flush();
std::cerr.flush();
}
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