Uses of Class
org.apache.commons.math3.optimization.PointValuePair
Packages that use PointValuePair
Package
Description
All classes and sub-packages of this package are deprecated.
This package provides optimization algorithms that don't require derivatives.
This package provides optimization algorithms that require derivatives.
This package provides optimization algorithms for linear constrained problems.
-
Uses of PointValuePair in org.apache.commons.math3.optimization
Methods in org.apache.commons.math3.optimization that return PointValuePairModifier and TypeMethodDescriptionBaseMultivariateMultiStartOptimizer.getOptima()
Deprecated.Get all the optima found during the last call tooptimize
.BaseMultivariateMultiStartOptimizer.optimize
(int maxEval, FUNC f, GoalType goal, double[] startPoint) Deprecated.Optimize an objective function.Deprecated.As of 3.1.BaseMultivariateSimpleBoundsOptimizer.optimize
(int maxEval, FUNC f, GoalType goalType, double[] startPoint, double[] lowerBound, double[] upperBound) Deprecated.Optimize an objective function.Methods in org.apache.commons.math3.optimization that return types with arguments of type PointValuePairModifier and TypeMethodDescriptionBaseMultivariateMultiStartOptimizer.getConvergenceChecker()
Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization with parameters of type PointValuePairModifier and TypeMethodDescriptionboolean
SimpleValueChecker.converged
(int iteration, PointValuePair previous, PointValuePair current) Deprecated.Check if the optimization algorithm has converged considering the last two points. -
Uses of PointValuePair in org.apache.commons.math3.optimization.direct
Methods in org.apache.commons.math3.optimization.direct that return PointValuePairModifier and TypeMethodDescriptionprotected abstract PointValuePair
BaseAbstractMultivariateOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePair
BOBYQAOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePair
CMAESOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePair
PowellOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePair
SimplexOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.AbstractSimplex.getPoint
(int index) Deprecated.Get the simplex point stored at the requestedindex
.AbstractSimplex.getPoints()
Deprecated.Get the points of the simplex.BaseAbstractMultivariateOptimizer.optimize
(int maxEval, FUNC f, GoalType goalType, double[] startPoint) Deprecated.As of 3.1.BaseAbstractMultivariateOptimizer.optimize
(int maxEval, FUNC f, GoalType goalType, OptimizationData... optData) Deprecated.Optimize an objective function.BaseAbstractMultivariateSimpleBoundsOptimizer.optimize
(int maxEval, FUNC f, GoalType goalType, double[] startPoint) Deprecated.Optimize an objective function.BaseAbstractMultivariateSimpleBoundsOptimizer.optimize
(int maxEval, FUNC f, GoalType goalType, double[] startPoint, double[] lower, double[] upper) Deprecated.Optimize an objective function.protected PointValuePair
BaseAbstractMultivariateOptimizer.optimizeInternal
(int maxEval, FUNC f, GoalType goalType, double[] startPoint) Deprecated.As of 3.1.protected PointValuePair
BaseAbstractMultivariateOptimizer.optimizeInternal
(int maxEval, FUNC f, GoalType goalType, OptimizationData... optData) Deprecated.Optimize an objective function.protected PointValuePair
CMAESOptimizer.optimizeInternal
(int maxEval, MultivariateFunction f, GoalType goalType, OptimizationData... optData) Deprecated.Optimize an objective function.protected PointValuePair
SimplexOptimizer.optimizeInternal
(int maxEval, MultivariateFunction f, GoalType goalType, OptimizationData... optData) Deprecated.Optimize an objective function.Methods in org.apache.commons.math3.optimization.direct that return types with arguments of type PointValuePairModifier and TypeMethodDescriptionBaseAbstractMultivariateOptimizer.getConvergenceChecker()
Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization.direct with parameters of type PointValuePairModifier and TypeMethodDescriptionprotected void
AbstractSimplex.replaceWorstPoint
(PointValuePair pointValuePair, Comparator<PointValuePair> comparator) Deprecated.Replace the worst point of the simplex by a new point.protected void
AbstractSimplex.setPoint
(int index, PointValuePair point) Deprecated.Store a new point at locationindex
.protected void
AbstractSimplex.setPoints
(PointValuePair[] points) Deprecated.Replace all points.Method parameters in org.apache.commons.math3.optimization.direct with type arguments of type PointValuePairModifier and TypeMethodDescriptionvoid
AbstractSimplex.evaluate
(MultivariateFunction evaluationFunction, Comparator<PointValuePair> comparator) Deprecated.Evaluate all the non-evaluated points of the simplex.abstract void
AbstractSimplex.iterate
(MultivariateFunction evaluationFunction, Comparator<PointValuePair> comparator) Deprecated.Compute the next simplex of the algorithm.void
MultiDirectionalSimplex.iterate
(MultivariateFunction evaluationFunction, Comparator<PointValuePair> comparator) Deprecated.Compute the next simplex of the algorithm.void
NelderMeadSimplex.iterate
(MultivariateFunction evaluationFunction, Comparator<PointValuePair> comparator) Deprecated.Compute the next simplex of the algorithm.protected void
AbstractSimplex.replaceWorstPoint
(PointValuePair pointValuePair, Comparator<PointValuePair> comparator) Deprecated.Replace the worst point of the simplex by a new point.Constructor parameters in org.apache.commons.math3.optimization.direct with type arguments of type PointValuePairModifierConstructorDescriptionprotected
Deprecated.protected
Deprecated.CMAESOptimizer
(int lambda, double[] inputSigma, int maxIterations, double stopFitness, boolean isActiveCMA, int diagonalOnly, int checkFeasableCount, RandomGenerator random, boolean generateStatistics, ConvergenceChecker<PointValuePair> checker) Deprecated.CMAESOptimizer
(int maxIterations, double stopFitness, boolean isActiveCMA, int diagonalOnly, int checkFeasableCount, RandomGenerator random, boolean generateStatistics, ConvergenceChecker<PointValuePair> checker) Deprecated.PowellOptimizer
(double rel, double abs, double lineRel, double lineAbs, ConvergenceChecker<PointValuePair> checker) Deprecated.This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure and the line search tolerances.PowellOptimizer
(double rel, double abs, ConvergenceChecker<PointValuePair> checker) Deprecated.This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure.SimplexOptimizer
(ConvergenceChecker<PointValuePair> checker) Deprecated. -
Uses of PointValuePair in org.apache.commons.math3.optimization.general
Methods in org.apache.commons.math3.optimization.general that return PointValuePairModifier and TypeMethodDescriptionprotected PointValuePair
NonLinearConjugateGradientOptimizer.doOptimize()
Deprecated.Perform the bulk of the optimization algorithm.AbstractScalarDifferentiableOptimizer.optimize
(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, double[] startPoint) Deprecated.Optimize an objective function.protected PointValuePair
AbstractDifferentiableOptimizer.optimizeInternal
(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, double[] startPoint) Deprecated.In 3.1.protected PointValuePair
AbstractDifferentiableOptimizer.optimizeInternal
(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, OptimizationData... optData) Deprecated.Optimize an objective function.protected PointValuePair
AbstractScalarDifferentiableOptimizer.optimizeInternal
(int maxEval, DifferentiableMultivariateFunction f, GoalType goalType, double[] startPoint) Deprecated.Optimize an objective function.Constructor parameters in org.apache.commons.math3.optimization.general with type arguments of type PointValuePairModifierConstructorDescriptionprotected
Deprecated.protected
Deprecated.NonLinearConjugateGradientOptimizer
(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker) Deprecated.Constructor with defaultline search solver
andpreconditioner
.NonLinearConjugateGradientOptimizer
(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker, UnivariateSolver lineSearchSolver) Deprecated.Constructor with defaultpreconditioner
.NonLinearConjugateGradientOptimizer
(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker, UnivariateSolver lineSearchSolver, Preconditioner preconditioner) Deprecated. -
Uses of PointValuePair in org.apache.commons.math3.optimization.linear
Methods in org.apache.commons.math3.optimization.linear that return PointValuePairModifier and TypeMethodDescriptionprotected abstract PointValuePair
AbstractLinearOptimizer.doOptimize()
Deprecated.Perform the bulk of optimization algorithm.SimplexSolver.doOptimize()
Deprecated.Perform the bulk of optimization algorithm.AbstractLinearOptimizer.optimize
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative) Deprecated.Optimizes an objective function.LinearOptimizer.optimize
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative) Deprecated.Optimizes an objective function.