Package | Description |
---|---|
org.apache.commons.math3.optim.linear |
Optimization algorithms for linear constrained problems.
|
Modifier and Type | Field and Description |
---|---|
private LinearObjectiveFunction |
SimplexTableau.f
Linear objective function.
|
private LinearObjectiveFunction |
LinearOptimizer.function
Linear objective function.
|
Modifier and Type | Method and Description |
---|---|
protected LinearObjectiveFunction |
LinearOptimizer.getFunction() |
Constructor and Description |
---|
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.
|