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

Packages that use Chromosome
org.encog.ml.genetic.crossover   
org.encog.ml.genetic.genome   
org.encog.ml.genetic.mutate   
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 Crossover.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Mate two chromosomes.
 void SpliceNoRepeat.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Assuming this chromosome is the "mother" mate with the passed in "father".
 void Splice.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Assuming this chromosome is the "mother" mate with the passed in "father".
 

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 MutatePerturb.performMutation(Chromosome chromosome)
          Perform a perturb mutation on the specified chromosome.
 void MutateShuffle.performMutation(Chromosome chromosome)
          Perform a shuffle mutation.
 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 © 2012. All Rights Reserved.