Package org.apache.commons.math.genetics
Interface SelectionPolicy
-
- All Known Implementing Classes:
TournamentSelection
public interface SelectionPolicy
Algorithm used to select a chromosome pair from a population.- Since:
- 2.0
- Version:
- $Revision: 811685 $ $Date: 2009-09-05 19:36:48 +0200 (sam. 05 sept. 2009) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChromosomePair
select(Population population)
Select two chromosomes from the population.
-
-
-
Method Detail
-
select
ChromosomePair select(Population population)
Select two chromosomes from the population.- Parameters:
population
- the population from which the chromosomes are choosen.- Returns:
- the selected chromosomes.
-
-