Skip to content
Snippets Groups Projects
Commit 97426e55 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Constness

parent 4ed3e31b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment