Uses of Class
org.jgap.ReproductionOperator

Packages that use ReproductionOperator
com.anji.neat com.anji.neat contains classes implementing NEAT framework, including genes, mutation operators, and fitness function used for XOR. 
com.anji.util com.anji.util contains utility classes used in the ANJI framework. 
org.jgap   
org.jgap.impl   
 

Uses of ReproductionOperator in com.anji.neat
 

Subclasses of ReproductionOperator in com.anji.neat
 class NeatCrossoverReproductionOperator
          Implements NEAT crossover reproduction according to Evolving Neural Networks through Augmenting Topologies .
 

Uses of ReproductionOperator in com.anji.util
 

Subclasses of ReproductionOperator in com.anji.util
 class DummyReproductionOperator
           
 

Uses of ReproductionOperator in org.jgap
 

Subclasses of ReproductionOperator in org.jgap
 class CrossoverReproductionOperator
          Abstract crossover reporduction operator handles iteration over population to determine pairs of parent chromosomes.
 

Methods in org.jgap with parameters of type ReproductionOperator
 void Configuration.addReproductionOperator(ReproductionOperator a_operatorToAdd)
          Add a reproduction operator for use in this algorithm.
 

Uses of ReproductionOperator in org.jgap.impl
 

Subclasses of ReproductionOperator in org.jgap.impl
 class CloneReproductionOperator
          Produces offspring be creating clones of parents.