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

Packages that use StopTest
es.udc.gii.common.eaf.algorithm   
es.udc.gii.common.eaf.algorithm.mga   
es.udc.gii.common.eaf.algorithm.parallel   
es.udc.gii.common.eaf.facade   
es.udc.gii.common.eaf.factory   
es.udc.gii.common.eaf.plugin.stoptest   
es.udc.gii.common.eaf.stoptest   
es.udc.gii.common.eaf.stoptest.mga   
 

Uses of StopTest in es.udc.gii.common.eaf.algorithm
 

Fields in es.udc.gii.common.eaf.algorithm declared as StopTest
private  StopTest EvolutionaryAlgorithm.stopTest
           
 

Methods in es.udc.gii.common.eaf.algorithm that return StopTest
 StopTest EvolutionaryAlgorithm.getStopTest()
           
 

Methods in es.udc.gii.common.eaf.algorithm with parameters of type StopTest
 void CMAEvolutionaryAlgorithm.resolve(StopTest objective)
           
 void EvolutionaryAlgorithm.resolve(StopTest objective)
           
 void EvolutionaryAlgorithm.resolve(StopTest objective, int maxGenerations)
           
protected  void EvolutionaryAlgorithm.setMaxGenerations(StopTest objective)
           
 

Uses of StopTest in es.udc.gii.common.eaf.algorithm.mga
 

Fields in es.udc.gii.common.eaf.algorithm.mga declared as StopTest
private  StopTest AbstractMGAAlgorithm.nominalConvergence
          The stop test that states that nominal convergence has been reached for the current micro-evolution.
 

Methods in es.udc.gii.common.eaf.algorithm.mga that return StopTest
 StopTest AbstractMGAAlgorithm.getNominalConvergence()
           
 

Methods in es.udc.gii.common.eaf.algorithm.mga with parameters of type StopTest
 void AbstractMGAAlgorithm.resolve(StopTest objective)
          Performs the algorithm.
 void AbstractMGAAlgorithm.setNominalConvergence(StopTest nominalConvergence)
           
 

Uses of StopTest in es.udc.gii.common.eaf.algorithm.parallel
 

Methods in es.udc.gii.common.eaf.algorithm.parallel with parameters of type StopTest
 void ParallelEvolutionaryAlgorithm.resolve(StopTest objective)
           
 

Uses of StopTest in es.udc.gii.common.eaf.facade
 

Methods in es.udc.gii.common.eaf.facade that return StopTest
 StopTest EAFFacade.createStopTest(java.lang.String configFile)
           
 

Methods in es.udc.gii.common.eaf.facade with parameters of type StopTest
 void EAFFacade.resolve(StopTest stopTest, EvolutionaryAlgorithm algorithm)
           
 void EAFFacade.resolve(StopTest stopTest, EvolutionaryAlgorithm algorithm, int maxGen)
           
 

Uses of StopTest in es.udc.gii.common.eaf.factory
 

Methods in es.udc.gii.common.eaf.factory that return StopTest
abstract  StopTest SimpleFactory.createStopTest()
           
 StopTest XMLSimpleFactory.createStopTest()
           
 

Uses of StopTest in es.udc.gii.common.eaf.plugin.stoptest
 

Methods in es.udc.gii.common.eaf.plugin.stoptest that return types with arguments of type StopTest
protected  java.util.List<StopTest> StopTestPlugin.getStopTestList(EvolutionaryAlgorithm algorithm)
           
 

Uses of StopTest in es.udc.gii.common.eaf.stoptest
 

Classes in es.udc.gii.common.eaf.stoptest that implement StopTest
 class BestMeanConvergence
          This class implements a simple stoptest.
 class BitwiseConvergence
          This class implements a simple stoptest.
 class CompositeStopTest
          This class implements the interface StopTest.
 class DimensionFEsStopTest
          The maximum numbers of FEs that has to run an algorithm depends on the dimension of the individuals.
 class EvolveGenerationsStopTest
          Concrete simple objective.
 class FEsStopTest
          A FEsStopTest represents a stop test that depends on the number of function evaluations performed by the algorithm.
 class MaxFEsStopTest
          Concrete simple objective.
 class PerformanceFitnessStopTest
          This class implements the abstract class SimpleStopTest.
 class SimpleStopTest
          This abstract class implements the interface StopTest.
 

Fields in es.udc.gii.common.eaf.stoptest with type parameters of type StopTest
private  java.util.List<StopTest> CompositeStopTest.stopTests
          Condicitions' list of a composite stop test.
 

Methods in es.udc.gii.common.eaf.stoptest that return types with arguments of type StopTest
 java.util.List<StopTest> CompositeStopTest.getStopTests()
          Return the list of stop test that contains this Composite stop test.
 

Methods in es.udc.gii.common.eaf.stoptest with parameters of type StopTest
 void CompositeStopTest.addStopTest(StopTest stopTest)
          Add a stop test to the list of a composite stop test.
 

Uses of StopTest in es.udc.gii.common.eaf.stoptest.mga
 

Classes in es.udc.gii.common.eaf.stoptest.mga that implement StopTest
 class MicroGenerationsConvergence
          This class implements a simple stop test for the internal cycle of micro-genetic algorithms.