Uses of Class
com.anji.neat.NeuronAllele

Packages that use NeuronAllele
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. 
 

Uses of NeuronAllele in com.anji.integration
 

Methods in com.anji.integration that return NeuronAllele
static NeuronAllele XmlPersistableAllele.neuronFromXml(org.w3c.dom.Node node)
          Convert from XML to NeuronGene object
 

Uses of NeuronAllele in com.anji.neat
 

Methods in com.anji.neat that return NeuronAllele
 NeuronAllele NeatConfiguration.newNeuronAllele(NeuronType type)
          factory method to construct new neuron allele with unique innovation ID of specified type
 NeuronAllele NeatConfiguration.newNeuronAllele(java.lang.Long connectionId)
          Factory method to construct new neuron allele which has replaced connection connectionId according to NEAT add neuron mutation.