Package | Description |
---|---|
org.apache.commons.math3.optim.linear |
Optimization algorithms for linear constrained problems.
|
org.apache.commons.math3.optim.nonlinear.scalar |
Algorithms for optimizing a scalar function.
|
org.apache.commons.math3.optim.univariate |
One-dimensional optimization algorithms.
|
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.
|
Modifier and Type | Field and Description |
---|---|
private GoalType |
MultivariateOptimizer.goal
Type of optimization.
|
Modifier and Type | Method and Description |
---|---|
GoalType |
MultivariateOptimizer.getGoalType() |
static GoalType |
GoalType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GoalType[] |
GoalType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Field and Description |
---|---|
private GoalType |
UnivariateOptimizer.goal
Type of optimization.
|
Modifier and Type | Method and Description |
---|---|
GoalType |
UnivariateOptimizer.getGoalType() |
Modifier and Type | Method and Description |
---|---|
void |
BracketFinder.search(UnivariateFunction func,
GoalType goal,
double xA,
double xB)
Search new points that bracket a local optimum of the function.
|
private void |
MultiStartUnivariateOptimizer.sortPairs(GoalType goal)
Sort the optima from best to worst, followed by
null elements. |