Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Algorithms.EvolutionStrategy/3.3/EvolutionStrategyMainLoop.cs
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.EvolutionStrategy/3.3/EvolutionStrategyMainLoop.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 34 34 /// </summary> 35 35 [Item("EvolutionStrategyMainLoop", "An operator which represents the main loop of an evolution strategy (EvolutionStrategy).")] 36 [StorableClass ]36 [StorableClass("D2548D32-268F-4C7B-91ED-AC4ED81D598E")] 37 37 public sealed class EvolutionStrategyMainLoop : AlgorithmOperator { 38 38 #region Parameter properties … … 129 129 Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution.")); 130 130 Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far.")); 131 Parameters.Add(new ValueLookupParameter<IntValue>("PopulationSize", " µ (mu) - the size of the population."));132 Parameters.Add(new ValueLookupParameter<IntValue>("ParentsPerChild", " ρ(rho) - how many parents should be recombined."));133 Parameters.Add(new ValueLookupParameter<IntValue>("Children", " λ(lambda) - the size of the offspring population."));131 Parameters.Add(new ValueLookupParameter<IntValue>("PopulationSize", "µ (mu) - the size of the population.")); 132 Parameters.Add(new ValueLookupParameter<IntValue>("ParentsPerChild", "Ï (rho) - how many parents should be recombined.")); 133 Parameters.Add(new ValueLookupParameter<IntValue>("Children", "λ (lambda) - the size of the offspring population.")); 134 134 Parameters.Add(new ValueLookupParameter<IntValue>("MaximumGenerations", "The maximum number of generations which should be processed.")); 135 135 Parameters.Add(new ValueLookupParameter<BoolValue>("PlusSelection", "True for plus selection (elitist population), false for comma selection (non-elitist population)."));
Note: See TracChangeset
for help on using the changeset viewer.