Uses of Class
com.anji.neat.NeatConfiguration

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

Constructors in com.anji.integration with parameters of type NeatConfiguration
PersistenceEventListener(NeatConfiguration aConfig, Run aRun)
          ctor
 

Uses of NeatConfiguration in com.anji.neat
 

Methods in com.anji.neat with parameters of type NeatConfiguration
static ChromosomeMaterial NeatChromosomeUtility.newSampleChromosomeMaterial(short newNumInputs, short newNumHidden, short newNumOutputs, NeatConfiguration config, boolean fullyConnected)
          factory method to construct chromosome material for neural net with specified input and output dimension, JGAP/NEAT configuration, and amount of connectivity
 boolean AddNeuronMutationOperator.addNeuronAtConnection(NeatConfiguration config, java.util.Map neurons, ConnectionAllele oldConnectAllele, java.util.Set allelesToAdd, java.util.Set allelesToRemove)
           
 void AddConnectionMutationOperator.addSingleConnection(NeatConfiguration config, java.util.List neuronList, java.util.SortedMap conns, java.util.Set allelesToAdd)
          Given the collections of neurons and connections, returns the new connection that should be added.