selRanking {ecr} | R Documentation |
Rank Selection Operator
Description
Rank-based selection preserves a constant selection pressure by sorting the population on the basis of fitness, and then allocating selection probabilities to individuals according to their rank, rather than according to their actual fitness values.
Usage
selRanking(fitness, n.select, s = 1.5, scheme = "linear")
Arguments
fitness |
[ |
n.select |
[ |
s |
[ |
scheme |
[ |
Value
[setOfIndividuals
]
References
Eiben, A. E., & Smith, J. E. (2007). Introduction to evolutionary computing. Berlin: Springer.
See Also
Other selectors:
selDomHV()
,
selGreedy()
,
selNondom()
,
selRoulette()
,
selSimple()
,
selTournament()