Uses of Class
org.apache.commons.math3.optimization.PointValuePair
-
Packages that use PointValuePair Package Description org.apache.commons.math3.optimization All classes and sub-packages of this package are deprecated.org.apache.commons.math3.optimization.direct This package provides optimization algorithms that don't require derivatives.org.apache.commons.math3.optimization.general This package provides optimization algorithms that require derivatives.org.apache.commons.math3.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of PointValuePair in org.apache.commons.math3.optimization
Fields in org.apache.commons.math3.optimization declared as PointValuePair Modifier and Type Field Description private PointValuePair[]BaseMultivariateMultiStartOptimizer. optimaDeprecated.Found optima.Methods in org.apache.commons.math3.optimization that return PointValuePair Modifier and Type Method Description PointValuePair[]BaseMultivariateMultiStartOptimizer. getOptima()Deprecated.Get all the optima found during the last call tooptimize.PointValuePairBaseMultivariateMultiStartOptimizer. optimize(int maxEval, FUNC f, GoalType goal, double[] startPoint)Deprecated.Optimize an objective function.PointValuePairBaseMultivariateOptimizer. optimize(int maxEval, FUNC f, GoalType goalType, double[] startPoint)Deprecated.As of 3.1.PointValuePairBaseMultivariateSimpleBoundsOptimizer. 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 PointValuePair Modifier and Type Method Description ConvergenceChecker<PointValuePair>BaseMultivariateMultiStartOptimizer. getConvergenceChecker()Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization with parameters of type PointValuePair Modifier and Type Method Description booleanSimpleValueChecker. 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
Fields in org.apache.commons.math3.optimization.direct declared as PointValuePair Modifier and Type Field Description private PointValuePair[]AbstractSimplex. simplexDeprecated.Simplex.Fields in org.apache.commons.math3.optimization.direct with type parameters of type PointValuePair Modifier and Type Field Description private ConvergenceChecker<PointValuePair>BaseAbstractMultivariateOptimizer. checkerDeprecated.Convergence checker.Methods in org.apache.commons.math3.optimization.direct that return PointValuePair Modifier and Type Method Description protected abstract PointValuePairBaseAbstractMultivariateOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePairBOBYQAOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePairCMAESOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePairPowellOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.protected PointValuePairSimplexOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.private PointValuePairMultiDirectionalSimplex. evaluateNewSimplex(MultivariateFunction evaluationFunction, PointValuePair[] original, double coeff, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute and evaluate a new simplex.PointValuePairAbstractSimplex. getPoint(int index)Deprecated.Get the simplex point stored at the requestedindex.PointValuePair[]AbstractSimplex. getPoints()Deprecated.Get the points of the simplex.PointValuePairBaseAbstractMultivariateOptimizer. optimize(int maxEval, FUNC f, GoalType goalType, double[] startPoint)Deprecated.As of 3.1.PointValuePairBaseAbstractMultivariateOptimizer. optimize(int maxEval, FUNC f, GoalType goalType, OptimizationData... optData)Deprecated.Optimize an objective function.PointValuePairBaseAbstractMultivariateSimpleBoundsOptimizer. optimize(int maxEval, FUNC f, GoalType goalType, double[] startPoint)Deprecated.Optimize an objective function.PointValuePairBaseAbstractMultivariateSimpleBoundsOptimizer. optimize(int maxEval, FUNC f, GoalType goalType, double[] startPoint, double[] lower, double[] upper)Deprecated.Optimize an objective function.protected PointValuePairBaseAbstractMultivariateOptimizer. optimizeInternal(int maxEval, FUNC f, GoalType goalType, double[] startPoint)Deprecated.As of 3.1.protected PointValuePairBaseAbstractMultivariateOptimizer. optimizeInternal(int maxEval, FUNC f, GoalType goalType, OptimizationData... optData)Deprecated.Optimize an objective function.protected PointValuePairCMAESOptimizer. optimizeInternal(int maxEval, MultivariateFunction f, GoalType goalType, OptimizationData... optData)Deprecated.Optimize an objective function.protected PointValuePairSimplexOptimizer. 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 PointValuePair Modifier and Type Method Description ConvergenceChecker<PointValuePair>BaseAbstractMultivariateOptimizer. getConvergenceChecker()Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization.direct with parameters of type PointValuePair Modifier and Type Method Description private PointValuePairMultiDirectionalSimplex. evaluateNewSimplex(MultivariateFunction evaluationFunction, PointValuePair[] original, double coeff, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute and evaluate a new simplex.protected voidAbstractSimplex. replaceWorstPoint(PointValuePair pointValuePair, java.util.Comparator<PointValuePair> comparator)Deprecated.Replace the worst point of the simplex by a new point.protected voidAbstractSimplex. setPoint(int index, PointValuePair point)Deprecated.Store a new point at locationindex.protected voidAbstractSimplex. setPoints(PointValuePair[] points)Deprecated.Replace all points.Method parameters in org.apache.commons.math3.optimization.direct with type arguments of type PointValuePair Modifier and Type Method Description voidAbstractSimplex. evaluate(MultivariateFunction evaluationFunction, java.util.Comparator<PointValuePair> comparator)Deprecated.Evaluate all the non-evaluated points of the simplex.private PointValuePairMultiDirectionalSimplex. evaluateNewSimplex(MultivariateFunction evaluationFunction, PointValuePair[] original, double coeff, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute and evaluate a new simplex.abstract voidAbstractSimplex. iterate(MultivariateFunction evaluationFunction, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute the next simplex of the algorithm.voidMultiDirectionalSimplex. iterate(MultivariateFunction evaluationFunction, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute the next simplex of the algorithm.voidNelderMeadSimplex. iterate(MultivariateFunction evaluationFunction, java.util.Comparator<PointValuePair> comparator)Deprecated.Compute the next simplex of the algorithm.protected voidAbstractSimplex. replaceWorstPoint(PointValuePair pointValuePair, java.util.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 PointValuePair Constructor Description BaseAbstractMultivariateOptimizer(ConvergenceChecker<PointValuePair> checker)Deprecated.BaseAbstractMultivariateSimpleBoundsOptimizer(ConvergenceChecker<PointValuePair> checker)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 PointValuePair Modifier and Type Method Description protected PointValuePairNonLinearConjugateGradientOptimizer. doOptimize()Deprecated.Perform the bulk of the optimization algorithm.PointValuePairAbstractScalarDifferentiableOptimizer. optimize(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, double[] startPoint)Deprecated.Optimize an objective function.protected PointValuePairAbstractDifferentiableOptimizer. optimizeInternal(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, double[] startPoint)Deprecated.In 3.1.protected PointValuePairAbstractDifferentiableOptimizer. optimizeInternal(int maxEval, MultivariateDifferentiableFunction f, GoalType goalType, OptimizationData... optData)Deprecated.Optimize an objective function.protected PointValuePairAbstractScalarDifferentiableOptimizer. 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 PointValuePair Constructor Description AbstractDifferentiableOptimizer(ConvergenceChecker<PointValuePair> checker)Deprecated.AbstractScalarDifferentiableOptimizer(ConvergenceChecker<PointValuePair> checker)Deprecated.NonLinearConjugateGradientOptimizer(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker)Deprecated.Constructor with defaultline search solverandpreconditioner.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 PointValuePair Modifier and Type Method Description protected abstract PointValuePairAbstractLinearOptimizer. doOptimize()Deprecated.Perform the bulk of optimization algorithm.PointValuePairSimplexSolver. doOptimize()Deprecated.Perform the bulk of optimization algorithm.protected PointValuePairSimplexTableau. getSolution()Deprecated.Get the current solution.PointValuePairAbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Deprecated.Optimizes an objective function.PointValuePairLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Deprecated.Optimizes an objective function.
-