Uses of Class
org.hipparchus.optim.univariate.UnivariatePointValuePair
Package
Description
Algorithms for optimizing a scalar function.
One-dimensional optimization algorithms.
-
Uses of UnivariatePointValuePair in org.hipparchus.optim.nonlinear.scalar
Modifier and TypeMethodDescriptionLineSearch.search
(double[] startPoint, double[] direction) Finds the numberalpha
that optimizesf(startPoint + alpha * direction)
. -
Uses of UnivariatePointValuePair in org.hipparchus.optim.univariate
Modifier and TypeMethodDescriptionprotected UnivariatePointValuePair
BrentOptimizer.doOptimize()
Performs the bulk of the optimization algorithm.protected UnivariatePointValuePair
MultiStartUnivariateOptimizer.doOptimize()
Performs the bulk of the optimization algorithm.MultiStartUnivariateOptimizer.getOptima()
Gets all the optima found during the last call tooptimize
.MultiStartUnivariateOptimizer.optimize
(OptimizationData... optData) Stores data and performs the optimization.UnivariateOptimizer.optimize
(OptimizationData... optData) Stores data and performs the optimization.Modifier and TypeMethodDescriptionboolean
SimpleUnivariateValueChecker.converged
(int iteration, UnivariatePointValuePair previous, UnivariatePointValuePair current) Check if the optimization algorithm has converged considering the last two points.ModifierConstructorDescriptionBrentOptimizer
(double rel, double abs, ConvergenceChecker<UnivariatePointValuePair> checker) The arguments are used implement the original stopping criterion of Brent's algorithm.protected
Simple constructor.