Uses of Class
Operator.Operations.SelectionOperation

Packages that use SelectionOperation
Main   
Operator.Operations   
 

Uses of SelectionOperation in Main
 

Methods in Main that return SelectionOperation
protected  SelectionOperation AbstractRun.getSelectionOperation(java.util.Properties p, RandomNumberGenerator rng)
          Load the fitness class according to the parameters
 

Uses of SelectionOperation in Operator.Operations
 

Subclasses of SelectionOperation in Operator.Operations
 class EliteOperationSelection
          Class for selection of elites.
 class LSystemSelect
           
 class ProportionalRouletteWheel
          Roulette wheel selection based on fitness proprtional selection.
 class RouletteWheel
          This is an abstract class for creating Roulette wheel selection methods with different distributions
 class ScaledRouletteWheel
          Scaled Roulette wheel selection based on weighted selection, The likelyhood of an individual getting picked is: total sum of the fitness - fitness of the individual
 class SimpleUserSelect
           
 class TournamentSelect
          The operation of this class is tournament selection.
 class UserSelect
          The top N individuals are visually offered to the user and the user picks who should win.