Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs @ 7401

Last change on this file since 7401 was 7401, checked in by ascheibe, 12 years ago

#1744 updated branch from trunk

File size: 21.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Optimization;
27using HeuristicLab.Optimization.Operators;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30using HeuristicLab.Selection;
31
32namespace HeuristicLab.Algorithms.GeneticAlgorithm {
33  /// <summary>
34  /// An island genetic algorithm main loop operator.
35  /// </summary>
36  [Item("IslandGeneticAlgorithmMainLoop", "An island genetic algorithm main loop operator.")]
37  [StorableClass]
38  public sealed class IslandGeneticAlgorithmMainLoop : AlgorithmOperator {
39    #region Parameter Properties
40    public ValueLookupParameter<IRandom> RandomParameter {
41      get { return (ValueLookupParameter<IRandom>)Parameters["Random"]; }
42    }
43    public ValueLookupParameter<BoolValue> MaximizationParameter {
44      get { return (ValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
45    }
46    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
47      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
48    }
49    public ValueLookupParameter<DoubleValue> BestKnownQualityParameter {
50      get { return (ValueLookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
51    }
52    public ValueLookupParameter<IntValue> NumberOfIslandsParameter {
53      get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfIslands"]; }
54    }
55    public ValueLookupParameter<IntValue> MigrationIntervalParameter {
56      get { return (ValueLookupParameter<IntValue>)Parameters["MigrationInterval"]; }
57    }
58    public ValueLookupParameter<PercentValue> MigrationRateParameter {
59      get { return (ValueLookupParameter<PercentValue>)Parameters["MigrationRate"]; }
60    }
61    public ValueLookupParameter<IOperator> MigratorParameter {
62      get { return (ValueLookupParameter<IOperator>)Parameters["Migrator"]; }
63    }
64    public ValueLookupParameter<IOperator> EmigrantsSelectorParameter {
65      get { return (ValueLookupParameter<IOperator>)Parameters["EmigrantsSelector"]; }
66    }
67    public ValueLookupParameter<IOperator> ImmigrationReplacerParameter {
68      get { return (ValueLookupParameter<IOperator>)Parameters["ImmigrationReplacer"]; }
69    }
70    public ValueLookupParameter<IntValue> PopulationSizeParameter {
71      get { return (ValueLookupParameter<IntValue>)Parameters["PopulationSize"]; }
72    }
73    public ValueLookupParameter<IntValue> MaximumGenerationsParameter {
74      get { return (ValueLookupParameter<IntValue>)Parameters["MaximumGenerations"]; }
75    }
76    public ValueLookupParameter<IOperator> SelectorParameter {
77      get { return (ValueLookupParameter<IOperator>)Parameters["Selector"]; }
78    }
79    public ValueLookupParameter<IOperator> CrossoverParameter {
80      get { return (ValueLookupParameter<IOperator>)Parameters["Crossover"]; }
81    }
82    public ValueLookupParameter<PercentValue> MutationProbabilityParameter {
83      get { return (ValueLookupParameter<PercentValue>)Parameters["MutationProbability"]; }
84    }
85    public ValueLookupParameter<IOperator> MutatorParameter {
86      get { return (ValueLookupParameter<IOperator>)Parameters["Mutator"]; }
87    }
88    public ValueLookupParameter<IOperator> EvaluatorParameter {
89      get { return (ValueLookupParameter<IOperator>)Parameters["Evaluator"]; }
90    }
91    public ValueLookupParameter<IntValue> ElitesParameter {
92      get { return (ValueLookupParameter<IntValue>)Parameters["Elites"]; }
93    }
94    public ValueLookupParameter<ResultCollection> ResultsParameter {
95      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
96    }
97    public ValueLookupParameter<IOperator> AnalyzerParameter {
98      get { return (ValueLookupParameter<IOperator>)Parameters["Analyzer"]; }
99    }
100    public ValueLookupParameter<IOperator> IslandAnalyzerParameter {
101      get { return (ValueLookupParameter<IOperator>)Parameters["IslandAnalyzer"]; }
102    }
103    public LookupParameter<IntValue> EvaluatedSolutionsParameter {
104      get { return (LookupParameter<IntValue>)Parameters["EvaluatedSolutions"]; }
105    }
106    public LookupParameter<IntValue> IslandGenerations {
107      get { return (LookupParameter<IntValue>)Parameters["IslandGenerations"]; }
108    }
109    public LookupParameter<IntValue> IslandEvaluatedSolutions {
110      get { return (LookupParameter<IntValue>)Parameters["IslandEvaluatedSolutions"]; }
111    }
112    public ValueLookupParameter<BoolValue> Migrate {
113      get { return (ValueLookupParameter<BoolValue>)Parameters["Migrate"]; }
114    }
115    #endregion
116
117    [StorableConstructor]
118    private IslandGeneticAlgorithmMainLoop(bool deserializing) : base(deserializing) { }
119    private IslandGeneticAlgorithmMainLoop(IslandGeneticAlgorithmMainLoop original, Cloner cloner)
120      : base(original, cloner) {
121    }
122    public override IDeepCloneable Clone(Cloner cloner) {
123      return new IslandGeneticAlgorithmMainLoop(this, cloner);
124    }
125    public IslandGeneticAlgorithmMainLoop()
126      : base() {
127      #region Create parameters
128      Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
129      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
130      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
131      Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far."));
132      Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfIslands", "The number of islands."));
133      Parameters.Add(new ValueLookupParameter<IntValue>("MigrationInterval", "The number of generations that should pass between migration phases."));
134      Parameters.Add(new ValueLookupParameter<PercentValue>("MigrationRate", "The proportion of individuals that should migrate between the islands."));
135      Parameters.Add(new ValueLookupParameter<IOperator>("Migrator", "The migration strategy."));
136      Parameters.Add(new ValueLookupParameter<IOperator>("EmigrantsSelector", "Selects the individuals that will be migrated."));
137      Parameters.Add(new ValueLookupParameter<IOperator>("ImmigrationReplacer", "Replaces some of the original population with the immigrants."));
138      Parameters.Add(new ValueLookupParameter<IntValue>("PopulationSize", "The size of the population of solutions."));
139      Parameters.Add(new ValueLookupParameter<IntValue>("MaximumGenerations", "The maximum number of generations that the algorithm should process."));
140      Parameters.Add(new ValueLookupParameter<IOperator>("Selector", "The operator used to select solutions for reproduction."));
141      Parameters.Add(new ValueLookupParameter<IOperator>("Crossover", "The operator used to cross solutions."));
142      Parameters.Add(new ValueLookupParameter<PercentValue>("MutationProbability", "The probability that the mutation operator is applied on a solution."));
143      Parameters.Add(new ValueLookupParameter<IOperator>("Mutator", "The operator used to mutate solutions."));
144      Parameters.Add(new ValueLookupParameter<IOperator>("Evaluator", "The operator used to evaluate solutions."));
145      Parameters.Add(new ValueLookupParameter<IntValue>("Elites", "The numer of elite solutions which are kept in each generation."));
146      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The results collection to store the results."));
147      Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to the analyze the islands."));
148      Parameters.Add(new ValueLookupParameter<IOperator>("IslandAnalyzer", "The operator used to analyze each island."));
149      Parameters.Add(new LookupParameter<IntValue>("EvaluatedSolutions", "The number of times a solution has been evaluated."));
150      Parameters.Add(new LookupParameter<IntValue>("IslandGenerations", "The number of generations calculated on one island."));
151      Parameters.Add(new LookupParameter<IntValue>("IslandEvaluatedSolutions", "The number of times a solution has been evaluated on one island."));
152      Parameters.Add(new ValueLookupParameter<BoolValue>("Migrate", "Migrate the island?"));
153      #endregion
154
155      #region Create operators
156      VariableCreator variableCreator = new VariableCreator();
157      UniformSubScopesProcessor uniformSubScopesProcessor0 = new UniformSubScopesProcessor();
158      VariableCreator islandVariableCreator = new VariableCreator();
159      Placeholder islandAnalyzer1 = new Placeholder();
160      LocalRandomCreator localRandomCreator = new LocalRandomCreator();
161      Placeholder analyzer1 = new Placeholder();
162      ResultsCollector resultsCollector1 = new ResultsCollector();
163      UniformSubScopesProcessor uniformSubScopesProcessor1 = new UniformSubScopesProcessor();
164      Assigner generationsAssigner = new Assigner();
165      Assigner evaluatedSolutionsAssigner = new Assigner();
166      Placeholder selector = new Placeholder();
167      SubScopesProcessor subScopesProcessor1 = new SubScopesProcessor();
168      ChildrenCreator childrenCreator = new ChildrenCreator();
169      UniformSubScopesProcessor uniformSubScopesProcessor2 = new UniformSubScopesProcessor();
170      Placeholder crossover = new Placeholder();
171      StochasticBranch stochasticBranch = new StochasticBranch();
172      Placeholder mutator = new Placeholder();
173      SubScopesRemover subScopesRemover = new SubScopesRemover();
174      UniformSubScopesProcessor uniformSubScopesProcessor3 = new UniformSubScopesProcessor();
175      Placeholder evaluator = new Placeholder();
176      SubScopesCounter subScopesCounter = new SubScopesCounter();
177      SubScopesProcessor subScopesProcessor2 = new SubScopesProcessor();
178      BestSelector bestSelector = new BestSelector();
179      RightReducer rightReducer = new RightReducer();
180      MergingReducer mergingReducer = new MergingReducer();
181      IntCounter islandGenerationsCounter = new IntCounter();
182      Comparator checkIslandGenerationsReachedMaximum = new Comparator();
183      ConditionalBranch checkContinueEvolution = new ConditionalBranch();
184      DataReducer generationsReducer = new DataReducer();
185      DataReducer evaluatedSolutionsReducer = new DataReducer();
186      Placeholder islandAnalyzer2 = new Placeholder();
187      UniformSubScopesProcessor uniformSubScopesProcessor5 = new UniformSubScopesProcessor();
188      Placeholder emigrantsSelector = new Placeholder();
189      IntCounter migrationsCounter = new IntCounter();
190      Placeholder migrator = new Placeholder();
191      UniformSubScopesProcessor uniformSubScopesProcessor6 = new UniformSubScopesProcessor();
192      Placeholder immigrationReplacer = new Placeholder();
193      Comparator generationsComparator = new Comparator();
194      Placeholder analyzer2 = new Placeholder();
195      ConditionalBranch generationsTerminationCondition = new ConditionalBranch();
196
197
198      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Migrations", new IntValue(0)));
199      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("GenerationsSinceLastMigration", new IntValue(0)));
200      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Generations", new IntValue(0))); // Class IslandGeneticAlgorithm expects this to be called Generations
201
202      islandVariableCreator.CollectedValues.Add(new ValueParameter<ResultCollection>("Results", new ResultCollection()));
203      islandVariableCreator.CollectedValues.Add(new ValueParameter<IntValue>("IslandGenerations", new IntValue(0)));
204      islandVariableCreator.CollectedValues.Add(new ValueParameter<IntValue>("IslandEvaluatedSolutions", new IntValue(0)));
205
206      islandAnalyzer1.Name = "Island Analyzer (placeholder)";
207      islandAnalyzer1.OperatorParameter.ActualName = IslandAnalyzerParameter.Name;
208
209      analyzer1.Name = "Analyzer (placeholder)";
210      analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
211
212      resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Migrations"));
213      resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Generations"));
214      resultsCollector1.CollectedValues.Add(new ScopeTreeLookupParameter<ResultCollection>("IslandResults", "Result set for each island", "Results"));
215      resultsCollector1.ResultsParameter.ActualName = ResultsParameter.Name;
216
217      uniformSubScopesProcessor1.Parallel.Value = true;
218
219      generationsAssigner.Name = "Initialize Island Generations";
220      generationsAssigner.LeftSideParameter.ActualName = IslandGenerations.Name;
221      generationsAssigner.RightSideParameter.Value = new IntValue(0);
222
223      evaluatedSolutionsAssigner.Name = "Initialize Island evaluated solutions";
224      evaluatedSolutionsAssigner.LeftSideParameter.ActualName = IslandEvaluatedSolutions.Name;
225      evaluatedSolutionsAssigner.RightSideParameter.Value = new IntValue(0);
226
227      selector.Name = "Selector (placeholder)";
228      selector.OperatorParameter.ActualName = SelectorParameter.Name;
229
230      childrenCreator.ParentsPerChild = new IntValue(2);
231
232      crossover.Name = "Crossover (placeholder)";
233      crossover.OperatorParameter.ActualName = CrossoverParameter.Name;
234
235      stochasticBranch.ProbabilityParameter.ActualName = MutationProbabilityParameter.Name;
236      //set it to the random number generator of the island
237      stochasticBranch.RandomParameter.ActualName = "LocalRandom";
238
239      mutator.Name = "Mutator (placeholder)";
240      mutator.OperatorParameter.ActualName = MutatorParameter.Name;
241
242      subScopesRemover.RemoveAllSubScopes = true;
243
244      evaluator.Name = "Evaluator (placeholder)";
245      evaluator.OperatorParameter.ActualName = EvaluatorParameter.Name;
246
247      subScopesCounter.Name = "Increment EvaluatedSolutions";
248      subScopesCounter.ValueParameter.ActualName = IslandEvaluatedSolutions.Name;
249
250      bestSelector.CopySelected = new BoolValue(false);
251      bestSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
252      bestSelector.NumberOfSelectedSubScopesParameter.ActualName = ElitesParameter.Name;
253      bestSelector.QualityParameter.ActualName = QualityParameter.Name;
254
255      islandGenerationsCounter.Name = "Increment island generatrions";
256      islandGenerationsCounter.ValueParameter.ActualName = IslandGenerations.Name;
257      islandGenerationsCounter.Increment = new IntValue(1);
258
259      checkIslandGenerationsReachedMaximum.LeftSideParameter.ActualName = IslandGenerations.Name;
260      checkIslandGenerationsReachedMaximum.RightSideParameter.ActualName = MigrationIntervalParameter.Name;
261      checkIslandGenerationsReachedMaximum.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
262      checkIslandGenerationsReachedMaximum.ResultParameter.ActualName = Migrate.Name;
263
264      checkContinueEvolution.Name = "Migrate?";
265      checkContinueEvolution.ConditionParameter.ActualName = Migrate.Name;
266      checkContinueEvolution.FalseBranch = selector;
267
268      islandAnalyzer2.Name = "Island Analyzer (placeholder)";
269      islandAnalyzer2.OperatorParameter.ActualName = IslandAnalyzerParameter.Name;
270
271      generationsReducer.Name = "Increment Generations";
272      generationsReducer.ParameterToReduce.ActualName = islandGenerationsCounter.ValueParameter.ActualName;
273      generationsReducer.TargetParameter.ActualName = "Generations";
274      generationsReducer.ReductionOperation.Value = new ReductionOperation(ReductionOperations.Min);
275      generationsReducer.TargetOperation.Value = new ReductionOperation(ReductionOperations.Sum);
276
277      evaluatedSolutionsReducer.Name = "Increment Evaluated Solutions";
278      evaluatedSolutionsReducer.ParameterToReduce.ActualName = IslandEvaluatedSolutions.Name;
279      evaluatedSolutionsReducer.TargetParameter.ActualName = EvaluatedSolutionsParameter.Name;
280      evaluatedSolutionsReducer.ReductionOperation.Value = new ReductionOperation(ReductionOperations.Sum);
281      evaluatedSolutionsReducer.TargetOperation.Value = new ReductionOperation(ReductionOperations.Sum);
282
283      emigrantsSelector.Name = "Emigrants Selector (placeholder)";
284      emigrantsSelector.OperatorParameter.ActualName = EmigrantsSelectorParameter.Name;
285
286      migrationsCounter.Name = "Increment number of Migrations";
287      migrationsCounter.ValueParameter.ActualName = "Migrations";
288      migrationsCounter.Increment = new IntValue(1);
289
290      migrator.Name = "Migrator (placeholder)";
291      migrator.OperatorParameter.ActualName = MigratorParameter.Name;
292
293      immigrationReplacer.Name = "Immigration Replacer (placeholder)";
294      immigrationReplacer.OperatorParameter.ActualName = ImmigrationReplacerParameter.Name;
295
296      generationsComparator.Name = "Generations >= MaximumGenerations ?";
297      generationsComparator.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
298      generationsComparator.LeftSideParameter.ActualName = "Generations";
299      generationsComparator.ResultParameter.ActualName = "TerminateGenerations";
300      generationsComparator.RightSideParameter.ActualName = MaximumGenerationsParameter.Name;
301
302      analyzer2.Name = "Analyzer (placeholder)";
303      analyzer2.OperatorParameter.ActualName = AnalyzerParameter.Name;
304
305      generationsTerminationCondition.Name = "Terminate?";
306      generationsTerminationCondition.ConditionParameter.ActualName = "TerminateGenerations";
307      #endregion
308
309      #region Create operator graph
310      OperatorGraph.InitialOperator = variableCreator;
311      variableCreator.Successor = uniformSubScopesProcessor0;
312      uniformSubScopesProcessor0.Operator = islandVariableCreator;
313      uniformSubScopesProcessor0.Successor = analyzer1;
314      islandVariableCreator.Successor = islandAnalyzer1;
315      islandAnalyzer1.Successor = localRandomCreator;
316      localRandomCreator.Successor = null;
317      analyzer1.Successor = resultsCollector1;
318      resultsCollector1.Successor = uniformSubScopesProcessor1;
319      uniformSubScopesProcessor1.Operator = generationsAssigner;
320      uniformSubScopesProcessor1.Successor = generationsReducer;
321      generationsReducer.Successor = evaluatedSolutionsReducer;
322      evaluatedSolutionsReducer.Successor = migrationsCounter;
323      migrationsCounter.Successor = uniformSubScopesProcessor5;
324      generationsAssigner.Successor = evaluatedSolutionsAssigner;
325      evaluatedSolutionsAssigner.Successor = selector;
326      selector.Successor = subScopesProcessor1;
327      subScopesProcessor1.Operators.Add(new EmptyOperator());
328      subScopesProcessor1.Operators.Add(childrenCreator);
329      subScopesProcessor1.Successor = subScopesProcessor2;
330      childrenCreator.Successor = uniformSubScopesProcessor2;
331      uniformSubScopesProcessor2.Operator = crossover;
332      uniformSubScopesProcessor2.Successor = uniformSubScopesProcessor3;
333      crossover.Successor = stochasticBranch;
334      stochasticBranch.FirstBranch = mutator;
335      stochasticBranch.SecondBranch = null;
336      stochasticBranch.Successor = subScopesRemover;
337      mutator.Successor = null;
338      subScopesRemover.Successor = null;
339      uniformSubScopesProcessor3.Operator = evaluator;
340      uniformSubScopesProcessor3.Successor = subScopesCounter;
341      evaluator.Successor = null;
342      subScopesCounter.Successor = null;
343      subScopesCounter.Successor = null;
344      subScopesProcessor2.Operators.Add(bestSelector);
345      subScopesProcessor2.Operators.Add(new EmptyOperator());
346      subScopesProcessor2.Successor = mergingReducer;
347      mergingReducer.Successor = islandAnalyzer2;
348      bestSelector.Successor = rightReducer;
349      rightReducer.Successor = null;
350      islandAnalyzer2.Successor = islandGenerationsCounter;
351      islandGenerationsCounter.Successor = checkIslandGenerationsReachedMaximum;
352      checkIslandGenerationsReachedMaximum.Successor = checkContinueEvolution;
353      uniformSubScopesProcessor5.Operator = emigrantsSelector;
354      emigrantsSelector.Successor = null;
355      uniformSubScopesProcessor5.Successor = migrator;
356      migrator.Successor = uniformSubScopesProcessor6;
357      uniformSubScopesProcessor6.Operator = immigrationReplacer;
358      uniformSubScopesProcessor6.Successor = generationsComparator;
359      generationsComparator.Successor = analyzer2;
360      analyzer2.Successor = generationsTerminationCondition;
361      generationsTerminationCondition.TrueBranch = null;
362      generationsTerminationCondition.FalseBranch = uniformSubScopesProcessor1;
363      generationsTerminationCondition.Successor = null;
364      #endregion
365    }
366
367    public override IOperation Apply() {
368      if (CrossoverParameter.ActualValue == null)
369        return null;
370      return base.Apply();
371    }
372  }
373}
Note: See TracBrowser for help on using the repository browser.