Package org.opt4j.optimizers.ea.aeseh
Interface EpsilonAdaptation
-
- All Known Implementing Classes:
EpsilonAdaptationDelta
public interface EpsilonAdaptation
TheEpsilonAdaptation
manages the adaptation of the ε-value stored in theAdaptiveEpsilon
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
adaptEpsilon(AdaptiveEpsilon adaptiveEpsilon, boolean epsilonTooBig)
Adjusts the ε-value according to the givenAdaptiveEpsilon
.
-
-
-
Method Detail
-
adaptEpsilon
void adaptEpsilon(AdaptiveEpsilon adaptiveEpsilon, boolean epsilonTooBig)
Adjusts the ε-value according to the givenAdaptiveEpsilon
.- Parameters:
adaptiveEpsilon
- theAdaptiveEpsilon
contains the ε-value and the information about its adaptationepsilonTooBig
-true
if the current epsilon is too big
-
-