es.udc.gii.common.eaf.stoptest
Interface StopTest

All Superinterfaces:
Configurable
All Known Implementing Classes:
BestMeanConvergence, BitwiseConvergence, CompositeStopTest, DimensionFEsStopTest, EvolveGenerationsStopTest, FEsStopTest, MaxFEsStopTest, MicroGenerationsConvergence, PerformanceFitnessStopTest, SimpleStopTest

public interface StopTest
extends Configurable

This interface represents a stop test. The represented condition by this test is the one that an algorithm has to reach to finish its execution when it is resolved a problem.

Since:
1.0
Author:
Grupo Integrado de IngenierĂ­a (www.gii.udc.es)

Method Summary
 boolean isReach(EvolutionaryAlgorithm algorithm)
          Returns true if the problem reach the objective.
 
Methods inherited from interface es.udc.gii.common.eaf.config.Configurable
configure
 

Method Detail

isReach

boolean isReach(EvolutionaryAlgorithm algorithm)
Returns true if the problem reach the objective.

Parameters:
algorithm - The algorithm wich has to reach the objective
Returns:
true if the problem has reached the objective, false in other case.