Uses of Class
org.apache.commons.math.optimization.GoalType
-
Packages that use GoalType 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.org.apache.commons.math.optimization.univariate Univariate real functions minimum finding algorithms. -
-
Uses of GoalType in org.apache.commons.math.optimization
Methods in org.apache.commons.math.optimization that return GoalType Modifier and Type Method Description static GoalTypeGoalType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GoalType[]GoalType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math.optimization with parameters of type GoalType Modifier and Type Method Description RealPointValuePairDifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.RealPointValuePairMultiStartDifferentiableMultivariateRealOptimizer. optimize(DifferentiableMultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.RealPointValuePairMultiStartMultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.doubleMultiStartUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max)Find an optimum in the given interval.doubleMultiStartUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max, double startValue)Find an optimum in the given interval, start at startValue.RealPointValuePairMultivariateRealOptimizer. optimize(MultivariateRealFunction f, GoalType goalType, double[] startPoint)Optimizes an objective function.doubleUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goalType, double min, double max)Find an optimum in the given interval.doubleUnivariateRealOptimizer. 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 GoalType Modifier and Type Method Description RealPointValuePairDirectSearchOptimizer. 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 GoalType Modifier and Type Field Description protected GoalTypeAbstractScalarDifferentiableOptimizer. goalDeprecated.Methods in org.apache.commons.math.optimization.general with parameters of type GoalType Modifier and Type Method Description RealPointValuePairAbstractScalarDifferentiableOptimizer. 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 GoalType Modifier and Type Field Description protected GoalTypeAbstractLinearOptimizer. goalMethods in org.apache.commons.math.optimization.linear with parameters of type GoalType Modifier and Type Method Description RealPointValuePairAbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Optimizes an objective function.RealPointValuePairLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.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 GoalType Modifier and Type Method Description GoalTypeAbstractUnivariateRealOptimizer. getGoalType()Methods in org.apache.commons.math.optimization.univariate with parameters of type GoalType Modifier and Type Method Description doubleAbstractUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goal, double min, double max)Find an optimum in the given interval.doubleAbstractUnivariateRealOptimizer. optimize(UnivariateRealFunction f, GoalType goal, double min, double max, double startValue)Find an optimum in the given interval, start at startValue.voidBracketFinder. search(UnivariateRealFunction func, GoalType goal, double xA, double xB)Search new points that bracket a local optimum of the function.
-