Class MultiStartMultivariateOptimizer
java.lang.Object
org.hipparchus.optim.BaseOptimizer<P>
org.hipparchus.optim.BaseMultivariateOptimizer<P>
org.hipparchus.optim.BaseMultiStartMultivariateOptimizer<PointValuePair>
org.hipparchus.optim.nonlinear.scalar.MultiStartMultivariateOptimizer
public class MultiStartMultivariateOptimizer
extends BaseMultiStartMultivariateOptimizer<PointValuePair>
Multi-start optimizer.
This class wraps an optimizer in order to use it several times in
turn with different starting points (trying to avoid being trapped
in a local extremum when looking for a global one).
-
Field Summary
Fields inherited from class org.hipparchus.optim.BaseOptimizer
evaluations, iterations
-
Constructor Summary
ConstructorDescriptionMultiStartMultivariateOptimizer
(MultivariateOptimizer optimizer, int starts, RandomVectorGenerator generator) Create a multi-start optimizer from a single-start optimizer. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
clear()
Method that will called in order to clear all stored optima.Gets all the optima found during the last call tooptimize
.protected void
store
(PointValuePair optimum) Method that will be called in order to store each found optimum.Methods inherited from class org.hipparchus.optim.BaseMultiStartMultivariateOptimizer
doOptimize, getEvaluations, optimize
Methods inherited from class org.hipparchus.optim.BaseMultivariateOptimizer
getLowerBound, getStartPoint, getUpperBound, parseOptimizationData
Methods inherited from class org.hipparchus.optim.BaseOptimizer
getConvergenceChecker, getIterations, getMaxEvaluations, getMaxIterations, incrementEvaluationCount, incrementIterationCount, optimize
-
Constructor Details
-
MultiStartMultivariateOptimizer
public MultiStartMultivariateOptimizer(MultivariateOptimizer optimizer, int starts, RandomVectorGenerator generator) throws MathIllegalArgumentException, NullArgumentException Create a multi-start optimizer from a single-start optimizer.- Parameters:
optimizer
- Single-start optimizer to wrap.starts
- Number of starts to perform. Ifstarts == 1
, the result will be same as ifoptimizer
is called directly.generator
- Random vector generator to use for restarts.- Throws:
NullArgumentException
- ifoptimizer
orgenerator
isnull
.MathIllegalArgumentException
- ifstarts < 1
.
-
-
Method Details
-
getOptima
Gets all the optima found during the last call tooptimize
. The optimizer stores all the optima found during a set of restarts. Theoptimize
method returns the best point only. This method returns all the points found at the end of each starts, including the best one already returned by theoptimize
method.
The returned array as one element for each start as specified in the constructor. It is ordered with the results from the runs that did converge first, sorted from best to worst objective value (i.e in ascending order if minimizing and in descending order if maximizing), followed bynull
elements corresponding to the runs that did not converge. This means all elements will benull
if theoptimize
method did throw an exception. This also means that if the first element is notnull
, it is the best point found across all starts.
The behaviour is undefined if this method is called beforeoptimize
; it will likely throwNullPointerException
.- Specified by:
getOptima
in classBaseMultiStartMultivariateOptimizer<PointValuePair>
- Returns:
- an array containing the optima sorted from best to worst.
-
store
Method that will be called in order to store each found optimum.- Specified by:
store
in classBaseMultiStartMultivariateOptimizer<PointValuePair>
- Parameters:
optimum
- Result of an optimization run.
-
clear
protected void clear()Method that will called in order to clear all stored optima.- Specified by:
clear
in classBaseMultiStartMultivariateOptimizer<PointValuePair>
-