diff --git a/dune/tectonic/time-stepping/adaptivetimestepper.cc b/dune/tectonic/time-stepping/adaptivetimestepper.cc index 924af2e8b9a8f8f68b757c0a8775cf71b349f8f5..d9ef1c5aa09e303d457be8d9f3ee6a0fb1d479d7 100644 --- a/dune/tectonic/time-stepping/adaptivetimestepper.cc +++ b/dune/tectonic/time-stepping/adaptivetimestepper.cc @@ -140,7 +140,7 @@ int AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNorms>::refine(U F1 = F1_Step.get(); //updateReductionFactors(reductionFactors); - //std::cout << "AdaptiveTimeStepper F1 computed!" << std::endl << std::endl; + std::cout << "AdaptiveTimeStepper F1 computed!" << std::endl << std::endl; setDeformation(F1.updaters); //auto F2_linearSolver = makeLinearSolver(); @@ -197,7 +197,7 @@ int AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNorms>::determin auto C_Step = Step(stepBase_, current_, currentNBodyAssembler, relativeTime_, 2 * relativeTau_, iterationRegister_); C_Step.run(Step::Mode::sameThread); // newThread //updateReductionFactors(reductionFactors); - //std::cout << "AdaptiveTimeStepper C computed!" << std::endl << std::endl; + std::cout << "AdaptiveTimeStepper C computed!" << std::endl << std::endl; setDeformation(R1_.updaters); //auto R2_linearSolver = makeLinearSolver(); @@ -206,7 +206,7 @@ int AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNorms>::determin R2_Step.run(Step::Mode::sameThread); //newThread //updateReductionFactors(reductionFactors); - //std::cout << "AdaptiveTimeStepper R2 computed!" << std::endl << std::endl; + std::cout << "AdaptiveTimeStepper R2 computed!" << std::endl << std::endl; if (N_THREADS < 3) { C = C_Step.get(); @@ -223,7 +223,7 @@ int AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNorms>::determin auto F1_Step = Step(stepBase_, current_, currentNBodyAssembler, relativeTime_, relativeTau_ / 2.0, iterationRegister_); F1_Step.run(Step::Mode::sameThread); //newThread //updateReductionFactors(reductionFactors); - //std::cout << "AdaptiveTimeStepper F1 computed!" << std::endl << std::endl; + std::cout << "AdaptiveTimeStepper F1 computed!" << std::endl << std::endl; if (N_THREADS > 2) { C = C_Step.get(); @@ -282,7 +282,7 @@ IterationRegister AdaptiveTimeStepper<Factory, ContactNetwork, Updaters, ErrorNo of size tau/2 with one of size tau. The method makes multiple coarsening/refining attempts, with coarsening coming first. */ - //std::cout << "AdaptiveTimeStepper::advance()" << std::endl; + std::cout << "AdaptiveTimeStepper::advance()" << std::endl; using Step = Step<Factory, ContactNetwork, Updaters, ErrorNorms>;