Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2MainLoop.cs @ 5163

Last change on this file since 5163 was 5143, checked in by abeham, 13 years ago

#1040

  • Merged NSGA-II into trunk
  • Ranking and crowding operators moved to HeuristicLab.Optimization.Operators
  • CrowdedTournamentSelector moved to HeuristicLab.Selection
  • Pareto front analyzer moved to HeuristicLab.Analysis with a base class should there be more (as discussed with swagner and mkommend)
File size: 11.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Operators;
25using HeuristicLab.Optimization.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Selection;
29using HeuristicLab.Common;
30
31namespace HeuristicLab.Algorithms.NSGA2 {
32  /// <summary>
33  /// An operator that represents the mainloop of the NSGA-II
34  /// </summary>
35  [Item("NSGA2MainLoop", "An operator which represents the main loop of the NSGA-II algorithm.")]
36  [StorableClass]
37  public class NSGA2MainLoop : AlgorithmOperator {
38    #region Parameter properties
39    public ValueLookupParameter<IRandom> RandomParameter {
40      get { return (ValueLookupParameter<IRandom>)Parameters["Random"]; }
41    }
42    public ValueLookupParameter<BoolArray> MaximizationParameter {
43      get { return (ValueLookupParameter<BoolArray>)Parameters["Maximization"]; }
44    }
45    public ScopeTreeLookupParameter<DoubleArray> QualitiesParameter {
46      get { return (ScopeTreeLookupParameter<DoubleArray>)Parameters["Qualities"]; }
47    }
48    public ValueLookupParameter<IntValue> PopulationSizeParameter {
49      get { return (ValueLookupParameter<IntValue>)Parameters["PopulationSize"]; }
50    }
51    public ValueLookupParameter<IOperator> SelectorParameter {
52      get { return (ValueLookupParameter<IOperator>)Parameters["Selector"]; }
53    }
54    public ValueLookupParameter<PercentValue> CrossoverProbabilityParameter {
55      get { return (ValueLookupParameter<PercentValue>)Parameters["CrossoverProbability"]; }
56    }
57    public ValueLookupParameter<IOperator> CrossoverParameter {
58      get { return (ValueLookupParameter<IOperator>)Parameters["Crossover"]; }
59    }
60    public ValueLookupParameter<PercentValue> MutationProbabilityParameter {
61      get { return (ValueLookupParameter<PercentValue>)Parameters["MutationProbability"]; }
62    }
63    public ValueLookupParameter<IOperator> MutatorParameter {
64      get { return (ValueLookupParameter<IOperator>)Parameters["Mutator"]; }
65    }
66    public ValueLookupParameter<IOperator> EvaluatorParameter {
67      get { return (ValueLookupParameter<IOperator>)Parameters["Evaluator"]; }
68    }
69    public ValueLookupParameter<IntValue> MaximumGenerationsParameter {
70      get { return (ValueLookupParameter<IntValue>)Parameters["MaximumGenerations"]; }
71    }
72    public ValueLookupParameter<VariableCollection> ResultsParameter {
73      get { return (ValueLookupParameter<VariableCollection>)Parameters["Results"]; }
74    }
75    public ValueLookupParameter<IOperator> AnalyzerParameter {
76      get { return (ValueLookupParameter<IOperator>)Parameters["Analyzer"]; }
77    }
78    #endregion
79
80    [StorableConstructor]
81    protected NSGA2MainLoop(bool deserializing) : base(deserializing) { }
82    protected NSGA2MainLoop(NSGA2MainLoop original, Cloner cloner) : base(original, cloner) { }
83    public NSGA2MainLoop()
84      : base() {
85      Initialize();
86    }
87
88    private void Initialize() {
89      #region Create parameters
90      Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
91      Parameters.Add(new ValueLookupParameter<BoolArray>("Maximization", "True if an objective should be maximized, or false if it should be minimized."));
92      Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The vector of quality values."));
93      Parameters.Add(new ValueLookupParameter<IntValue>("PopulationSize", "The population size."));
94      Parameters.Add(new ValueLookupParameter<IOperator>("Selector", "The operator used to select solutions for reproduction."));
95      Parameters.Add(new ValueLookupParameter<PercentValue>("CrossoverProbability", "The probability that the crossover operator is applied on a solution."));
96      Parameters.Add(new ValueLookupParameter<IOperator>("Crossover", "The operator used to cross solutions."));
97      Parameters.Add(new ValueLookupParameter<PercentValue>("MutationProbability", "The probability that the mutation operator is applied on a solution."));
98      Parameters.Add(new ValueLookupParameter<IOperator>("Mutator", "The operator used to mutate solutions."));
99      Parameters.Add(new ValueLookupParameter<IOperator>("Evaluator", "The operator used to evaluate solutions."));
100      Parameters.Add(new ValueLookupParameter<IntValue>("MaximumGenerations", "The maximum number of generations which should be processed."));
101      Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The variable collection where results should be stored."));
102      Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze each generation."));
103      #endregion
104
105      #region Create operators
106      VariableCreator variableCreator = new VariableCreator();
107      ResultsCollector resultsCollector1 = new ResultsCollector();
108      Placeholder analyzer1 = new Placeholder();
109      Placeholder selector = new Placeholder();
110      SubScopesProcessor subScopesProcessor1 = new SubScopesProcessor();
111      ChildrenCreator childrenCreator = new ChildrenCreator();
112      UniformSubScopesProcessor uniformSubScopesProcessor = new UniformSubScopesProcessor();
113      StochasticBranch crossoverStochasticBranch = new StochasticBranch();
114      Placeholder crossover = new Placeholder();
115      ParentCopyCrossover noCrossover = new ParentCopyCrossover();
116      StochasticBranch mutationStochasticBranch = new StochasticBranch();
117      Placeholder mutator = new Placeholder();
118      Placeholder evaluator = new Placeholder();
119      SubScopesRemover subScopesRemover = new SubScopesRemover();
120      MergingReducer mergingReducer = new MergingReducer();
121      RankAndCrowdingSorter rankAndCrowdingSorter = new RankAndCrowdingSorter();
122      LeftSelector leftSelector = new LeftSelector();
123      RightReducer rightReducer = new RightReducer();
124      IntCounter intCounter = new IntCounter();
125      Comparator comparator = new Comparator();
126      ResultsCollector resultsCollector2 = new ResultsCollector();
127      Placeholder analyzer2 = new Placeholder();
128      ConditionalBranch conditionalBranch = new ConditionalBranch();
129
130      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Generations", new IntValue(0)));
131
132      resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Generations"));
133      resultsCollector1.ResultsParameter.ActualName = ResultsParameter.Name;
134
135      analyzer1.Name = "Analyzer";
136      analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
137
138      selector.Name = "Selector";
139      selector.OperatorParameter.ActualName = SelectorParameter.Name;
140
141      childrenCreator.ParentsPerChild = new IntValue(2);
142
143      crossoverStochasticBranch.ProbabilityParameter.ActualName = CrossoverProbabilityParameter.Name;
144      crossoverStochasticBranch.RandomParameter.ActualName = RandomParameter.Name;
145
146      crossover.Name = "Crossover";
147      crossover.OperatorParameter.ActualName = CrossoverParameter.Name;
148
149      noCrossover.Name = "Clone parent";
150      noCrossover.RandomParameter.ActualName = RandomParameter.Name;
151
152      mutationStochasticBranch.ProbabilityParameter.ActualName = MutationProbabilityParameter.Name;
153      mutationStochasticBranch.RandomParameter.ActualName = RandomParameter.Name;
154
155      mutator.Name = "Mutator";
156      mutator.OperatorParameter.ActualName = MutatorParameter.Name;
157
158      evaluator.Name = "Evaluator";
159      evaluator.OperatorParameter.ActualName = EvaluatorParameter.Name;
160
161      subScopesRemover.RemoveAllSubScopes = true;
162
163      rankAndCrowdingSorter.CrowdingDistanceParameter.ActualName = "CrowdingDistance";
164      rankAndCrowdingSorter.RankParameter.ActualName = "Rank";
165
166      leftSelector.CopySelected = new BoolValue(false);
167      leftSelector.NumberOfSelectedSubScopesParameter.ActualName = PopulationSizeParameter.Name;
168
169      intCounter.Increment = new IntValue(1);
170      intCounter.ValueParameter.ActualName = "Generations";
171
172      comparator.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
173      comparator.LeftSideParameter.ActualName = "Generations";
174      comparator.ResultParameter.ActualName = "Terminate";
175      comparator.RightSideParameter.ActualName = MaximumGenerationsParameter.Name;
176
177      resultsCollector2.CollectedValues.Add(new LookupParameter<IntValue>("Generations"));
178      resultsCollector2.ResultsParameter.ActualName = ResultsParameter.Name;
179
180      analyzer2.Name = "Analyzer";
181      analyzer2.OperatorParameter.ActualName = "Analyzer";
182
183      conditionalBranch.ConditionParameter.ActualName = "Terminate";
184      #endregion
185
186      #region Create operator graph
187      OperatorGraph.InitialOperator = variableCreator;
188      variableCreator.Successor = resultsCollector1;
189      resultsCollector1.Successor = analyzer1;
190      analyzer1.Successor = selector;
191      selector.Successor = subScopesProcessor1;
192      subScopesProcessor1.Operators.Add(new EmptyOperator());
193      subScopesProcessor1.Operators.Add(childrenCreator);
194      subScopesProcessor1.Successor = mergingReducer;
195      childrenCreator.Successor = uniformSubScopesProcessor;
196      uniformSubScopesProcessor.Operator = crossoverStochasticBranch;
197      uniformSubScopesProcessor.Successor = null;
198      crossoverStochasticBranch.FirstBranch = crossover;
199      crossoverStochasticBranch.SecondBranch = noCrossover;
200      crossoverStochasticBranch.Successor = mutationStochasticBranch;
201      crossover.Successor = null;
202      noCrossover.Successor = null;
203      mutationStochasticBranch.FirstBranch = mutator;
204      mutationStochasticBranch.SecondBranch = null;
205      mutationStochasticBranch.Successor = evaluator;
206      mutator.Successor = null;
207      evaluator.Successor = subScopesRemover;
208      subScopesRemover.Successor = null;
209      mergingReducer.Successor = rankAndCrowdingSorter;
210      rankAndCrowdingSorter.Successor = leftSelector;
211      leftSelector.Successor = rightReducer;
212      rightReducer.Successor = intCounter;
213      intCounter.Successor = comparator;
214      comparator.Successor = resultsCollector2;
215      resultsCollector2.Successor = analyzer2;
216      analyzer2.Successor = conditionalBranch;
217      conditionalBranch.FalseBranch = selector;
218      conditionalBranch.TrueBranch = null;
219      conditionalBranch.Successor = null;
220      #endregion
221    }
222
223    public override IDeepCloneable Clone(Cloner cloner) {
224      return new NSGA2MainLoop(this, cloner);
225    }
226  }
227}
Note: See TracBrowser for help on using the repository browser.