Uses of Interface
net.sourceforge.cilib.entity.operators.Operator

Packages that use Operator
net.sourceforge.cilib.entity.operators   
net.sourceforge.cilib.entity.operators.creation   
net.sourceforge.cilib.entity.operators.crossover   
net.sourceforge.cilib.entity.operators.general   
net.sourceforge.cilib.entity.operators.mutation   
net.sourceforge.cilib.entity.operators.selection   
 

Uses of Operator in net.sourceforge.cilib.entity.operators
 

Classes in net.sourceforge.cilib.entity.operators that implement Operator
 class CompositeOperator
          Create a composte list of Operator instances.
 

Methods in net.sourceforge.cilib.entity.operators that return Operator
 Operator Operator.getClone()
          Create a cloned copy of the current object and return it.
 

Methods in net.sourceforge.cilib.entity.operators with parameters of type Operator
 void CompositeOperator.add(Operator operator)
          Add an operator to the composite.
 

Uses of Operator in net.sourceforge.cilib.entity.operators.creation
 

Subinterfaces of Operator in net.sourceforge.cilib.entity.operators.creation
 interface CreationStrategy
          Creation operator definition.
 

Classes in net.sourceforge.cilib.entity.operators.creation that implement Operator
 class RandCreationStrategy
           
 

Uses of Operator in net.sourceforge.cilib.entity.operators.crossover
 

Classes in net.sourceforge.cilib.entity.operators.crossover that implement Operator
 class BlendCrossoverStrategy
          Implementation of the blend cross-over strategy.
 class CrossoverStrategy
           
 class DifferentialEvolutionBinomialCrossover
          Binomial crossover operator.
 class DifferentialEvolutionExponentialCrossover
           
 class OnePointCrossoverStrategy
           
 class UniformCrossoverStrategy
           
 

Uses of Operator in net.sourceforge.cilib.entity.operators.general
 

Classes in net.sourceforge.cilib.entity.operators.general that implement Operator
 class TopologyLoopingOperator
          TODO: Complete this javadoc.
 

Methods in net.sourceforge.cilib.entity.operators.general that return Operator
 Operator TopologyLoopingOperator.getOperator()
           
 

Methods in net.sourceforge.cilib.entity.operators.general with parameters of type Operator
 void TopologyLoopingOperator.setOperator(Operator operator)
           
 

Uses of Operator in net.sourceforge.cilib.entity.operators.mutation
 

Classes in net.sourceforge.cilib.entity.operators.mutation that implement Operator
 class CauchyMutationStrategy
           
 class GaussianMutationStrategy
           
 class MutationStrategy
           
 class UniformMutationStrategy
           
 

Uses of Operator in net.sourceforge.cilib.entity.operators.selection
 

Classes in net.sourceforge.cilib.entity.operators.selection that implement Operator
 class CompoundSelection
          This class implements the Composite design pattern to correctly apply a group of selection operators to perform a specific selection.
 class ElitistSelectionStrategy
           
 class RandomSelectionStrategy
           
 class RouletteWheelSelectionStrategy
          This class implements Roulette Wheel selection, also known as proportionate selection.
 class SelectionStrategy
           
 class TournamentSelectionStrategy
          Perform a tournament selection process on the provided Topology with a predefined tournament size.
 



Copyright © 2009 CIRG. All Rights Reserved.