Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Documentation/Reference/Evolution Strategy


Ignore:
Timestamp:
06/02/10 14:04:04 (14 years ago)
Author:
mkofler
Comment:

Started ES description page

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Reference/Evolution Strategy

    v1 v1  
     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. ||