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

Comments / whitespace

parent 78073e0f
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
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