The basic idea to generate a progeny is a random selection biased toward
the best chromosomes (see Goldberg). We implented this idea as a weighted
probability for a chromosome to be selected using the formula:
p = scale * max(0,fitness - mean * mean(fitness))\^\ power
where scale, mean and power are the properties of the niche
(offspringScaleFactor, offspringMeanFactor and offspringPowerFactor
respectively). The default values were selected to be reasonably bias
when the variance in the fitness are both high (at early generations) and low
(in late generatios).
offspring
is part of progeny
method.
For related details For more information see Niche
.