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 GoalTypeMultivariateOptimizer. goalType of optimization.Methods in org.apache.commons.math3.optim.nonlinear.scalar that return GoalType Modifier and Type Method Description GoalTypeMultivariateOptimizer. getGoalType()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. -
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 GoalTypeUnivariateOptimizer. goalType of optimization.Methods in org.apache.commons.math3.optim.univariate that return GoalType Modifier and Type Method Description GoalTypeUnivariateOptimizer. getGoalType()Methods in org.apache.commons.math3.optim.univariate with parameters of type GoalType Modifier and Type Method Description voidBracketFinder. search(UnivariateFunction func, GoalType goal, double xA, double xB)Search new points that bracket a local optimum of the function.private voidMultiStartUnivariateOptimizer. sortPairs(GoalType goal)Sort the optima from best to worst, followed bynullelements.
-