|
||||||||||
| 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<DifferentiableUnivariateRealFunction>
org.apache.commons.math.analysis.solvers.AbstractDifferentiableUnivariateRealSolver
public abstract class AbstractDifferentiableUnivariateRealSolver
Provide a default implementation for several functions useful to generic solvers.
| Constructor Summary | |
|---|---|
protected |
AbstractDifferentiableUnivariateRealSolver(double absoluteAccuracy)
Construct a solver with given absolute accuracy. |
protected |
AbstractDifferentiableUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy,
double functionValueAccuracy)
Construct a solver with given accuracies. |
| Method Summary | |
|---|---|
protected double |
computeDerivativeObjectiveValue(double point)
Compute the objective function value. |
protected void |
setup(int maxEval,
DifferentiableUnivariateRealFunction f,
double min,
double max,
double startValue)
Prepare for computation. |
| Methods inherited from class org.apache.commons.math.analysis.solvers.BaseAbstractUnivariateRealSolver |
|---|
computeObjectiveValue, doSolve, getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMax, getMaxEvaluations, getMin, getRelativeAccuracy, getStartValue, incrementEvaluationCount, isBracketing, isSequence, solve, solve, solve, verifyBracketing, verifyInterval, verifySequence |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.apache.commons.math.analysis.solvers.BaseUnivariateRealSolver |
|---|
getAbsoluteAccuracy, getEvaluations, getFunctionValueAccuracy, getMaxEvaluations, getRelativeAccuracy, solve, solve, solve |
| Constructor Detail |
|---|
protected AbstractDifferentiableUnivariateRealSolver(double absoluteAccuracy)
absoluteAccuracy - Maximum absolute error.
protected AbstractDifferentiableUnivariateRealSolver(double relativeAccuracy,
double absoluteAccuracy,
double functionValueAccuracy)
relativeAccuracy - Maximum relative error.absoluteAccuracy - Maximum absolute error.functionValueAccuracy - Maximum function value error.| Method Detail |
|---|
protected double computeDerivativeObjectiveValue(double point)
point - Point at which the objective function must be evaluated.
TooManyEvaluationsException - if the maximal number of evaluations is exceeded.
protected void setup(int maxEval,
DifferentiableUnivariateRealFunction f,
double min,
double max,
double startValue)
solve methods.
setup in class BaseAbstractUnivariateRealSolver<DifferentiableUnivariateRealFunction>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.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||