Uses of Interface
Operator.Module

Packages that use Module
Algorithm   
Operator   
 

Uses of Module in Algorithm
 

Methods in Algorithm that return Module
 Module SimplePipeline.getModule(int i)
          Return element specified by i
 Module Pipeline.getModule(int i)
          Gets module number i from the pipeline
 

Methods in Algorithm that return types with arguments of type Module
 java.util.Collection<Module> SimplePipeline.getModules()
          Return the entire collection of modules
 java.util.Collection<Module> Pipeline.getModules()
          Gets a Collection from the pipeline
 

Methods in Algorithm with parameters of type Module
 void SimplePipeline.addModule(Module m)
          Add a module to the end of the pipeline
 void Pipeline.addModule(Module m)
          Adds a module to the pipeline
 

Uses of Module in Operator
 

Subinterfaces of Module in Operator
 interface Operator
          Interface for Operator.
 

Classes in Operator that implement Module
 class Collector
          Collector is used as a base class for collecting data from a population, e.g for collecting statistics.
 class CrossoverModule
          CrossoverModule performs crossover on an entire population.
 class EliteReplacementOperator
          EliteReplacementOperator has a EliteReplacementOperation.
 class FitnessEvaluator
          FitnessEvaluator is a module that is used to evaluate an entire populations fitness.
 class Initialiser
          Initialiser has a CreationOperation and is used to create a population.
 class JoinOperator
          Abstract class for joining two populations.
 class MeritReplacementStrategy
          MeritReplacementStrategy joins to populations.
 class MutationOperator
          MutationOperator has a MutationOperation.
 class OperatorModule
          Abstract class for Modules with operations.
 class RampedHalfAndHalfInitialiser
          Class for performing ramped full and grow initialization.
 class SelectionScheme
          SelectionScheme has a SelectionOperation This opertor is used for selecting from the population
 class SimpleReplacementStrategy
          SimpleReplacementStrategy joins two populations.
 class SourceModule
          Abstract class used for a source module.
 class SplitOperator
          Abstract class for splitting a population.