Uses of Class
com.anji.neat.NeuronType

Packages that use NeuronType
com.anji.neat com.anji.neat contains classes implementing NEAT framework, including genes, mutation operators, and fitness function used for XOR. 
 

Uses of NeuronType in com.anji.neat
 

Fields in com.anji.neat declared as NeuronType
static NeuronType NeuronType.INPUT
          input neuron
static NeuronType NeuronType.HIDDEN
          hidden neuron
static NeuronType NeuronType.OUTPUT
          output neuron
 

Methods in com.anji.neat that return NeuronType
static NeuronType NeuronType.valueOf(java.lang.String name)
           
 NeuronType NeuronAllele.getType()
           
 

Methods in com.anji.neat with parameters of type NeuronType
 boolean NeuronAllele.isType(NeuronType aType)
           
 NeuronAllele NeatConfiguration.newNeuronAllele(NeuronType type)
          factory method to construct new neuron allele with unique innovation ID of specified type
static java.util.SortedMap NeatChromosomeUtility.getNeuronMap(java.util.Collection alleles, NeuronType type)
          if type == null, returns all neurons in alleles; otherwise, returns only neurons of type
static java.util.List NeatChromosomeUtility.getNeuronList(java.util.Collection alleles, NeuronType type)
          if type == null, returns all neuron genes in genes; otherwise, returns only neuron genes of type
 

Constructors in com.anji.neat with parameters of type NeuronType
NeuronGene(NeuronType newType, java.lang.Long newInnovationId, ActivationFunctionType anActivationType)
          Construct new NeuronGene with given type and ID.