org.apache.commons.math3.genetics
Interface StoppingCondition

All Known Implementing Classes:
FixedGenerationCount

public interface StoppingCondition

Algorithm used to determine when to stop evolution.

Since:
2.0
Version:
$Id: StoppingCondition.java 1244107 2012-02-14 16:17:55Z erans $

Method Summary
 boolean isSatisfied(Population population)
          Determine whether or not the given population satisfies the stopping condition.
 

Method Detail

isSatisfied

boolean isSatisfied(Population population)
Determine whether or not the given population satisfies the stopping condition.

Parameters:
population - the population to test.
Returns:
true if this stopping condition is met by the given population. false otherwise.


Copyright (c) 2003-2013 Apache Software Foundation