Uses of Class
org.apache.commons.math.optimization.RealPointValuePair
-
Packages that use RealPointValuePair Package Description org.apache.commons.math.optimization This package provides common interfaces for the optimization algorithms provided in sub-packages.org.apache.commons.math.optimization.direct This package provides optimization algorithms that don't require derivatives.org.apache.commons.math.optimization.general This package provides optimization algorithms that require derivatives.org.apache.commons.math.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of RealPointValuePair in org.apache.commons.math.optimization
Methods in org.apache.commons.math.optimization that return RealPointValuePair Modifier and Type Method Description RealPointValuePair[]
MultiStartDifferentiableMultivariateRealOptimizer. getOptima()
Get all the optima found during the last call tooptimize
.RealPointValuePair[]
MultiStartMultivariateRealOptimizer. getOptima()
Get all the optima found during the last call tooptimize
.RealPointValuePair
DifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)
Optimizes an objective function.RealPointValuePair
MultiStartDifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)
Optimizes an objective function.RealPointValuePair
MultiStartMultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)
Optimizes an objective function.RealPointValuePair
MultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)
Optimizes an objective function.Methods in org.apache.commons.math.optimization with parameters of type RealPointValuePair Modifier and Type Method Description boolean
RealConvergenceChecker. converged(int iteration, RealPointValuePair previous, RealPointValuePair current)
Check if the optimization algorithm has converged considering the last points.boolean
SimpleRealPointChecker. converged(int iteration, RealPointValuePair previous, RealPointValuePair current)
Check if the optimization algorithm has converged considering the last points.boolean
SimpleScalarValueChecker. converged(int iteration, RealPointValuePair previous, RealPointValuePair current)
Check if the optimization algorithm has converged considering the last points. -
Uses of RealPointValuePair in org.apache.commons.math.optimization.direct
Fields in org.apache.commons.math.optimization.direct declared as RealPointValuePair Modifier and Type Field Description protected RealPointValuePair[]
DirectSearchOptimizer. simplex
Simplex.Methods in org.apache.commons.math.optimization.direct that return RealPointValuePair Modifier and Type Method Description protected RealPointValuePair
PowellOptimizer. doOptimize()
Perform the bulk of optimization algorithm.RealPointValuePair
DirectSearchOptimizer. optimize(MultivariateRealFunction function, GoalType goalType, double[] startPoint)
Optimizes an objective function.Methods in org.apache.commons.math.optimization.direct with parameters of type RealPointValuePair Modifier and Type Method Description protected void
DirectSearchOptimizer. replaceWorstPoint(RealPointValuePair pointValuePair, java.util.Comparator<RealPointValuePair> comparator)
Replace the worst point of the simplex by a new point.Method parameters in org.apache.commons.math.optimization.direct with type arguments of type RealPointValuePair Modifier and Type Method Description protected void
DirectSearchOptimizer. evaluateSimplex(java.util.Comparator<RealPointValuePair> comparator)
Evaluate all the non-evaluated points of the simplex.protected abstract void
DirectSearchOptimizer. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)
Compute the next simplex of the algorithm.protected void
MultiDirectional. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)
Compute the next simplex of the algorithm.protected void
NelderMead. iterateSimplex(java.util.Comparator<RealPointValuePair> comparator)
Compute the next simplex of the algorithm.protected void
DirectSearchOptimizer. replaceWorstPoint(RealPointValuePair pointValuePair, java.util.Comparator<RealPointValuePair> comparator)
Replace the worst point of the simplex by a new point. -
Uses of RealPointValuePair in org.apache.commons.math.optimization.general
Methods in org.apache.commons.math.optimization.general that return RealPointValuePair Modifier and Type Method Description protected abstract RealPointValuePair
AbstractScalarDifferentiableOptimizer. doOptimize()
Perform the bulk of optimization algorithm.protected RealPointValuePair
NonLinearConjugateGradientOptimizer. doOptimize()
Perform the bulk of optimization algorithm.RealPointValuePair
AbstractScalarDifferentiableOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)
Optimizes an objective function. -
Uses of RealPointValuePair in org.apache.commons.math.optimization.linear
Methods in org.apache.commons.math.optimization.linear that return RealPointValuePair Modifier and Type Method Description protected abstract RealPointValuePair
AbstractLinearOptimizer. doOptimize()
Perform the bulk of optimization algorithm.RealPointValuePair
SimplexSolver. doOptimize()
Perform the bulk of optimization algorithm.RealPointValuePair
AbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
Optimizes an objective function.RealPointValuePair
LinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
Optimizes an objective function.
-