Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of IslandOSGA


Ignore:
Timestamp:
06/07/10 09:15:06 (14 years ago)
Author:
mkofler
Comment:

Added Island OSGA description

Legend:

Unmodified
Added
Removed
Modified
  • IslandOSGA

    v1 v1  
     1= Island Offspring Selection Genetic Algorithm =
     2
     3'''Algorithm Parameters:'''
     4||= Parameter         =||= Description =||
     5|| Analyzer            || The operator used to analyze each generation. ||
     6|| !ComparisonFactorLowerBound || The lower bound of the comparison factor (start). ||
     7|| !ComparisonFactorModifier || The operator used to modify the comparison factor. ||
     8|| !ComparisonFactorUpperBound || The upper bound of the comparison factor (end). ||
     9|| Crossover           || The operator used to cross solutions. ||
     10|| Elites              || The numer of elite solutions which are kept in each generation. ||
     11|| !EmigrantsSelector   || Selects the individuals that will be migrated. ||
     12|| !ImmigrationReplacer || Replaces part of the original population with the immigrants. ||
     13|| IslandAnalyzer      || The operator used to analyze each island. ||
     14|| !MaximumGenerations || The maximum number of generations which should be processed. ||
     15|| !MaximumSelectionPressure || The maximum selection pressure that terminates the algorithm. ||
     16|| !MigrationInterval   || The number of generations that should pass between migration phases. ||
     17|| !MigrationRate       || The proportion of individuals that should migrate between the islands. ||
     18|| Migrator            || The migration strategy. ||
     19|| !MutationProbability || The probability that the mutation operator is applied on a solution. ||
     20|| Mutator             || The operator used to mutate solutions. ||
     21|| !NumberOfIslands     || The number of islands. ||
     22|| !OffspringSelectionBeforeMutation || True if the offspring selection step should be applied before mutation, false if it should be applied after mutation. ||
     23|| Population Size     || The size of the population of solutions. ||
     24|| Seed                || The random seed used to initialize the new pseudo random number generator. ||
     25|| !SelectedParents     || How much parents should be selected each time the offspring selection step is performed until the population is filled. ||
     26|| Selector            || The operator used to select solutions for reproduction. ||
     27|| !SetSeedRandomly    || True if the random seed should be set to a random value, otherwise false. ||
     28|| !SuccessRatio        || The ratio of successful to total children that should be achieved. ||
     29
     30'''Remarks:'''
     31 * ''SelectedParents:'' This parameter should be about the same or twice the size of PopulationSize for smaller problems, and less for large problems.
     32
     33'''Is there a sample/tutorial?'''
     34
     35Not yet.