Skip to content
Snippets Groups Projects
Commit c844c82e authored by podlesny's avatar podlesny
Browse files

remove debug print

parent 6b0114c7
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run( ...@@ -124,7 +124,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run(
Vector total_v; Vector total_v;
nBodyAssembler_.nodalToTransformed(velocityIterates, total_v); nBodyAssembler_.nodalToTransformed(velocityIterates, total_v);
print(velocityIterates, "velocityIterates start:"); //print(velocityIterates, "velocityIterates start:");
for (fixedPointIteration = 0; fixedPointIteration < fixedPointMaxIterations_; for (fixedPointIteration = 0; fixedPointIteration < fixedPointMaxIterations_;
++fixedPointIteration) { ++fixedPointIteration) {
...@@ -176,7 +176,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run( ...@@ -176,7 +176,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run(
nBodyAssembler_.postprocess(total_v, velocityIterates); nBodyAssembler_.postprocess(total_v, velocityIterates);
updaters.rate_->postProcess(velocityIterates); updaters.rate_->postProcess(velocityIterates);
print(velocityIterates, "velocityIterates end:"); //print(velocityIterates, "velocityIterates end:");
// Cannot use return { fixedPointIteration, multigridIterations }; // Cannot use return { fixedPointIteration, multigridIterations };
// with gcc 4.9.2, see also http://stackoverflow.com/a/37777814/179927 // with gcc 4.9.2, see also http://stackoverflow.com/a/37777814/179927
......
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