Uses of Interface
org.encog.solve.genetic.genome.Genome

Packages that use Genome
org.encog.neural.networks.training.genetic   
org.encog.neural.networks.training.neat   
org.encog.solve.genetic   
org.encog.solve.genetic.genome   
org.encog.solve.genetic.population   
org.encog.solve.genetic.species   
 

Uses of Genome in org.encog.neural.networks.training.genetic
 

Classes in org.encog.neural.networks.training.genetic that implement Genome
 class NeuralGenome
          Implements a genome that allows a feedforward neural network to be trained using a genetic algorithm.
 

Methods in org.encog.neural.networks.training.genetic with parameters of type Genome
 double GeneticScoreAdapter.calculateScore(Genome genome)
          Calculate the genome's score.
 

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

Classes in org.encog.neural.networks.training.neat that implement Genome
 class NEATGenome
          Implements a NEAT genome.
 

Uses of Genome in org.encog.solve.genetic
 

Methods in org.encog.solve.genetic with parameters of type Genome
 void GeneticAlgorithm.addSpeciesMember(Species species, Genome genome)
          Add a genome.
 void GeneticAlgorithm.calculateScore(Genome g)
          Calculate the score for this genome.
 

Constructors in org.encog.solve.genetic with parameters of type Genome
MateWorker(Genome mother, Genome father, Genome child1, Genome child2)
           
 

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

Classes in org.encog.solve.genetic.genome that implement Genome
 class BasicGenome
          A basic abstract genome.
 

Methods in org.encog.solve.genetic.genome with parameters of type Genome
 double CalculateGenomeScore.calculateScore(Genome genome)
          Calculate this genome's score.
 int GenomeComparator.compare(Genome genome1, Genome genome2)
          Compare two genomes.
 int BasicGenome.compareTo(Genome other)
          
 void Genome.mate(Genome father, Genome child1, Genome child2)
          Mate with another genome and produce two children.
 void BasicGenome.mate(Genome father, Genome child1, Genome child2)
          Mate two genomes.
 

Uses of Genome in org.encog.solve.genetic.population
 

Methods in org.encog.solve.genetic.population that return Genome
 Genome Population.get(int i)
          Get a genome by index.
 Genome BasicPopulation.get(int i)
          Get a genome by index.
 Genome Population.getBest()
           
 Genome BasicPopulation.getBest()
           
 

Methods in org.encog.solve.genetic.population that return types with arguments of type Genome
 List<Genome> Population.getGenomes()
           
 List<Genome> BasicPopulation.getGenomes()
           
 

Methods in org.encog.solve.genetic.population with parameters of type Genome
 void Population.add(Genome genome)
          Add a genome to the population.
 void BasicPopulation.add(Genome genome)
          Add a genome to the population.
 

Method parameters in org.encog.solve.genetic.population with type arguments of type Genome
 void Population.addAll(List<? extends Genome> newPop)
          Add all of the specified members to this population.
 void BasicPopulation.addAll(List<? extends Genome> newPop)
          Add all of the specified members to this population.
 

Uses of Genome in org.encog.solve.genetic.species
 

Methods in org.encog.solve.genetic.species that return Genome
 Genome Species.chooseParent()
          Choose a worthy parent for mating.
 Genome BasicSpecies.chooseParent()
          Choose a parent to mate.
 Genome Species.getLeader()
           
 Genome BasicSpecies.getLeader()
           
 

Methods in org.encog.solve.genetic.species that return types with arguments of type Genome
 List<Genome> Species.getMembers()
           
 List<Genome> BasicSpecies.getMembers()
           
 

Methods in org.encog.solve.genetic.species with parameters of type Genome
 void Species.setLeader(Genome leader)
          Set the leader of this species.
 void BasicSpecies.setLeader(Genome leader)
          Set the leader.
 

Constructors in org.encog.solve.genetic.species with parameters of type Genome
BasicSpecies(Population population, Genome first, long speciesID)
          Construct a species.
 



Copyright © 2011. All Rights Reserved.