Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs @ 5354

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

#1333

  • Adapated Tabu Search to run move evaluations and tabu check in parallel
File size: 15.3 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.Analysis;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Optimization.Operators;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30using HeuristicLab.Selection;
31
32namespace HeuristicLab.Algorithms.TabuSearch {
33  /// <summary>
34  /// An operator which represents a tabu search.
35  /// </summary>
36  [Item("TabuSearchMainLoop", "An operator which represents the main loop of a tabu search.")]
37  [StorableClass]
38  public sealed class TabuSearchMainLoop : 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 LookupParameter<DoubleValue> QualityParameter {
47      get { return (LookupParameter<DoubleValue>)Parameters["Quality"]; }
48    }
49    public ValueLookupParameter<DoubleValue> BestKnownQualityParameter {
50      get { return (ValueLookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
51    }
52    public LookupParameter<DoubleValue> MoveQualityParameter {
53      get { return (LookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
54    }
55    public LookupParameter<BoolValue> MoveTabuParameter {
56      get { return (LookupParameter<BoolValue>)Parameters["MoveTabu"]; }
57    }
58    public ValueLookupParameter<IntValue> MaximumIterationsParameter {
59      get { return (ValueLookupParameter<IntValue>)Parameters["MaximumIterations"]; }
60    }
61    public ValueLookupParameter<IntValue> TabuTenureParameter {
62      get { return (ValueLookupParameter<IntValue>)Parameters["TabuTenure"]; }
63    }
64    public ValueLookupParameter<IOperator> MoveGeneratorParameter {
65      get { return (ValueLookupParameter<IOperator>)Parameters["MoveGenerator"]; }
66    }
67    public ValueLookupParameter<IOperator> MoveEvaluatorParameter {
68      get { return (ValueLookupParameter<IOperator>)Parameters["MoveEvaluator"]; }
69    }
70    public ValueLookupParameter<IOperator> MoveMakerParameter {
71      get { return (ValueLookupParameter<IOperator>)Parameters["MoveMaker"]; }
72    }
73    public ValueLookupParameter<IOperator> TabuCheckerParameter {
74      get { return (ValueLookupParameter<IOperator>)Parameters["TabuChecker"]; }
75    }
76    public ValueLookupParameter<IOperator> TabuMakerParameter {
77      get { return (ValueLookupParameter<IOperator>)Parameters["TabuMaker"]; }
78    }
79    public ValueLookupParameter<IOperator> AnalyzerParameter {
80      get { return (ValueLookupParameter<IOperator>)Parameters["Analyzer"]; }
81    }
82    public ValueLookupParameter<VariableCollection> ResultsParameter {
83      get { return (ValueLookupParameter<VariableCollection>)Parameters["Results"]; }
84    }
85    #endregion
86
87    [StorableConstructor]
88    private TabuSearchMainLoop(bool deserializing) : base(deserializing) { }
89    public TabuSearchMainLoop()
90      : base() {
91      Initialize();
92    }
93    private TabuSearchMainLoop(TabuSearchMainLoop original, Cloner cloner)
94      : base(original, cloner) {
95    }
96    public override IDeepCloneable Clone(Cloner cloner) {
97      return new TabuSearchMainLoop(this, cloner);
98    }
99
100    [StorableHook(HookType.AfterDeserialization)]
101    private void AfterDeserialization() {
102      // BackwardsCompatibility3.3
103      #region Backwards compatible code, remove with 3.4
104      VariableCreator variableCreator = OperatorGraph.InitialOperator as VariableCreator;
105
106      if (variableCreator != null) {
107        if (!variableCreator.CollectedValues.ContainsKey("Memories")) {
108          variableCreator.CollectedValues.Add(new ValueParameter<VariableCollection>("Memories", new VariableCollection()));
109        }
110      }
111      #endregion
112    }
113
114    private void Initialize() {
115      #region Create parameters
116      Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
117      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
118      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
119      Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far."));
120      Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The value which represents the quality of a move."));
121      Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The value that indicates if a move is tabu or not."));
122      Parameters.Add(new ValueLookupParameter<IntValue>("MaximumIterations", "The maximum number of generations which should be processed."));
123      Parameters.Add(new ValueLookupParameter<IntValue>("TabuTenure", "The length of the tabu list, and also means the number of iterations a move is kept tabu"));
124
125      Parameters.Add(new ValueLookupParameter<IOperator>("MoveGenerator", "The operator that generates the moves."));
126      Parameters.Add(new ValueLookupParameter<IOperator>("MoveMaker", "The operator that performs a move and updates the quality."));
127      Parameters.Add(new ValueLookupParameter<IOperator>("MoveEvaluator", "The operator that evaluates a move."));
128      Parameters.Add(new ValueLookupParameter<IOperator>("TabuChecker", "The operator that checks whether a move is tabu."));
129      Parameters.Add(new ValueLookupParameter<IOperator>("TabuMaker", "The operator that declares a move tabu."));
130
131      Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze the solution and moves."));
132      Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The variable collection where results should be stored."));
133      #endregion
134
135      #region Create operators
136      VariableCreator variableCreator = new VariableCreator();
137      SubScopesProcessor subScopesProcessor0 = new SubScopesProcessor();
138      Assigner bestQualityInitializer = new Assigner();
139      Placeholder analyzer1 = new Placeholder();
140      ResultsCollector resultsCollector1 = new ResultsCollector();
141      SubScopesProcessor solutionProcessor = new SubScopesProcessor();
142      Placeholder moveGenerator = new Placeholder();
143      UniformSubScopesProcessor moveEvaluationProcessor = new UniformSubScopesProcessor();
144      Placeholder moveEvaluator = new Placeholder();
145      Placeholder tabuChecker = new Placeholder();
146      SubScopesCounter subScopesCounter = new SubScopesCounter();
147      SubScopesSorter moveQualitySorter = new SubScopesSorter();
148      TabuSelector tabuSelector = new TabuSelector();
149      ConditionalBranch emptyNeighborhoodBranch1 = new ConditionalBranch();
150      SubScopesProcessor moveMakingProcessor = new SubScopesProcessor();
151      UniformSubScopesProcessor selectedMoveMakingProcesor = new UniformSubScopesProcessor();
152      Placeholder tabuMaker = new Placeholder();
153      Placeholder moveMaker = new Placeholder();
154      MergingReducer mergingReducer = new MergingReducer();
155      Placeholder analyzer2 = new Placeholder();
156      SubScopesRemover subScopesRemover = new SubScopesRemover();
157      ConditionalBranch emptyNeighborhoodBranch2 = new ConditionalBranch();
158      BestQualityMemorizer bestQualityUpdater = new BestQualityMemorizer();
159      IntCounter iterationsCounter = new IntCounter();
160      Comparator iterationsComparator = new Comparator();
161      ConditionalBranch iterationsTermination = new ConditionalBranch();
162
163      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Iterations", new IntValue(0))); // Class TabuSearch expects this to be called Iterations
164      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("EvaluatedMoves", new IntValue(0)));
165      variableCreator.CollectedValues.Add(new ValueParameter<BoolValue>("EmptyNeighborhood", new BoolValue(false)));
166      variableCreator.CollectedValues.Add(new ValueParameter<ItemList<IItem>>("TabuList", new ItemList<IItem>()));
167      variableCreator.CollectedValues.Add(new ValueParameter<VariableCollection>("Memories", new VariableCollection()));
168      variableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("BestQuality", new DoubleValue(0)));
169
170      bestQualityInitializer.Name = "Initialize BestQuality";
171      bestQualityInitializer.LeftSideParameter.ActualName = "BestQuality";
172      bestQualityInitializer.RightSideParameter.ActualName = QualityParameter.Name;
173
174      analyzer1.Name = "Analyzer (placeholder)";
175      analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
176
177      resultsCollector1.CopyValue = new BoolValue(false);
178      resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Iterations"));
179      resultsCollector1.CollectedValues.Add(new LookupParameter<DoubleValue>("Best Quality", null, "BestQuality"));
180      resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Moves", null, "EvaluatedMoves"));
181      resultsCollector1.ResultsParameter.ActualName = ResultsParameter.Name;
182
183      moveGenerator.Name = "MoveGenerator (placeholder)";
184      moveGenerator.OperatorParameter.ActualName = MoveGeneratorParameter.Name;
185
186      moveEvaluationProcessor.Parallel = new BoolValue(true);
187
188      moveEvaluator.Name = "MoveEvaluator (placeholder)";
189      moveEvaluator.OperatorParameter.ActualName = MoveEvaluatorParameter.Name;
190
191      tabuChecker.Name = "TabuChecker (placeholder)";
192      tabuChecker.OperatorParameter.ActualName = TabuCheckerParameter.Name;
193
194      subScopesCounter.Name = "Increment EvaluatedMoves";
195      subScopesCounter.ValueParameter.ActualName = "EvaluatedMoves";
196
197      moveQualitySorter.DescendingParameter.ActualName = MaximizationParameter.Name;
198      moveQualitySorter.ValueParameter.ActualName = MoveQualityParameter.Name;
199
200      tabuSelector.AspirationParameter.Value = new BoolValue(true);
201      tabuSelector.BestQualityParameter.ActualName = "BestQuality";
202      tabuSelector.CopySelected = new BoolValue(false);
203      tabuSelector.EmptyNeighborhoodParameter.ActualName = "EmptyNeighborhood";
204      tabuSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
205      tabuSelector.MoveQualityParameter.ActualName = MoveQualityParameter.Name;
206      tabuSelector.MoveTabuParameter.ActualName = MoveTabuParameter.Name;
207
208      moveMakingProcessor.Name = "MoveMaking processor (UniformSubScopesProcessor)";
209
210      emptyNeighborhoodBranch1.Name = "Neighborhood empty?";
211      emptyNeighborhoodBranch1.ConditionParameter.ActualName = "EmptyNeighborhood";
212
213      tabuMaker.Name = "TabuMaker (placeholder)";
214      tabuMaker.OperatorParameter.ActualName = TabuMakerParameter.Name;
215
216      moveMaker.Name = "MoveMaker (placeholder)";
217      moveMaker.OperatorParameter.ActualName = MoveMakerParameter.Name;
218
219      analyzer2.Name = "Analyzer (placeholder)";
220      analyzer2.OperatorParameter.ActualName = AnalyzerParameter.Name;
221
222      subScopesRemover.RemoveAllSubScopes = true;
223
224      bestQualityUpdater.Name = "Update BestQuality";
225      bestQualityUpdater.MaximizationParameter.ActualName = MaximizationParameter.Name;
226      bestQualityUpdater.QualityParameter.ActualName = QualityParameter.Name;
227      bestQualityUpdater.BestQualityParameter.ActualName = "BestQuality";
228
229      iterationsCounter.Name = "Iterations Counter";
230      iterationsCounter.Increment = new IntValue(1);
231      iterationsCounter.ValueParameter.ActualName = "Iterations";
232
233      iterationsComparator.Name = "Iterations >= MaximumIterations";
234      iterationsComparator.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
235      iterationsComparator.LeftSideParameter.ActualName = "Iterations";
236      iterationsComparator.RightSideParameter.ActualName = MaximumIterationsParameter.Name;
237      iterationsComparator.ResultParameter.ActualName = "Terminate";
238
239      emptyNeighborhoodBranch2.Name = "Neighborhood empty?";
240      emptyNeighborhoodBranch2.ConditionParameter.ActualName = "EmptyNeighborhood";
241
242      iterationsTermination.Name = "Iterations Termination Condition";
243      iterationsTermination.ConditionParameter.ActualName = "Terminate";
244      #endregion
245
246      #region Create operator graph
247      OperatorGraph.InitialOperator = variableCreator;
248      variableCreator.Successor = subScopesProcessor0;
249      subScopesProcessor0.Operators.Add(bestQualityInitializer);
250      subScopesProcessor0.Successor = resultsCollector1;
251      bestQualityInitializer.Successor = analyzer1;
252      analyzer1.Successor = null;
253      resultsCollector1.Successor = solutionProcessor;
254      solutionProcessor.Operators.Add(moveGenerator);
255      solutionProcessor.Successor = iterationsCounter;
256      moveGenerator.Successor = moveEvaluationProcessor;
257      moveEvaluationProcessor.Operator = moveEvaluator;
258      moveEvaluationProcessor.Successor = subScopesCounter;
259      moveEvaluator.Successor = tabuChecker;
260      tabuChecker.Successor = null;
261      subScopesCounter.Successor = moveQualitySorter;
262      moveQualitySorter.Successor = tabuSelector;
263      tabuSelector.Successor = emptyNeighborhoodBranch1;
264      emptyNeighborhoodBranch1.FalseBranch = moveMakingProcessor;
265      emptyNeighborhoodBranch1.TrueBranch = null;
266      emptyNeighborhoodBranch1.Successor = subScopesRemover;
267      moveMakingProcessor.Operators.Add(new EmptyOperator());
268      moveMakingProcessor.Operators.Add(selectedMoveMakingProcesor);
269      moveMakingProcessor.Successor = mergingReducer;
270      selectedMoveMakingProcesor.Operator = tabuMaker;
271      selectedMoveMakingProcesor.Successor = null;
272      tabuMaker.Successor = moveMaker;
273      moveMaker.Successor = null;
274      mergingReducer.Successor = analyzer2;
275      analyzer2.Successor = null;
276      subScopesRemover.Successor = null;
277      iterationsCounter.Successor = iterationsComparator;
278      iterationsComparator.Successor = emptyNeighborhoodBranch2;
279      emptyNeighborhoodBranch2.TrueBranch = null;
280      emptyNeighborhoodBranch2.FalseBranch = iterationsTermination;
281      emptyNeighborhoodBranch2.Successor = null;
282      iterationsTermination.TrueBranch = null;
283      iterationsTermination.FalseBranch = solutionProcessor;
284      #endregion
285    }
286
287    public override IOperation Apply() {
288      if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null
289        || TabuCheckerParameter.ActualValue == null || TabuMakerParameter.ActualValue == null)
290        return null;
291      return base.Apply();
292    }
293  }
294}
Note: See TracBrowser for help on using the repository browser.