Uses of Interface
org.encog.solve.genetic.genes.Gene

Packages that use Gene
org.encog.neural.networks.training.neat   
org.encog.solve.genetic.genes   
org.encog.solve.genetic.genome   
 

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

Classes in org.encog.neural.networks.training.neat that implement Gene
 class NEATLinkGene
          Implements a NEAT link gene.
 class NEATNeuronGene
          Implements a NEAT neuron gene.
 

Methods in org.encog.neural.networks.training.neat with parameters of type Gene
 void NEATNeuronGene.copy(Gene gene)
          Copy another gene to this one.
 void NEATLinkGene.copy(Gene gene)
          Copy from another gene.
 

Uses of Gene in org.encog.solve.genetic.genes
 

Classes in org.encog.solve.genetic.genes that implement Gene
 class BasicGene
          Implements the basic functionality for a gene.
 class CharGene
          A gene that holds a single character.
 class DoubleGene
          A gene that contains a floating point value.
 class IntegerGene
          A gene that contains an integer value.
 

Methods in org.encog.solve.genetic.genes with parameters of type Gene
 int BasicGene.compareTo(Gene o)
          
 void IntegerGene.copy(Gene gene)
          Copy another gene to this one.
 void Gene.copy(Gene gene)
          Copy another gene to this one.
 void DoubleGene.copy(Gene gene)
          Copy another gene to this one.
 void CharGene.copy(Gene gene)
          Copy another gene to this gene.
 

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

Methods in org.encog.solve.genetic.genome that return Gene
 Gene Chromosome.get(int i)
          Get an individual gene.
 Gene Chromosome.getGene(int gene)
          Get the specified gene.
 

Methods in org.encog.solve.genetic.genome that return types with arguments of type Gene
 List<Gene> Chromosome.getGenes()
          Used the get the entire gene list.
 

Methods in org.encog.solve.genetic.genome with parameters of type Gene
 void Chromosome.add(Gene gene)
          Add a gene.
 



Copyright © 2011. All Rights Reserved.