Uses of Enum
org.apache.commons.math3.optimization.GoalType
Packages that use GoalType
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.
Univariate real functions minimum finding algorithms.
-
Uses of GoalType in org.apache.commons.math3.optimization
Methods in org.apache.commons.math3.optimization that return GoalTypeModifier and TypeMethodDescriptionstatic GoalType
Deprecated.Returns the enum constant of this type with the specified name.static GoalType[]
GoalType.values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math3.optimization with parameters of type GoalTypeModifier and TypeMethodDescriptionBaseMultivariateMultiStartOptimizer.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.private void
Deprecated.Sort the optima from best to worst, followed bynull
elements. -
Uses of GoalType in org.apache.commons.math3.optimization.direct
Fields in org.apache.commons.math3.optimization.direct declared as GoalTypeModifier and TypeFieldDescriptionprivate GoalType
BaseAbstractMultivariateOptimizer.goal
Deprecated.Type of optimization.Methods in org.apache.commons.math3.optimization.direct that return GoalTypeMethods in org.apache.commons.math3.optimization.direct with parameters of type GoalTypeModifier and TypeMethodDescriptionBaseAbstractMultivariateOptimizer.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. -
Uses of GoalType in org.apache.commons.math3.optimization.general
Methods in org.apache.commons.math3.optimization.general with parameters of type GoalTypeModifier and TypeMethodDescriptionAbstractScalarDifferentiableOptimizer.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. -
Uses of GoalType in org.apache.commons.math3.optimization.linear
Fields in org.apache.commons.math3.optimization.linear declared as GoalTypeMethods in org.apache.commons.math3.optimization.linear that return GoalTypeModifier and TypeMethodDescriptionprotected GoalType
AbstractLinearOptimizer.getGoalType()
Deprecated.Methods in org.apache.commons.math3.optimization.linear with parameters of type GoalTypeModifier and TypeMethodDescriptionAbstractLinearOptimizer.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.Constructors in org.apache.commons.math3.optimization.linear with parameters of type GoalTypeModifierConstructorDescription(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon) Deprecated.Build a tableau for a linear problem.(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon, int maxUlps) Deprecated.Build a tableau for a linear problem. -
Uses of GoalType in org.apache.commons.math3.optimization.univariate
Fields in org.apache.commons.math3.optimization.univariate declared as GoalTypeModifier and TypeFieldDescriptionprivate GoalType
BaseAbstractUnivariateOptimizer.goal
Deprecated.Optimization typeMethods in org.apache.commons.math3.optimization.univariate that return GoalTypeMethods in org.apache.commons.math3.optimization.univariate with parameters of type GoalTypeModifier and TypeMethodDescriptionBaseAbstractUnivariateOptimizer.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.void
BracketFinder.search
(UnivariateFunction func, GoalType goal, double xA, double xB) Deprecated.Search new points that bracket a local optimum of the function.private void
Deprecated.Sort the optima from best to worst, followed bynull
elements.