public abstract class UnivariateOptimizer extends BaseOptimizer<UnivariatePointValuePair>
evaluations, iterations
Modifier | Constructor and Description |
---|---|
protected |
UnivariateOptimizer(ConvergenceChecker<UnivariatePointValuePair> checker) |
Modifier and Type | Method and Description |
---|---|
protected double |
computeObjectiveValue(double x)
Computes the objective function value.
|
GoalType |
getGoalType() |
double |
getMax() |
double |
getMin() |
double |
getStartValue() |
UnivariatePointValuePair |
optimize(OptimizationData... optData)
Stores data and performs the optimization.
|
doOptimize, getConvergenceChecker, getEvaluations, getIterations, getMaxEvaluations, getMaxIterations, incrementEvaluationCount, incrementIterationCount
protected UnivariateOptimizer(ConvergenceChecker<UnivariatePointValuePair> checker)
checker
- Convergence checker.public UnivariatePointValuePair optimize(OptimizationData... optData)
optimize
in class BaseOptimizer<UnivariatePointValuePair>
optData
- Optimization data.
The following data will be looked for:
TooManyEvaluationsException
- if the maximal number of
evaluations is exceeded.public GoalType getGoalType()
public double getStartValue()
public double getMin()
public double getMax()
protected double computeObjectiveValue(double x)
x
- Point at which the objective function must be evaluated.TooManyEvaluationsException
- if the maximal number of
evaluations is exceeded.Copyright © 2017 CNES. All rights reserved.