selection Worst
fun <V, F> Array<Chromosome<V, F>>.selectionWorst(count: Int, from: Int, to: Int): Array<Chromosome<V, F>>
Find and moves the worst chromosomes to the beginning of source. (Not sort source)
Return
the same source with moved to the beginning chromosomes
Parameters
count
number of the worst values to be moved to the beginning
from
index from for search in array (inclusive)
to
index to for search in array (exclusive)