Uses of Class
org.apache.commons.math3.optimization.linear.LinearConstraint
-
Packages that use LinearConstraint Package Description org.apache.commons.math3.optimization.linear This package provides optimization algorithms for linear constrained problems. -
-
Uses of LinearConstraint in org.apache.commons.math3.optimization.linear
Fields in org.apache.commons.math3.optimization.linear with type parameters of type LinearConstraint Modifier and Type Field Description private java.util.List<LinearConstraint>
SimplexTableau. constraints
Deprecated.Linear constraints.private java.util.Collection<LinearConstraint>
AbstractLinearOptimizer. linearConstraints
Deprecated.Linear constraints.Methods in org.apache.commons.math3.optimization.linear that return LinearConstraint Modifier and Type Method Description private LinearConstraint
SimplexTableau. normalize(LinearConstraint constraint)
Deprecated.Get a new equation equivalent to this one with a positive right hand side.Methods in org.apache.commons.math3.optimization.linear that return types with arguments of type LinearConstraint Modifier and Type Method Description protected java.util.Collection<LinearConstraint>
AbstractLinearOptimizer. getConstraints()
Deprecated.java.util.List<LinearConstraint>
SimplexTableau. normalizeConstraints(java.util.Collection<LinearConstraint> originalConstraints)
Deprecated.Get new versions of the constraints which have positive right hand sides.Methods in org.apache.commons.math3.optimization.linear with parameters of type LinearConstraint Modifier and Type Method Description private LinearConstraint
SimplexTableau. normalize(LinearConstraint constraint)
Deprecated.Get a new equation equivalent to this one with a positive right hand side.Method parameters in org.apache.commons.math3.optimization.linear with type arguments of type LinearConstraint Modifier and Type Method Description java.util.List<LinearConstraint>
SimplexTableau. normalizeConstraints(java.util.Collection<LinearConstraint> originalConstraints)
Deprecated.Get new versions of the constraints which have positive right hand sides.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.Constructor parameters in org.apache.commons.math3.optimization.linear with type arguments of type LinearConstraint 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.
-