Uses of Class
org.apache.commons.math3.optim.linear.LinearConstraint
Packages that use LinearConstraint
Package
Description
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 LinearConstraintModifier and TypeFieldDescriptionprivate final List
<LinearConstraint> SimplexTableau.constraints
Linear constraints.private final Set
<LinearConstraint> LinearConstraintSet.linearConstraints
Set of constraints.private Collection
<LinearConstraint> LinearOptimizer.linearConstraints
Linear constraints.Methods in org.apache.commons.math3.optim.linear that return LinearConstraintModifier and TypeMethodDescriptionprivate 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 LinearConstraintModifier and TypeMethodDescriptionLinearConstraintSet.getConstraints()
Gets the set of linear constraints.protected Collection
<LinearConstraint> LinearOptimizer.getConstraints()
SimplexTableau.normalizeConstraints
(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 LinearConstraintModifier and TypeMethodDescriptionprivate 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 LinearConstraintModifier and TypeMethodDescriptionSimplexTableau.normalizeConstraints
(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 LinearConstraintModifierConstructorDescriptionLinearConstraintSet
(LinearConstraint... constraints) Creates a set containing the given constraints.Constructor parameters in org.apache.commons.math3.optim.linear with type arguments of type LinearConstraintModifierConstructorDescriptionLinearConstraintSet
(Collection<LinearConstraint> constraints) Creates a set containing the given constraints.(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon) Builds a tableau for a linear problem.(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon, int maxUlps) Build a tableau for a linear problem.