| 1 | = Evolution Strategy = |
| 2 | |
| 3 | '''Algorithm Parameters:''' |
| 4 | ||= Parameter =||= Description =|| |
| 5 | || Analyzer || The operator used to analyze each generation. || |
| 6 | || Children || lambda - the size of the offspring population. || |
| 7 | || !MaximumGenerations || The maximum number of generations which should be processed. || |
| 8 | || Mutator || The operator used to mutate solutions. || |
| 9 | || !ParentsPerChild || rho - how many parents should be recombined. || |
| 10 | || !PlusSelection || True for plus selection (elitist population), false for comma selection (non-elitist population). || |
| 11 | || Population Size || mu - the size of the population. || |
| 12 | || Recombinator || The operator used to cross solutions. || |
| 13 | || Seed || The random seed used to initialize the new pseudo random number generator. || |
| 14 | || !SetSeedRandomly || True if the random seed should be set to a random value, otherwise false. || |
| 15 | || !StrategyParameterCreator || The operator that creates the strategy parameters. || |
| 16 | || !StrategyParameterCrossover || The operator that recombines the strategy parameters. || |
| 17 | || !StrategyParameterManipulator || The operator that manipulates the strategy parameters. || |