Uses of Class
com.anji.neat.RemoveConnectionMutationOperator.Strategy

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

Uses of RemoveConnectionMutationOperator.Strategy in com.anji.neat
 

Fields in com.anji.neat declared as RemoveConnectionMutationOperator.Strategy
static RemoveConnectionMutationOperator.Strategy RemoveConnectionMutationOperator.Strategy.ALL
          all connections have equal likelihood of being removed
static RemoveConnectionMutationOperator.Strategy RemoveConnectionMutationOperator.Strategy.SKEWED
          likelihood of connection being removed is inversely proprtional to weight
static RemoveConnectionMutationOperator.Strategy RemoveConnectionMutationOperator.Strategy.SMALL
          number of connections removed (n) is calculated based on total number of connections, and the n smallest connections are removed, excepting any whose weight is larger than maxWeightRemoved
 

Methods in com.anji.neat that return RemoveConnectionMutationOperator.Strategy
static RemoveConnectionMutationOperator.Strategy RemoveConnectionMutationOperator.Strategy.valueOf(java.lang.String s)
           
 

Constructors in com.anji.neat with parameters of type RemoveConnectionMutationOperator.Strategy
RemoveConnectionMutationOperator(float aMutationRate, float aMaxWeightRemoved, RemoveConnectionMutationOperator.Strategy aStrategy)