|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use GoalType | |
|---|---|
| org.apache.commons.math.optimization | This package provides common interfaces for the optimization algorithms provided in sub-packages. |
| org.apache.commons.math.optimization.direct | This package provides optimization algorithms that don't require derivatives. |
| org.apache.commons.math.optimization.general | This package provides optimization algorithms that require derivatives. |
| org.apache.commons.math.optimization.linear | This package provides optimization algorithms for linear constrained problems. |
| org.apache.commons.math.optimization.univariate | Univariate real functions minimum finding algorithms. |
| Uses of GoalType in org.apache.commons.math.optimization |
|---|
| Methods in org.apache.commons.math.optimization that return GoalType | |
|---|---|
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. |
| Methods in org.apache.commons.math.optimization with parameters of type GoalType | |
|---|---|
RealPointValuePair |
BaseMultivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goalType,
double[] startPoint)
Optimize an objective function. |
RealPointValuePair |
BaseMultiStartMultivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goal,
double[] startPoint)
Optimize an objective function. |
| Uses of GoalType in org.apache.commons.math.optimization.direct |
|---|
| Methods in org.apache.commons.math.optimization.direct that return GoalType | |
|---|---|
GoalType |
BaseAbstractScalarOptimizer.getGoalType()
|
| Methods in org.apache.commons.math.optimization.direct with parameters of type GoalType | |
|---|---|
RealPointValuePair |
BaseAbstractScalarOptimizer.optimize(int maxEval,
FUNC f,
GoalType goalType,
double[] startPoint)
Optimize an objective function. |
| Uses of GoalType in org.apache.commons.math.optimization.general |
|---|
| Methods in org.apache.commons.math.optimization.general with parameters of type GoalType | |
|---|---|
RealPointValuePair |
AbstractScalarDifferentiableOptimizer.optimize(int maxEval,
DifferentiableMultivariateRealFunction f,
GoalType goalType,
double[] startPoint)
Optimize an objective function. |
| Uses of GoalType in org.apache.commons.math.optimization.linear |
|---|
| Fields in org.apache.commons.math.optimization.linear declared as GoalType | |
|---|---|
protected GoalType |
AbstractLinearOptimizer.goal
Type of optimization goal: either MAXIMIZE or MINIMIZE. |
| Methods in org.apache.commons.math.optimization.linear with parameters of type GoalType | |
|---|---|
RealPointValuePair |
LinearOptimizer.optimize(LinearObjectiveFunction f,
java.util.Collection<LinearConstraint> constraints,
GoalType goalType,
boolean restrictToNonNegative)
Optimizes an objective function. |
RealPointValuePair |
AbstractLinearOptimizer.optimize(LinearObjectiveFunction f,
java.util.Collection<LinearConstraint> constraints,
GoalType goalType,
boolean restrictToNonNegative)
Optimizes an objective function. |
| Uses of GoalType in org.apache.commons.math.optimization.univariate |
|---|
| Methods in org.apache.commons.math.optimization.univariate that return GoalType | |
|---|---|
GoalType |
AbstractUnivariateRealOptimizer.getGoalType()
|
| Methods in org.apache.commons.math.optimization.univariate with parameters of type GoalType | |
|---|---|
UnivariateRealPointValuePair |
MultiStartUnivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goal,
double min,
double max)
Find an optimum in the given interval. |
UnivariateRealPointValuePair |
BaseUnivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goalType,
double min,
double max)
Find an optimum in the given interval. |
UnivariateRealPointValuePair |
MultiStartUnivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goal,
double min,
double max,
double startValue)
Find an optimum in the given interval, start at startValue. |
UnivariateRealPointValuePair |
BaseUnivariateRealOptimizer.optimize(int maxEval,
FUNC f,
GoalType goalType,
double min,
double max,
double startValue)
Find an optimum in the given interval, start at startValue. |
UnivariateRealPointValuePair |
AbstractUnivariateRealOptimizer.optimize(int maxEval,
UnivariateRealFunction f,
GoalType goalType,
double min,
double max)
Find an optimum in the given interval. |
UnivariateRealPointValuePair |
AbstractUnivariateRealOptimizer.optimize(int maxEval,
UnivariateRealFunction f,
GoalType goalType,
double min,
double max,
double startValue)
Find an optimum in the given interval, start at startValue. |
void |
BracketFinder.search(UnivariateRealFunction func,
GoalType goal,
double xA,
double xB)
Search new points that bracket a local optimum of the function. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||