selTournament {ecr} | R Documentation |
k-Tournament selector.
Description
k individuals from the population are chosen randomly and the best one is selected to be included into the mating pool. This process is repeated until the desired number of individuals for the mating pool is reached.
Usage
selTournament(fitness, n.select, k = 3L)
Arguments
fitness |
[ |
n.select |
[ |
k |
[ |
Value
[integer
] Vector of survivor indizes.
See Also
Other selectors:
selDomHV()
,
selGreedy()
,
selNondom()
,
selRanking()
,
selRoulette()
,
selSimple()
[Package ecr version 2.1.1 Index]