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. constraintsDeprecated.Linear constraints.private java.util.Collection<LinearConstraint>AbstractLinearOptimizer. linearConstraintsDeprecated.Linear constraints.Methods in org.apache.commons.math3.optimization.linear that return LinearConstraint Modifier and Type Method Description private LinearConstraintSimplexTableau. 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 LinearConstraintSimplexTableau. 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.PointValuePairAbstractLinearOptimizer. optimize(LinearObjectiveFunction f, java.util.Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative)Deprecated.Optimizes an objective function.PointValuePairLinearOptimizer. 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.
-