The genetic algorithm doesn't work on a single individual but on a whole
population of
individuals which undergoes an evolutionary
process starting with the initial Population
.
The simplest way to create , is by simply generating
random
strings of length
. However, it is also possible to generate the
phenotypes of the individual and then translating them into their
corresponding genotypes. If certain parameter-combinations of the
phenotype tend to be more successful, this knowledge can be used to
improve the quality of
and lead to a faster convergence
of the algorithm. However this will cut down the probability of finding
totally different combination which might perform even better.
A better method of improving the quality of the initial population is
decimation. A population of the size
is
created at random of which the best (i.e. the fittest)
individuals
are selected into
. The factor
is called decimation
factor.