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

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

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

Classes in org.encog.ml.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.ml.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 CharGene.copy(Gene gene)
          Copy another gene to this gene.
 void DoubleGene.copy(Gene gene)
          Copy another gene to this one.
 

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

Methods in org.encog.ml.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.ml.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.ml.genetic.genome with parameters of type Gene
 void Chromosome.add(Gene gene)
          Add a gene.
 

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

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

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



Copyright © 2011. All Rights Reserved.