Uses of Class
org.apache.commons.math3.optimization.linear.LinearConstraint
Packages that use LinearConstraint
Package
Description
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 LinearConstraintModifier and TypeFieldDescriptionprivate final List
<LinearConstraint> SimplexTableau.constraints
Deprecated.Linear constraints.private Collection
<LinearConstraint> AbstractLinearOptimizer.linearConstraints
Deprecated.Linear constraints.Methods in org.apache.commons.math3.optimization.linear that return LinearConstraintModifier and TypeMethodDescriptionprivate 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 LinearConstraintModifier and TypeMethodDescriptionprotected Collection
<LinearConstraint> AbstractLinearOptimizer.getConstraints()
Deprecated.SimplexTableau.normalizeConstraints
(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 LinearConstraintModifier and TypeMethodDescriptionprivate 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 LinearConstraintModifier and TypeMethodDescriptionSimplexTableau.normalizeConstraints
(Collection<LinearConstraint> originalConstraints) Deprecated.Get new versions of the constraints which have positive right hand sides.AbstractLinearOptimizer.optimize
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative) Deprecated.Optimizes an objective function.LinearOptimizer.optimize
(LinearObjectiveFunction f, 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 LinearConstraintModifierConstructorDescription(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon) Deprecated.Build a tableau for a linear problem.(package private)
SimplexTableau
(LinearObjectiveFunction f, Collection<LinearConstraint> constraints, GoalType goalType, boolean restrictToNonNegative, double epsilon, int maxUlps) Deprecated.Build a tableau for a linear problem.