Package org.moeaframework.core.selection
Interface Selection
- All Known Implementing Classes:
DifferentialEvolutionSelection,PESA2.RegionBasedSelection,TournamentSelection,UniformSelection
public interface Selection
Interface for selection operators. Selection operators pick one or more solutions from a population using some
selection criteria.
-
Method Summary
Modifier and TypeMethodDescriptionSolution[]select(int arity, Population population) Returns an array of lengtharityof solutions selected from the specified population.
-
Method Details
-
select
Returns an array of lengtharityof solutions selected from the specified population.- Parameters:
arity- the number of solutions selected from the specified populationpopulation- the population from which solutions are selected- Returns:
- an array of length
arityof solutions selected from the specified population
-