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

Packages that use Chromosome
org.encog.neural.networks.training.neat   
org.encog.solve.genetic.crossover   
org.encog.solve.genetic.genome   
org.encog.solve.genetic.mutate   
 

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

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

Constructors in org.encog.neural.networks.training.neat with parameters of type Chromosome
NEATGenome(NEATTraining training, 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.
 

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

Methods in org.encog.solve.genetic.crossover with parameters of type Chromosome
 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".
 void Crossover.mate(Chromosome mother, Chromosome father, Chromosome offspring1, Chromosome offspring2)
          Mate two chromosomes.
 

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

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

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

Methods in org.encog.solve.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.
 



Copyright © 2011. All Rights Reserved.