Uses of Interface
com.epochx.life.GenerationListener

Packages that use GenerationListener
com.epochx.core   
com.epochx.life   
com.epochx.model.ant   
com.epochx.model.majority   
com.epochx.model.multiplexer   
com.epochx.model.parity   
com.epochx.model.regression   
com.epochx.op.crossover   
 

Uses of GenerationListener in com.epochx.core
 

Classes in com.epochx.core that implement GenerationListener
 class GPAbstractModel<TYPE>
          GPAbstractModel is a partial implementation of GPModel which provides sensible defaults for many of the necessary control parameters.
 class GPCrossover<TYPE>
          This class performs the very simple task of linking together parent selection and crossover.
 class GPElitism<TYPE>
          This class has the task of retrieving the set of elites from a population.
 class GPMutation<TYPE>
          This class performs the very simple task of linking together individual selection and mutation.
 class GPPoolSelection<TYPE>
          This class is responsible for controlling the selection of a breeding pool.
 class GPReproduction<TYPE>
          This class controls the reproduction operation.
 

Uses of GenerationListener in com.epochx.life
 

Subinterfaces of GenerationListener in com.epochx.life
 interface LifeCycleListener<TYPE>
          Implementations of LifeCycleListener can be used to listen for events throughout the life of a GE run.
 

Methods in com.epochx.life with parameters of type GenerationListener
 void LifeCycleManager.addGenerationListener(GenerationListener listener)
           
 void LifeCycleManager.removeGenerationListener(GenerationListener listener)
           
 

Uses of GenerationListener in com.epochx.model.ant
 

Classes in com.epochx.model.ant that implement GenerationListener
 class SantaFeTrail
           
 

Uses of GenerationListener in com.epochx.model.majority
 

Classes in com.epochx.model.majority that implement GenerationListener
 class Majority5
           
 class Majority9
           
 

Uses of GenerationListener in com.epochx.model.multiplexer
 

Classes in com.epochx.model.multiplexer that implement GenerationListener
 class Multiplexer11Bit
           
 class Multiplexer20Bit
           
 class Multiplexer37Bit
           
 class Multiplexer6Bit
           
 

Uses of GenerationListener in com.epochx.model.parity
 

Classes in com.epochx.model.parity that implement GenerationListener
 class Even4Parity
           
 class Even5Parity
           
 class Even7Parity
           
 

Uses of GenerationListener in com.epochx.model.regression
 

Classes in com.epochx.model.regression that implement GenerationListener
 class CubicRegression
           
 class QuarticRegression
           
 

Uses of GenerationListener in com.epochx.op.crossover
 

Classes in com.epochx.op.crossover that implement GenerationListener
 class KozaCrossover<TYPE>
          This class implements a Koza style crossover operation on two CandidatePrograms.
 class UniformPointCrossover<TYPE>
          This class implements standard crossover with uniform swap points.