|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.analysis.solvers.BaseAbstractUnivariateRealSolver<FUNC>
FUNC - Type of function to solve.public abstract class BaseAbstractUnivariateRealSolver<FUNC extends UnivariateRealFunction>
Provide a default implementation for several functions useful to generic solvers.
| Constructor Summary | |
|---|---|
protected |
BaseAbstractUnivariateRealSolver(double absoluteAccuracy)
Construct a solver with given absolute accuracy. |
protected |
BaseAbstractUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy)
Construct a solver with given accuracies. |
protected |
BaseAbstractUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy,
double functionValueAccuracy)
Construct a solver with given accuracies. |
| Method Summary | |
|---|---|
protected double |
computeObjectiveValue(double point)
Compute the objective function value. |
protected abstract double |
doSolve()
Method for implementing actual optimization algorithms in derived classes. |
double |
getAbsoluteAccuracy()
|
int |
getEvaluations()
Get the number of evaluations of the objective function. |
double |
getFunctionValueAccuracy()
|
double |
getMax()
|
int |
getMaxEvaluations()
Get the maximal number of function evaluations. |
double |
getMin()
|
double |
getRelativeAccuracy()
|
double |
getStartValue()
|
protected void |
incrementEvaluationCount()
Increment the evaluation count by one. |
protected boolean |
isBracketing(double lower,
double upper)
Check whether the function takes opposite signs at the endpoints. |
protected boolean |
isSequence(double start,
double mid,
double end)
Check whether the arguments form a (strictly) increasing sequence. |
protected void |
setup(int maxEval,
FUNC f,
double min,
double max,
double startValue)
Prepare for computation. |
double |
solve(int maxEval,
FUNC f,
double startValue)
Solve for a zero in the vicinity of startValue. |
double |
solve(int maxEval,
FUNC f,
double min,
double max)
Solve for a zero root in the given interval. |
double |
solve(int maxEval,
FUNC f,
double min,
double max,
double startValue)
Solve for a zero in the given interval, start at startValue. |
protected void |
verifyBracketing(double lower,
double upper)
Check that the endpoints specify an interval and the function takes opposite signs at the endpoints. |
protected void |
verifyInterval(double lower,
double upper)
Check that the endpoints specify an interval. |
protected void |
verifySequence(double lower,
double initial,
double upper)
Check that lower < initial < upper. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected BaseAbstractUnivariateRealSolver(double absoluteAccuracy)
absoluteAccuracy - Maximum absolute error.
protected BaseAbstractUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy)
relativeAccuracy - Maximum relative error.absoluteAccuracy - Maximum absolute error.
protected BaseAbstractUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy,
double functionValueAccuracy)
relativeAccuracy - Maximum relative error.absoluteAccuracy - Maximum absolute error.functionValueAccuracy - Maximum function value error.| Method Detail |
|---|
public int getMaxEvaluations()
getMaxEvaluations in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>public int getEvaluations()
optimize method. It is 0 if the method has not been
called yet.
getEvaluations in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>public double getMin()
public double getMax()
public double getStartValue()
public double getAbsoluteAccuracy()
getAbsoluteAccuracy in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>public double getRelativeAccuracy()
getRelativeAccuracy in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>public double getFunctionValueAccuracy()
getFunctionValueAccuracy in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>
protected double computeObjectiveValue(double point)
throws TooManyEvaluationsException
point - Point at which the objective function must be evaluated.
TooManyEvaluationsException - if the maximal number of evaluations
is exceeded.
protected void setup(int maxEval,
FUNC f,
double min,
double max,
double startValue)
solve methods.
f - Function to solve.min - Lower bound for the interval.max - Upper bound for the interval.startValue - Start value to use.maxEval - Maximum number of evaluations.
public double solve(int maxEval,
FUNC f,
double min,
double max,
double startValue)
startValue.
A solver may require that the interval brackets a single zero root.
Solvers that do require bracketing should be able to handle the case
where one of the endpoints is itself a root.
solve in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>maxEval - Maximum number of evaluations.f - Function to solve.min - Lower bound for the interval.max - Upper bound for the interval.startValue - Start value to use.
public double solve(int maxEval,
FUNC f,
double min,
double max)
solve in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>maxEval - Maximum number of evaluations.f - Function to solve.min - Lower bound for the interval.max - Upper bound for the interval.
public double solve(int maxEval,
FUNC f,
double startValue)
startValue.
solve in interface BaseUnivariateRealSolver<FUNC extends UnivariateRealFunction>maxEval - Maximum number of evaluations.f - Function to solve.startValue - Start value to use.
protected abstract double doSolve()
throws TooManyEvaluationsException,
NoBracketingException
TooManyEvaluationsException - if the maximal number of evaluations
is exceeded.
NoBracketingException - if the initial search interval does not bracket
a root and the solver requires it.
protected boolean isBracketing(double lower,
double upper)
lower - Lower endpoint.upper - Upper endpoint.
true if the function values have opposite signs at the
given points.
protected boolean isSequence(double start,
double mid,
double end)
start - First number.mid - Second number.end - Third number.
true if the arguments form an increasing sequence.
protected void verifyInterval(double lower,
double upper)
lower - Lower endpoint.upper - Upper endpoint.
NumberIsTooLargeException - if lower >= upper.
protected void verifySequence(double lower,
double initial,
double upper)
lower < initial < upper.
lower - Lower endpoint.initial - Initial value.upper - Upper endpoint.
NumberIsTooLargeException - if lower >= initial or initial >= upper.
protected void verifyBracketing(double lower,
double upper)
lower - Lower endpoint.upper - Upper endpoint.
NoBracketingException - if
the function has the same sign at the endpoints.protected void incrementEvaluationCount()
computeObjectiveValue(double) calls this method internally.
It is provided for subclasses that do not exclusively use
computeObjectiveValue to solve the function.
See e.g. AbstractDifferentiableUnivariateRealSolver.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||