Uses of Class
es.udc.gii.common.eaf.algorithm.operator.selection.SelectionOperator

Packages that use SelectionOperator
es.udc.gii.common.eaf.algorithm   
es.udc.gii.common.eaf.algorithm.operator.selection   
es.udc.gii.common.eaf.algorithm.parallel   
es.udc.gii.common.eaf.factory   
 

Uses of SelectionOperator in es.udc.gii.common.eaf.algorithm
 

Fields in es.udc.gii.common.eaf.algorithm with type parameters of type SelectionOperator
private  OperatorChain<SelectionOperator> EvolutionaryAlgorithm.selectionChain
           
 

Methods in es.udc.gii.common.eaf.algorithm that return types with arguments of type SelectionOperator
 OperatorChain<SelectionOperator> EvolutionaryAlgorithm.getSelectionChain()
           
 

Method parameters in es.udc.gii.common.eaf.algorithm with type arguments of type SelectionOperator
 void EvolutionaryAlgorithm.setSelectionChain(OperatorChain<SelectionOperator> selectionChain)
           
 

Uses of SelectionOperator in es.udc.gii.common.eaf.algorithm.operator.selection
 

Subclasses of SelectionOperator in es.udc.gii.common.eaf.algorithm.operator.selection
 class DeterministicTournamentSelection
          This class implements the deterministic tournament selection.
 class ExtintionOperator
          This operator allows calculating the surviving individuals throug their relations, i.e., as a sum of penalties and benefits.
 class InheritExtintionOperator
           
 class LinearRankingSelection
          In linear ranking selection, the selection probability of each individual is defined as a linear function of the individuals' rank.
 class TournamentSelection
          This method of selection runs a tournament among a few individuals chosen at random from the population and selects the winner for the reproduction phase.
 class UniformSelection
           
 

Uses of SelectionOperator in es.udc.gii.common.eaf.algorithm.parallel
 

Methods in es.udc.gii.common.eaf.algorithm.parallel that return types with arguments of type SelectionOperator
 OperatorChain<SelectionOperator> ParallelEvolutionaryAlgorithm.getSelectionChain()
           
 

Method parameters in es.udc.gii.common.eaf.algorithm.parallel with type arguments of type SelectionOperator
 void ParallelEvolutionaryAlgorithm.setSelectionChain(OperatorChain<SelectionOperator> selectionChain)
           
 

Uses of SelectionOperator in es.udc.gii.common.eaf.factory
 

Methods in es.udc.gii.common.eaf.factory that return types with arguments of type SelectionOperator
abstract  OperatorChain<SelectionOperator> SimpleFactory.createSelectionChain()
           
 OperatorChain<SelectionOperator> XMLSimpleFactory.createSelectionChain()