Interface InitialsFactory
-
- All Known Implementing Classes:
DefaultSimplex
,UniformDistributionOverBox1
,UniformDistributionOverBox2
public interface InitialsFactory
Some optimization algorithms, e.g., Nelder-Mead, Differential-Evolution, require a set of initial points to work with. In case there are fewer initial points supplied, we need to generate more by, e.g., guessing.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vector[]
getInitials(Vector... initials)
Generate a set of initial points for optimization from the fewer than required points.
-