Uses of Class
com.anji.nn.RecurrencyPolicy

Packages that use RecurrencyPolicy
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. 
com.anji.nn com.anji.nn contains classes implementing a simple artificial neural net framework. 
 

Uses of RecurrencyPolicy in com.anji.integration
 

Constructors in com.anji.integration with parameters of type RecurrencyPolicy
AnjiNetTranscriber(RecurrencyPolicy aPolicy)
          ctor
 

Uses of RecurrencyPolicy in com.anji.neat
 

Constructors in com.anji.neat with parameters of type RecurrencyPolicy
SingleTopologicalMutationOperator(float addConnMutationRate, float addNeuronMutationRate, RecurrencyPolicy aPolicy)
          ctor
AddConnectionMutationOperator(RecurrencyPolicy aPolicy)
          Creates new operator with specified recurrency policy.
AddConnectionMutationOperator(float aMutationRate, RecurrencyPolicy aPolicy)
          Creates new operator with specified mutation rate and recurrency policy.
 

Uses of RecurrencyPolicy in com.anji.nn
 

Fields in com.anji.nn declared as RecurrencyPolicy
static RecurrencyPolicy RecurrencyPolicy.DISALLOWED
          no recurrency allowed; no loops in network
static RecurrencyPolicy RecurrencyPolicy.BEST_GUESS
          recurrency allowed; recurrent connections where it seems they might be necessary
static RecurrencyPolicy RecurrencyPolicy.LAZY
          recurrency allowed; treat all connections as if they might be recurrent
 

Methods in com.anji.nn that return RecurrencyPolicy
static RecurrencyPolicy RecurrencyPolicy.valueOf(java.lang.String name)
           
static RecurrencyPolicy RecurrencyPolicy.load(Properties props)
          See Parameter Details for recurrent property settings.