Uses of Class
org.apache.commons.math3.optimization.linear.LinearObjectiveFunction
-
Packages that use LinearObjectiveFunction Package Description org.apache.commons.math3.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of LinearObjectiveFunction in org.apache.commons.math3.optimization.linear
Fields in org.apache.commons.math3.optimization.linear declared as LinearObjectiveFunction Modifier and Type Field Description private LinearObjectiveFunction
SimplexTableau. f
Deprecated.Linear objective function.private LinearObjectiveFunction
AbstractLinearOptimizer. function
Deprecated.Linear objective function.Methods in org.apache.commons.math3.optimization.linear that return LinearObjectiveFunction Modifier and Type Method Description protected LinearObjectiveFunction
AbstractLinearOptimizer. getFunction()
Deprecated.Methods in org.apache.commons.math3.optimization.linear with parameters of type LinearObjectiveFunction Modifier and Type Method Description PointValuePair
AbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
Deprecated.Optimizes an objective function.PointValuePair
LinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)
Deprecated.Optimizes an objective function.Constructors in org.apache.commons.math3.optimization.linear with parameters of type LinearObjectiveFunction Constructor Description SimplexTableau(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon)
Deprecated.Build a tableau for a linear problem.SimplexTableau(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon, int maxUlps)
Deprecated.Build a tableau for a linear problem.
-