Uses of Class
org.jgap.NaturalSelector

Packages that use NaturalSelector
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. 
org.jgap   
org.jgap.impl   
 

Uses of NaturalSelector in com.anji.integration
 

Subclasses of NaturalSelector in com.anji.integration
 class SimpleSelector
          Selects chromosomes based directly on fitness value, as opposed to a statistical probability.
 

Uses of NaturalSelector in org.jgap
 

Methods in org.jgap that return NaturalSelector
 NaturalSelector Configuration.getNaturalSelector()
           
 

Methods in org.jgap with parameters of type NaturalSelector
 void Configuration.setNaturalSelector(NaturalSelector selector)
          set selector
 

Uses of NaturalSelector in org.jgap.impl
 

Subclasses of NaturalSelector in org.jgap.impl
 class WeightedRouletteSelector
          A basic implementation of NaturalSelector that models a roulette wheel.