Uses of Class
jeco.kernel.operator.selector.SelectionOperator

Packages that use SelectionOperator
jeco.kernel.algorithm.moga   
jeco.kernel.operator.selector   
 

Uses of SelectionOperator in jeco.kernel.algorithm.moga
 

Fields in jeco.kernel.algorithm.moga declared as SelectionOperator
protected  SelectionOperator NSGAII.selectionOperator
           
protected  SelectionOperator SPEA2.selectionOperator
           
 

Methods in jeco.kernel.algorithm.moga with parameters of type SelectionOperator
 void NSGAII.setSelectionOperator(SelectionOperator selectionOperator)
           
 void SPEA2.setSelectionOperator(SelectionOperator selectionOperator)
           
 

Constructors in jeco.kernel.algorithm.moga with parameters of type SelectionOperator
NSGAII(Problem problem, int maxPopulationSize, int maxGenerations, MutationOperator mutationOperator, CrossoverOperator crossoverOperator, SelectionOperator selectionOperator)
           
SPEA2(Problem problem, int maxPopulationSize, int maxGenerations, MutationOperator mutationOperator, CrossoverOperator crossoverOperator, SelectionOperator selectionOperator)
           
 

Uses of SelectionOperator in jeco.kernel.operator.selector
 

Subclasses of SelectionOperator in jeco.kernel.operator.selector
 class BinaryTournament
           
 class BinaryTournamentNSGAII
           
 class TournamentSelect