| IterativeSolution<S> |
Many minimization algorithms work by starting from some given initials and iteratively moving
toward an approximate solution.
|
| MaximizationSolution<T> |
This is the solution to a maximization problem.
|
| Maxmizer<P extends OptimProblem,S extends MaximizationSolution<?>> |
This interface represents an optimization algorithm that maximizers a real valued objective
function, one or multi dimension.
|
| MinimizationSolution<T> |
This is the solution to a minimization problem.
|
| Minimizer<P extends OptimProblem,S extends MinimizationSolution<?>> |
This interface represents an optimization algorithm that minimizes a real valued objective
function, one or multi dimension.
|
| Optimizer<P,S> |
Optimization, or mathematical programming, refers to choosing the best
element from some set of available alternatives.
|