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.
selTournament(fitness, n.select, k = 3L)
[integer
] Vector of survivor indizes.
[matrix
]
Matrix of fitness values (each column contains the fitness value(s) of one
individual).
[integer(1)
]
Number of elements to select.
[integer(1)
]
Number of individuals to participate in each tournament. Default is 2L
.
Other selectors:
selDomHV()
,
selGreedy()
,
selNondom()
,
selRanking()
,
selRoulette()
,
selSimple()