public class SimpleValueChecker extends AbstractConvergenceChecker<PointValuePair>
ConvergenceChecker
interface using
only objective function values.
Convergence is considered to have been reached if either the relative
difference between the objective function values is smaller than a
threshold or if either the absolute difference between the objective
function values is smaller than another threshold. converged
method will also return true
if the
number of iterations has been set
(see this constructor
).Constructor and Description |
---|
SimpleValueChecker(double relativeThreshold,
double absoluteThreshold)
Build an instance with specified thresholds.
|
SimpleValueChecker(double relativeThreshold,
double absoluteThreshold,
int maxIter)
Builds an instance with specified thresholds.
|
Modifier and Type | Method and Description |
---|---|
boolean |
converged(int iteration,
PointValuePair previous,
PointValuePair current)
Check if the optimization algorithm has converged considering the
last two points.
|
getAbsoluteThreshold, getRelativeThreshold
public SimpleValueChecker(double relativeThreshold, double absoluteThreshold)
relativeThreshold
- relative tolerance thresholdabsoluteThreshold
- absolute tolerance thresholdpublic SimpleValueChecker(double relativeThreshold, double absoluteThreshold, int maxIter)
relativeThreshold
- relative tolerance thresholdabsoluteThreshold
- absolute tolerance thresholdmaxIter
- Maximum iteration count.NotStrictlyPositiveException
- if maxIter <= 0
.public boolean converged(int iteration, PointValuePair previous, PointValuePair current)
converged
in interface ConvergenceChecker<PointValuePair>
converged
in class AbstractConvergenceChecker<PointValuePair>
iteration
- Index of current iterationprevious
- Best point in the previous iteration.current
- Best point in the current iteration.true
if the algorithm has converged.Copyright © 2023 CNES. All rights reserved.