From 33837ef60b6da5999399a923c5d35cb3d417fc87 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Fri, 1 Jun 2012 11:18:50 +0200 Subject: [PATCH] Comments / whitespace --- dune/tectonic/myblockproblem.hh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dune/tectonic/myblockproblem.hh b/dune/tectonic/myblockproblem.hh index 56b06798..2c91cfbd 100644 --- a/dune/tectonic/myblockproblem.hh +++ b/dune/tectonic/myblockproblem.hh @@ -65,14 +65,14 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem { }; MyBlockProblem(Dune::ParameterTree const &parset, - const MyConvexProblemType &problem) + MyConvexProblemType const &problem) : parset(parset), problem(problem) { - bisection = Bisection( - 0.0, // acceptError: Stop if the search interval has - // become smaller than this number - parset.get<double>("bisection.acceptFactor"), - parset.get<double>("bisection.requiredResidual"), true, // fastQuadratic - 0); // safety: acceptance factor for inexact minimization + bisection = Bisection(0.0, // acceptError: Stop if the search interval has + // become smaller than this number + parset.get<double>("bisection.acceptFactor"), + parset.get<double>("bisection.requiredResidual"), + true, // fastQuadratic + 0); // acceptance factor for inexact minimization } std::string getOutput(bool header = false) const { -- GitLab