Uses of Class
org.jgap.MutationOperator

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

Uses of MutationOperator in com.anji.neat
 

Subclasses of MutationOperator in com.anji.neat
 class AddConnectionMutationOperator
          Implements NEAT add connection mutation inspired by Evolving Neural Networks through Augmenting Topologies .
 class AddNeuronMutationOperator
          Implements NEAT add node mutation inspired by Evolving Neural Networks through Augmenting Topologies .
 class PruneMutationOperator
          Removes neurons and connections that do not affect the activation of the network.
 class RemoveConnectionMutationOperator
          Implements remove connection mutation, using one of 3 strategies: SKEWED - Probability of connection being removed ranges from 0 (if weight magnitude >= max weight removed) to mutation rate (if weight is 0) ALL - All connections have equal likelihood of being removed, regardless of weight.
 class SingleTopologicalMutationOperator
           
 class WeightMutationOperator
          Implements NEAT perturb connection weight mutation according to Evolving Neural Networks through Augmenting Topologies .
 

Uses of MutationOperator in org.jgap
 

Methods in org.jgap with parameters of type MutationOperator
 void Configuration.addMutationOperator(MutationOperator a_operatorToAdd)
          Add a mutation operator for use in this algorithm.