From 97426e55aedd9451d97cee0e7dfb6ac513424eef Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Tue, 6 Dec 2011 18:54:45 +0100 Subject: [PATCH] Constness --- dune/tectonic/myblockproblem.hh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dune/tectonic/myblockproblem.hh b/dune/tectonic/myblockproblem.hh index c413a0bf..078ec7b3 100644 --- a/dune/tectonic/myblockproblem.hh +++ b/dune/tectonic/myblockproblem.hh @@ -27,7 +27,8 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem { /** \brief Solves one local system using a modified gradient method */ class IterateObject; - MyBlockProblem(Dune::ParameterTree &parset, MyConvexProblemType &problem) + MyBlockProblem(Dune::ParameterTree const &parset, + MyConvexProblemType &problem) : parset(parset), problem(problem) { bisection = Bisection( 0.0, // acceptError: Stop if the search interval has @@ -49,7 +50,7 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem { // commonly used minimization stuff Bisection bisection; - Dune::ParameterTree &parset; + Dune::ParameterTree const &parset; }; /** \brief Solves one local system using a scalar Gauss-Seidel method */ @@ -62,7 +63,7 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject { * \param bisection The class used to do a scalar bisection * \param problem The problem including quadratic part and nonlinear part */ - IterateObject(Dune::ParameterTree &parset, Bisection const &bisection, + IterateObject(Dune::ParameterTree const &parset, Bisection const &bisection, MyConvexProblemType &problem) : parset(parset), problem(problem), bisection(bisection) {} @@ -129,7 +130,7 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject { } private: - Dune::ParameterTree &parset; + Dune::ParameterTree const &parset; // problem data MyConvexProblemType &problem; -- GitLab