Uses of Class
org.apache.commons.math3.optim.nonlinear.scalar.GoalType
-
Packages that use GoalType Package Description org.apache.commons.math3.optim.linear Optimization algorithms for linear constrained problems.org.apache.commons.math3.optim.nonlinear.scalar Algorithms for optimizing a scalar function.org.apache.commons.math3.optim.univariate One-dimensional optimization algorithms. -
-
Uses of GoalType in org.apache.commons.math3.optim.linear
Constructors in org.apache.commons.math3.optim.linear with parameters of type GoalType Constructor Description SimplexTableau(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon)
Builds a tableau for a linear problem.SimplexTableau(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon, int maxUlps)
Build a tableau for a linear problem. -
Uses of GoalType in org.apache.commons.math3.optim.nonlinear.scalar
Fields in org.apache.commons.math3.optim.nonlinear.scalar declared as GoalType Modifier and Type Field Description private GoalType
MultivariateOptimizer. goal
Type of optimization.Methods in org.apache.commons.math3.optim.nonlinear.scalar that return GoalType Modifier and Type Method Description GoalType
MultivariateOptimizer. getGoalType()
static GoalType
GoalType. 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. -
Uses of GoalType in org.apache.commons.math3.optim.univariate
Fields in org.apache.commons.math3.optim.univariate declared as GoalType Modifier and Type Field Description private GoalType
UnivariateOptimizer. goal
Type of optimization.Methods in org.apache.commons.math3.optim.univariate that return GoalType Modifier and Type Method Description GoalType
UnivariateOptimizer. getGoalType()
Methods in org.apache.commons.math3.optim.univariate with parameters of type GoalType Modifier and Type Method Description void
BracketFinder. search(UnivariateFunction func, GoalType goal, double xA, double xB)
Search new points that bracket a local optimum of the function.private void
MultiStartUnivariateOptimizer. sortPairs(GoalType goal)
Sort the optima from best to worst, followed bynull
elements.
-