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