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 { ...@@ -65,14 +65,14 @@ template <class MyConvexProblemTypeTEMPLATE> class MyBlockProblem {
}; };
MyBlockProblem(Dune::ParameterTree const &parset, MyBlockProblem(Dune::ParameterTree const &parset,
const MyConvexProblemType &problem) MyConvexProblemType const &problem)
: parset(parset), problem(problem) { : parset(parset), problem(problem) {
bisection = Bisection( bisection = Bisection(0.0, // acceptError: Stop if the search interval has
0.0, // acceptError: Stop if the search interval has // become smaller than this number
// become smaller than this number parset.get<double>("bisection.acceptFactor"),
parset.get<double>("bisection.acceptFactor"), parset.get<double>("bisection.requiredResidual"),
parset.get<double>("bisection.requiredResidual"), true, // fastQuadratic true, // fastQuadratic
0); // safety: acceptance factor for inexact minimization 0); // acceptance factor for inexact minimization
} }
std::string getOutput(bool header = false) const { 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