Uses of Enum Class
org.apache.commons.math.optimization.GoalType
Packages that use GoalType
Package
Description
This package provides common interfaces for the optimization algorithms
provided in sub-packages.
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.math.optimization
Methods in org.apache.commons.math.optimization that return GoalTypeModifier and TypeMethodDescriptionstatic GoalType
Returns the enum constant of this class with the specified name.static GoalType[]
GoalType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.commons.math.optimization with parameters of type GoalTypeModifier and TypeMethodDescriptionDifferentiableMultivariateRealOptimizer.optimize
(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint) Optimizes an objective function.MultiStartDifferentiableMultivariateRealOptimizer.optimize
(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint) Optimizes an objective function.MultiStartMultivariateRealOptimizer.optimize
(MultivariateRealFunction f, GoalType goalType, double[] startPoint) Optimizes an objective function.double
MultiStartUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goalType, double min, double max) Find an optimum in the given interval.double
MultiStartUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue) Find an optimum in the given interval, start at startValue.MultivariateRealOptimizer.optimize
(MultivariateRealFunction f, GoalType goalType, double[] startPoint) Optimizes an objective function.double
UnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goalType, double min, double max) Find an optimum in the given interval.double
UnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue) Find an optimum in the given interval, start at startValue. -
Uses of GoalType in org.apache.commons.math.optimization.direct
Methods in org.apache.commons.math.optimization.direct with parameters of type GoalTypeModifier and TypeMethodDescriptionDirectSearchOptimizer.optimize
(MultivariateRealFunction function, GoalType goalType, double[] startPoint) Optimizes an objective function. -
Uses of GoalType in org.apache.commons.math.optimization.general
Fields in org.apache.commons.math.optimization.general declared as GoalTypeModifier and TypeFieldDescriptionprotected GoalType
AbstractScalarDifferentiableOptimizer.goal
Deprecated.Methods in org.apache.commons.math.optimization.general with parameters of type GoalTypeModifier and TypeMethodDescriptionAbstractScalarDifferentiableOptimizer.optimize
(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint) Optimizes an objective function. -
Uses of GoalType in org.apache.commons.math.optimization.linear
Fields in org.apache.commons.math.optimization.linear declared as GoalTypeMethods in org.apache.commons.math.optimization.linear with parameters of type GoalTypeModifier and TypeMethodDescriptionAbstractLinearOptimizer.optimize
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative) Optimizes an objective function.LinearOptimizer.optimize
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative) Optimizes an objective function. -
Uses of GoalType in org.apache.commons.math.optimization.univariate
Methods in org.apache.commons.math.optimization.univariate that return GoalTypeMethods in org.apache.commons.math.optimization.univariate with parameters of type GoalTypeModifier and TypeMethodDescriptiondouble
AbstractUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goal, double min, double max) Find an optimum in the given interval.double
AbstractUnivariateRealOptimizer.optimize
(UnivariateRealFunction f, GoalType goal, double min, double max, double startValue) Find an optimum in the given interval, start at startValue.void
BracketFinder.search
(UnivariateRealFunction func, GoalType goal, double xA, double xB) Search new points that bracket a local optimum of the function.