Uses of Class
com.anji.neat.ConnectionAllele

Packages that use ConnectionAllele
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 ConnectionAllele in com.anji.integration
 

Methods in com.anji.integration that return ConnectionAllele
static ConnectionAllele XmlPersistableAllele.connectionFromXml(org.w3c.dom.Node node)
          Convert from XML to ConnectionGene object
 

Uses of ConnectionAllele in com.anji.neat
 

Methods in com.anji.neat that return ConnectionAllele
 ConnectionAllele NeatConfiguration.newConnectionAllele(java.lang.Long srcNeuronId, java.lang.Long destNeuronId)
          factory method to construct new connection allele from neuron srcNeuronId to neuron destNeuronId according to NEAT add connection mutation; if a previous mutation has occurred adding a connection between srcNeuronId and destNeuronId, returns connection with that id; otherwise, new innovation id
 

Methods in com.anji.neat with parameters of type ConnectionAllele
 boolean AddNeuronMutationOperator.addNeuronAtConnection(NeatConfiguration config, java.util.Map neurons, ConnectionAllele oldConnectAllele, java.util.Set allelesToAdd, java.util.Set allelesToRemove)