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

Make bisection a parameter

parent 31024bd4
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,16 @@ template <int dimension> class SampleFunctional { ...@@ -119,7 +119,16 @@ template <int dimension> class SampleFunctional {
template <class Functional> template <class Functional>
void minimise(const Functional J, const typename Functional::SmallVector x, void minimise(const Functional J, const typename Functional::SmallVector x,
typename Functional::SmallVector &corr) { typename Functional::SmallVector &corr,
Bisection const &bisection =
Bisection(0.0, // acceptError: Stop if the search interval has
// become smaller than this number
1.0, // acceptFactor: ?
1e-12, // requiredResidual: ?
true, // fastQuadratic
0)) // safety: acceptance factor for inexact
// minimization
{
typedef typename Functional::SmallVector SmallVector; typedef typename Functional::SmallVector SmallVector;
SmallVector descDir; SmallVector descDir;
J.descentDirection(x, descDir); J.descentDirection(x, descDir);
...@@ -165,12 +174,6 @@ void minimise(const Functional J, const typename Functional::SmallVector x, ...@@ -165,12 +174,6 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
0); // We should not be minimising in this direction otherwise 0); // We should not be minimising in this direction otherwise
} }
Bisection bisection(0.0, // acceptError: Stop if the search interval has
// become smaller than this number
1.0, // acceptFactor: ?
1e-12, // requiredResidual: ?
true, // fastQuadratic
0); // safety: acceptance factor for inexact minimization
int count; int count;
// FIXME: The value of x_old should not matter if the factor is 1.0, correct? // FIXME: The value of x_old should not matter if the factor is 1.0, correct?
double const stepsize = bisection.minimize(JRest, 0.0, 1.0, count); double const stepsize = bisection.minimize(JRest, 0.0, 1.0, count);
......
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