ES selection uses two population parameters:

  • is the number of parents
  • is the number of offspring

The elitist strategy operates such that the next parents are the best from .

  • Thus, parents compete with offspring, and the best individuals always survive. This results in monotonic fitness improvement. However, this results in relatively conservative adaptation, such that it reacts slower to landscape changes.

The non-elitist strategy operates such that the next parents are the best from offspring only.

  • Thus, parents are discarded, with only offspring competing. This doesn’t guarantee monotonic fitness improvement, but the higher exploratory pressure means that it adapts to changes faster.

Selective Pressure

The selective pressure is governed by the ratio

Typically, we set . Selective pressure increases as this ratio increases.

We can interpret this as:

  • being the number of survivors
  • The competition pool size is for , and for . A larger pool means higher truncation pressure.

Why do we use large ? More candidate mutations sampled, resulting in stronger truncation selection. This gives a better statistical estimate of search direction, resulting in the faster elimination of bad strategy parameters. This enhances self-adaptation of .