From dfcc0938ad9ee9fbb06c7718bc6bf7d0af8d07bb Mon Sep 17 00:00:00 2001 From: podlesny <podlesny@zedat.fu-berlin.de> Date: Tue, 14 Sep 2021 00:43:06 +0200 Subject: [PATCH] remove debugging break after max number of iterations --- 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 2798c765..12d0806b 100644 --- a/dune/tectonic/spatial-solving/fixedpointiterator.cc +++ b/dune/tectonic/spatial-solving/fixedpointiterator.cc @@ -161,11 +161,11 @@ FixedPointIterator<Factory, NBodyAssembler, Updaters, ErrorNorms>::run( break; } - if (res.iterations>200) { + /*if (res.iterations>200) { std::cout << "FixedPointIterator: TNNMG did not converge, iterations: " << res.iterations << std::endl; //DUNE_THROW(Dune::Exception, "FixedPointIterator: TNNMG did not converge"); break; - } + }*/ alpha = newAlpha; } -- GitLab