Uses of Class
jenes.GeneticAlgorithm

Packages that use GeneticAlgorithm
jenes   
jenes.algorithms   
jenes.performance   
jenes.stage   
jenes.stage.operator   
jenes.tutorials.problem2   
jenes.tutorials.problem6   
 

Uses of GeneticAlgorithm in jenes
 

Methods in jenes with parameters of type GeneticAlgorithm
 void AlgorithmEventListener.onAlgorithmInit(GeneticAlgorithm<T> ga, long time)
          Invoked when the genetic algorithm is initialized
 void AlgorithmEventListener.onAlgorithmStart(GeneticAlgorithm<T> ga, long time)
          Invoked when the genetic algorithm starts
 void AlgorithmEventListener.onAlgorithmStop(GeneticAlgorithm<T> ga, long time)
          Invoked when the genetic algorithm ends
 void GenerationEventListener.onGeneration(GeneticAlgorithm<T> ga, long time)
          Invoked when at the end of one generation step
 

Uses of GeneticAlgorithm in jenes.algorithms
 

Subclasses of GeneticAlgorithm in jenes.algorithms
 class SimpleGA<T extends Chromosome>
          A facade providing a simple interface to GeneticAlgorithm.
 

Uses of GeneticAlgorithm in jenes.performance
 

Subclasses of GeneticAlgorithm in jenes.performance
 class RoyalGA
           
 class TSPGA
           
 

Fields in jenes.performance declared as GeneticAlgorithm
protected  GeneticAlgorithm<BitwiseChromosome> DeJongTest.ga
           
protected  GeneticAlgorithm<BitwiseChromosome> RoyalTest.ga
           
 

Uses of GeneticAlgorithm in jenes.stage
 

Fields in jenes.stage declared as GeneticAlgorithm
protected  GeneticAlgorithm<T> AbstractStage.ga
          The genetic algorithm, this stage belongs to
 

Methods in jenes.stage with parameters of type GeneticAlgorithm
 void AbstractStage.init(GeneticAlgorithm<T> ga)
          Initializes this stage according to the genetic algorithm that uses it
 void Parallel.init(GeneticAlgorithm<T> ga)
           
 void Sequence.init(GeneticAlgorithm<T> ga)
          Initializes all of its internal stages
 

Uses of GeneticAlgorithm in jenes.stage.operator
 

Methods in jenes.stage.operator with parameters of type GeneticAlgorithm
 void Crossover.init(GeneticAlgorithm<T> ga)
           
 

Uses of GeneticAlgorithm in jenes.tutorials.problem2
 

Subclasses of GeneticAlgorithm in jenes.tutorials.problem2
 class PatternGA
           
 

Methods in jenes.tutorials.problem2 with parameters of type GeneticAlgorithm
 void PatternProblem.onGeneration(GeneticAlgorithm ga, long time)
           
 

Uses of GeneticAlgorithm in jenes.tutorials.problem6
 

Subclasses of GeneticAlgorithm in jenes.tutorials.problem6
 class KnapsackGA