Uses of Class
org.apache.commons.math3.optimization.univariate.UnivariatePointValuePair
Packages that use UnivariatePointValuePair
Package
Description
This package provides optimization algorithms that don't require derivatives.
Univariate real functions minimum finding algorithms.
-
Uses of UnivariatePointValuePair in org.apache.commons.math3.optimization.direct
Methods in org.apache.commons.math3.optimization.direct that return UnivariatePointValuePairModifier and TypeMethodDescriptionPowellOptimizer.LineSearch.search(double[] p, double[] d) Find the minimum of the functionf(p + alpha * d). -
Uses of UnivariatePointValuePair in org.apache.commons.math3.optimization.univariate
Subclasses with type arguments of type UnivariatePointValuePair in org.apache.commons.math3.optimization.univariateModifier and TypeClassDescriptionclassDeprecated.As of 3.1 (to be removed in 4.0).Subinterfaces with type arguments of type UnivariatePointValuePair in org.apache.commons.math3.optimization.univariateModifier and TypeInterfaceDescriptioninterfaceBaseUnivariateOptimizer<FUNC extends UnivariateFunction>Deprecated.As of 3.1 (to be removed in 4.0).Fields in org.apache.commons.math3.optimization.univariate declared as UnivariatePointValuePairModifier and TypeFieldDescriptionprivate UnivariatePointValuePair[]UnivariateMultiStartOptimizer.optimaDeprecated.Found optima.Fields in org.apache.commons.math3.optimization.univariate with type parameters of type UnivariatePointValuePairModifier and TypeFieldDescriptionprivate final ConvergenceChecker<UnivariatePointValuePair> BaseAbstractUnivariateOptimizer.checkerDeprecated.Convergence checker.Methods in org.apache.commons.math3.optimization.univariate that return UnivariatePointValuePairModifier and TypeMethodDescriptionprivate UnivariatePointValuePairBrentOptimizer.best(UnivariatePointValuePair a, UnivariatePointValuePair b, boolean isMinim) Deprecated.Selects the best of two points.protected abstract UnivariatePointValuePairBaseAbstractUnivariateOptimizer.doOptimize()Deprecated.Method for implementing actual optimization algorithms in derived classes.protected UnivariatePointValuePairBrentOptimizer.doOptimize()Deprecated.Method for implementing actual optimization algorithms in derived classes.UnivariateMultiStartOptimizer.getOptima()Deprecated.Get all the optima found during the last call tooptimize.BaseAbstractUnivariateOptimizer.optimize(int maxEval, UnivariateFunction f, GoalType goalType, double min, double max) Deprecated.Find an optimum in the given interval.BaseAbstractUnivariateOptimizer.optimize(int maxEval, UnivariateFunction f, GoalType goalType, double min, double max, double startValue) Deprecated.Find an optimum in the given interval, start at startValue.Deprecated.Find an optimum in the given interval.BaseUnivariateOptimizer.optimize(int maxEval, FUNC f, GoalType goalType, double min, double max, double startValue) Deprecated.Find an optimum in the given interval, start at startValue.Deprecated.Find an optimum in the given interval.UnivariateMultiStartOptimizer.optimize(int maxEval, FUNC f, GoalType goal, double min, double max, double startValue) Deprecated.Find an optimum in the given interval, start at startValue.Methods in org.apache.commons.math3.optimization.univariate that return types with arguments of type UnivariatePointValuePairModifier and TypeMethodDescriptionBaseAbstractUnivariateOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.UnivariateMultiStartOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.Methods in org.apache.commons.math3.optimization.univariate with parameters of type UnivariatePointValuePairModifier and TypeMethodDescriptionprivate UnivariatePointValuePairBrentOptimizer.best(UnivariatePointValuePair a, UnivariatePointValuePair b, boolean isMinim) Deprecated.Selects the best of two points.booleanSimpleUnivariateValueChecker.converged(int iteration, UnivariatePointValuePair previous, UnivariatePointValuePair current) Deprecated.Check if the optimization algorithm has converged considering the last two points.Constructor parameters in org.apache.commons.math3.optimization.univariate with type arguments of type UnivariatePointValuePairModifierConstructorDescriptionprotectedDeprecated.BrentOptimizer(double rel, double abs, ConvergenceChecker<UnivariatePointValuePair> checker) Deprecated.The arguments are used implement the original stopping criterion of Brent's algorithm.