Uses of Class
jmetal.operators.selection.Selection

Packages that use Selection
jmetal.operators.selection   
jmetal.util.offspring   
 

Uses of Selection in jmetal.operators.selection
 

Subclasses of Selection in jmetal.operators.selection
 class BestSolutionSelection
          This class implements a selection operator used for selecting the best solution in a SolutionSet according to a given comparator
 class BinaryTournament
          This class implements an binary tournament selection operator
 class BinaryTournament2
          This class implements an operator for binary selections using the same code in Deb's NSGA-II implementation
 class DifferentialEvolutionSelection
          Class implementing the selection operator used in DE: three different solutions are returned from a population.
 class PESA2Selection
          This class implements a selection operator as the used in PESA-II algorithm
 class RandomSelection
          This class implements a random selection operator used for selecting two random parents
 class RankingAndCrowdingSelection
          This class implements a selection for selecting a number of solutions from a solutionSet.
 class WorstSolutionSelection
          This class implements a selection operator used for selecting the worst solution in a SolutionSet according to a given comparator
 

Methods in jmetal.operators.selection that return Selection
static Selection SelectionFactory.getSelectionOperator(java.lang.String name, java.util.HashMap parameters)
          Gets a selection operator through its name.
 

Uses of Selection in jmetal.util.offspring
 

Methods in jmetal.util.offspring with parameters of type Selection
 Solution Offspring.getOffspring(SolutionSet solutionSet, int numberOfParents, int index, Selection selectionOperator)
          Return on offspring from a solution set, indicating the selection operator