Interface StoppingCondition
- All Known Implementing Classes:
FixedElapsedTime,FixedGenerationCount
public interface StoppingCondition
Algorithm used to determine when to stop evolution.
- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisSatisfied(Population population) Determine whether or not the given population satisfies the stopping condition.
-
Method Details
-
isSatisfied
Determine whether or not the given population satisfies the stopping condition.- Parameters:
population- the population to test.- Returns:
trueif this stopping condition is met by the given population,falseotherwise.
-