From c844c82e7e49a8507fba6280db191764056eb4a6 Mon Sep 17 00:00:00 2001
From: podlesny <podlesny@zedat.fu-berlin.de>
Date: Tue, 16 Mar 2021 00:25:34 +0100
Subject: [PATCH] remove debug print

---
 dune/tectonic/spatial-solving/fixedpointiterator.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/tectonic/spatial-solving/fixedpointiterator.cc b/dune/tectonic/spatial-solving/fixedpointiterator.cc
index f21aa580..63682ee5 100644
--- a/dune/tectonic/spatial-solving/fixedpointiterator.cc
+++ b/dune/tectonic/spatial-solving/fixedpointiterator.cc
@@ -124,7 +124,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run(
   Vector total_v;
   nBodyAssembler_.nodalToTransformed(velocityIterates, total_v);
 
-  print(velocityIterates, "velocityIterates start:");
+  //print(velocityIterates, "velocityIterates start:");
 
   for (fixedPointIteration = 0; fixedPointIteration < fixedPointMaxIterations_;
        ++fixedPointIteration) {
@@ -176,7 +176,7 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run(
   nBodyAssembler_.postprocess(total_v, velocityIterates);
   updaters.rate_->postProcess(velocityIterates);
 
-  print(velocityIterates, "velocityIterates end:");
+  //print(velocityIterates, "velocityIterates end:");
 
   // Cannot use return { fixedPointIteration, multigridIterations };
   // with gcc 4.9.2, see also http://stackoverflow.com/a/37777814/179927
-- 
GitLab