Uses of Class
org.encog.ml.genetic.genome.Chromosome

Packages that use Chromosome
org.encog.ml.genetic.crossover This package is used for Encog Genetic Algorithms. 
org.encog.ml.genetic.genome This package is used for Encog Genetic Algorithms. 
org.encog.ml.genetic.mutate This package is used for Encog Genetic Algorithms. 
org.encog.neural.neat.training   
 

Uses of Chromosome in org.encog.ml.genetic.crossover
 

Methods in org.encog.ml.genetic.crossover with parameters of type Chromosome
 void Splice.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Assuming this chromosome is the "mother" mate with the passed in "father".
 void SpliceNoRepeat.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Assuming this chromosome is the "mother" mate with the passed in "father".
 void Crossover.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Mate two chromosomes.
 

Uses of Chromosome in org.encog.ml.genetic.genome
 

Methods in org.encog.ml.genetic.genome that return types with arguments of type Chromosome
 List<Chromosome> Genome.getChromosomes()
           
 List<Chromosome> BasicGenome.getChromosomes()
           
 

Uses of Chromosome in org.encog.ml.genetic.mutate
 

Methods in org.encog.ml.genetic.mutate with parameters of type Chromosome
 void MutateShuffle.performMutation(Chromosome chromosome)
          Perform a shuffle mutation.
 void MutatePerturb.performMutation(Chromosome chromosome)
          Perform a perturb mutation on the specified chromosome.
 void Mutate.performMutation(Chromosome chromosome)
          Perform a mutation on the specified chromosome.
 

Uses of Chromosome in org.encog.neural.neat.training
 

Methods in org.encog.neural.neat.training that return Chromosome
 Chromosome NEATGenome.getLinks()
           
 Chromosome NEATGenome.getLinksChromosome()
           
 Chromosome NEATGenome.getNeurons()
           
 Chromosome NEATGenome.getNeuronsChromosome()
           
 

Methods in org.encog.neural.neat.training with parameters of type Chromosome
 void NEATGenome.setLinksChromosome(Chromosome linksChromosome)
           
 void NEATGenome.setNeuronsChromosome(Chromosome neuronsChromosome)
           
 

Constructors in org.encog.neural.neat.training with parameters of type Chromosome
NEATGenome(long genomeID, Chromosome neurons, Chromosome links, int inputCount, int outputCount)
          Create a NEAT gnome.
NEATInnovationList(Population population, Chromosome links, Chromosome neurons)
          Construct an innovation list.
 



Copyright © 2011. All Rights Reserved.