Uses of Class
org.jgap.Allele

Packages that use Allele
com.anji.integration com.anji.integration contains classes that provide the glue between the various components of the system, including artificial neural net implementations, JGAP, NEAT, Log4J, and persistence and presentation layers. 
com.anji.neat com.anji.neat contains classes implementing NEAT framework, including genes, mutation operators, and fitness function used for XOR. 
org.jgap   
org.jgap.impl   
 

Uses of Allele in com.anji.integration
 

Constructors in com.anji.integration with parameters of type Allele
XmlPersistableAllele(Allele aAllele)
          ctor
 

Uses of Allele in com.anji.neat
 

Subclasses of Allele in com.anji.neat
 class ConnectionAllele
          Gene corresponding to NEAT connection gene according to Evolving Neural Networks through Augmenting Topologies
 class NeuronAllele
          Gene corresponding to NEAT node gene according to Evolving Neural Networks through Augmenting Topologies
 

Methods in com.anji.neat that return Allele
 Allele NeuronAllele.cloneAllele()
           
 Allele ConnectionAllele.cloneAllele()
           
 

Methods in com.anji.neat with parameters of type Allele
 double NeuronAllele.distance(Allele aTarget)
           
 double ConnectionAllele.distance(Allele target)
           
 

Uses of Allele in org.jgap
 

Methods in org.jgap that return Allele
 Allele Chromosome.findMatchingGene(Allele alleleToMatch)
           
abstract  Allele Allele.cloneAllele()
           
 

Methods in org.jgap with parameters of type Allele
 Allele Chromosome.findMatchingGene(Allele alleleToMatch)
           
abstract  double Allele.distance(Allele target)
           
 

Uses of Allele in org.jgap.impl
 

Subclasses of Allele in org.jgap.impl
 class BooleanAllele
          A Gene implementation that supports two possible values (alleles) for each gene: true and false.
 class IntegerAllele
          A Gene implementation that supports a integer values for its allele.
 

Methods in org.jgap.impl that return Allele
 Allele IntegerAllele.newAllele(Configuration a_activeConfiguration)
          Provides an implementation-independent means for creating new Gene instances.
 Allele IntegerAllele.cloneAllele()
           
 Allele BooleanAllele.cloneAllele()
           
 

Methods in org.jgap.impl with parameters of type Allele
 double IntegerAllele.distance(Allele target)
           
 double BooleanAllele.distance(Allele target)