Package | Description |
---|---|
org.apache.commons.math3.optimization.linear |
This package provides optimization algorithms for linear constrained problems.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<LinearConstraint> |
SimplexTableau.constraints
Deprecated.
Linear constraints.
|
private java.util.Collection<LinearConstraint> |
AbstractLinearOptimizer.linearConstraints
Deprecated.
Linear constraints.
|
Modifier and Type | Method and Description |
---|---|
private LinearConstraint |
SimplexTableau.normalize(LinearConstraint constraint)
Deprecated.
Get a new equation equivalent to this one with a positive right hand side.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
private LinearConstraint |
SimplexTableau.normalize(LinearConstraint constraint)
Deprecated.
Get a new equation equivalent to this one with a positive right hand side.
|
Modifier and Type | Method and 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 |
LinearOptimizer.optimize(LinearObjectiveFunction f,
java.util.Collection<LinearConstraint> constraints,
GoalType goalType,
boolean restrictToNonNegative)
Deprecated.
Optimizes an objective function.
|
PointValuePair |
AbstractLinearOptimizer.optimize(LinearObjectiveFunction f,
java.util.Collection<LinearConstraint> constraints,
GoalType goalType,
boolean restrictToNonNegative)
Deprecated.
Optimizes an objective function.
|
Constructor and 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.
|