Package | Description |
---|---|
org.apache.commons.math3.optim |
Generally, optimizers are algorithms that will either
minimize or
maximize
a scalar function, called the
objective
function . |
org.apache.commons.math3.util |
Convenience routines and common data structures used throughout the commons-math library.
|
Modifier and Type | Class and Description |
---|---|
private static class |
AbstractOptimizationProblem.MaxEvalCallback
Defines the action to perform when reaching the maximum number of evaluations.
|
private static class |
AbstractOptimizationProblem.MaxIterCallback
Defines the action to perform when reaching the maximum number of evaluations.
|
private static class |
BaseOptimizer.MaxEvalCallback
Defines the action to perform when reaching the maximum number
of evaluations.
|
private static class |
BaseOptimizer.MaxIterCallback
Defines the action to perform when reaching the maximum number
of evaluations.
|
Modifier and Type | Field and Description |
---|---|
private Incrementor.MaxCountExceededCallback |
Incrementor.maxCountCallback
Function called at counter exhaustion.
|
Constructor and Description |
---|
Incrementor(int max,
Incrementor.MaxCountExceededCallback cb)
Defines a maximal count and a callback method to be triggered at
counter exhaustion.
|
IterationManager(int maxIterations,
Incrementor.MaxCountExceededCallback callBack)
Creates a new instance of this class.
|