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 |
|
---|
22 | using HeuristicLab.Analysis;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Data;
|
---|
26 | using HeuristicLab.Operators;
|
---|
27 | using HeuristicLab.Optimization.Operators;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 | using HeuristicLab.Selection;
|
---|
31 |
|
---|
32 | namespace 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 | private void Initialize() {
|
---|
101 | #region Create parameters
|
---|
102 | Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
|
---|
103 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
|
---|
104 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
|
---|
105 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far."));
|
---|
106 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The value which represents the quality of a move."));
|
---|
107 | Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The value that indicates if a move is tabu or not."));
|
---|
108 | Parameters.Add(new ValueLookupParameter<IntValue>("MaximumIterations", "The maximum number of generations which should be processed."));
|
---|
109 | Parameters.Add(new ValueLookupParameter<IntValue>("TabuTenure", "The length of the tabu list, and also means the number of iterations a move is kept tabu"));
|
---|
110 |
|
---|
111 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveGenerator", "The operator that generates the moves."));
|
---|
112 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveMaker", "The operator that performs a move and updates the quality."));
|
---|
113 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveEvaluator", "The operator that evaluates a move."));
|
---|
114 | Parameters.Add(new ValueLookupParameter<IOperator>("TabuChecker", "The operator that checks whether a move is tabu."));
|
---|
115 | Parameters.Add(new ValueLookupParameter<IOperator>("TabuMaker", "The operator that declares a move tabu."));
|
---|
116 |
|
---|
117 | Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze the solution and moves."));
|
---|
118 | Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The variable collection where results should be stored."));
|
---|
119 | #endregion
|
---|
120 |
|
---|
121 | #region Create operators
|
---|
122 | VariableCreator variableCreator = new VariableCreator();
|
---|
123 | SubScopesProcessor subScopesProcessor0 = new SubScopesProcessor();
|
---|
124 | Assigner bestQualityInitializer = new Assigner();
|
---|
125 | Placeholder analyzer1 = new Placeholder();
|
---|
126 | ResultsCollector resultsCollector1 = new ResultsCollector();
|
---|
127 | ResultsCollector resultsCollector2 = new ResultsCollector();
|
---|
128 | SubScopesProcessor solutionProcessor = new SubScopesProcessor();
|
---|
129 | Placeholder moveGenerator = new Placeholder();
|
---|
130 | UniformSubScopesProcessor moveEvaluationProcessor = new UniformSubScopesProcessor();
|
---|
131 | Placeholder moveEvaluator = new Placeholder();
|
---|
132 | IntCounter evaluatedMovesCounter = new IntCounter();
|
---|
133 | Placeholder tabuChecker = new Placeholder();
|
---|
134 | SubScopesSorter moveQualitySorter = new SubScopesSorter();
|
---|
135 | TabuSelector tabuSelector = new TabuSelector();
|
---|
136 | ConditionalBranch emptyNeighborhoodBranch1 = new ConditionalBranch();
|
---|
137 | SubScopesProcessor moveMakingProcessor = new SubScopesProcessor();
|
---|
138 | UniformSubScopesProcessor selectedMoveMakingProcesor = new UniformSubScopesProcessor();
|
---|
139 | Placeholder tabuMaker = new Placeholder();
|
---|
140 | Placeholder moveMaker = new Placeholder();
|
---|
141 | MergingReducer mergingReducer = new MergingReducer();
|
---|
142 | Placeholder analyzer2 = new Placeholder();
|
---|
143 | SubScopesRemover subScopesRemover = new SubScopesRemover();
|
---|
144 | ConditionalBranch emptyNeighborhoodBranch2 = new ConditionalBranch();
|
---|
145 | BestQualityMemorizer bestQualityUpdater = new BestQualityMemorizer();
|
---|
146 | IntCounter iterationsCounter = new IntCounter();
|
---|
147 | Comparator iterationsComparator = new Comparator();
|
---|
148 | ResultsCollector resultsCollector3 = new ResultsCollector();
|
---|
149 | ConditionalBranch iterationsTermination = new ConditionalBranch();
|
---|
150 |
|
---|
151 | variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Iterations", new IntValue(0))); // Class TabuSearch expects this to be called Iterations
|
---|
152 | variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("EvaluatedMoves", new IntValue(0)));
|
---|
153 | variableCreator.CollectedValues.Add(new ValueParameter<BoolValue>("EmptyNeighborhood", new BoolValue(false)));
|
---|
154 | variableCreator.CollectedValues.Add(new ValueParameter<ItemList<IItem>>("TabuList", new ItemList<IItem>()));
|
---|
155 | variableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("BestQuality", new DoubleValue(0)));
|
---|
156 |
|
---|
157 | bestQualityInitializer.Name = "Initialize BestQuality";
|
---|
158 | bestQualityInitializer.LeftSideParameter.ActualName = "BestQuality";
|
---|
159 | bestQualityInitializer.RightSideParameter.ActualName = QualityParameter.Name;
|
---|
160 |
|
---|
161 | analyzer1.Name = "Analyzer (placeholder)";
|
---|
162 | analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
|
---|
163 |
|
---|
164 | resultsCollector1.CopyValue = new BoolValue(false);
|
---|
165 | resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Iterations"));
|
---|
166 | resultsCollector1.CollectedValues.Add(new LookupParameter<DoubleValue>("Best Quality", null, "BestQuality"));
|
---|
167 | resultsCollector1.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
168 |
|
---|
169 | resultsCollector2.CopyValue = new BoolValue(true);
|
---|
170 | resultsCollector2.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Moves", null, "EvaluatedMoves"));
|
---|
171 | resultsCollector2.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
172 |
|
---|
173 | moveGenerator.Name = "MoveGenerator (placeholder)";
|
---|
174 | moveGenerator.OperatorParameter.ActualName = MoveGeneratorParameter.Name;
|
---|
175 |
|
---|
176 | moveEvaluator.Name = "MoveEvaluator (placeholder)";
|
---|
177 | moveEvaluator.OperatorParameter.ActualName = MoveEvaluatorParameter.Name;
|
---|
178 |
|
---|
179 | evaluatedMovesCounter.Name = "EvaluatedMoves + 1";
|
---|
180 | evaluatedMovesCounter.ValueParameter.ActualName = "EvaluatedMoves";
|
---|
181 | evaluatedMovesCounter.Increment = new IntValue(1);
|
---|
182 |
|
---|
183 | tabuChecker.Name = "TabuChecker (placeholder)";
|
---|
184 | tabuChecker.OperatorParameter.ActualName = TabuCheckerParameter.Name;
|
---|
185 |
|
---|
186 | moveQualitySorter.DescendingParameter.ActualName = MaximizationParameter.Name;
|
---|
187 | moveQualitySorter.ValueParameter.ActualName = MoveQualityParameter.Name;
|
---|
188 |
|
---|
189 | tabuSelector.AspirationParameter.Value = new BoolValue(true);
|
---|
190 | tabuSelector.BestQualityParameter.ActualName = "BestQuality";
|
---|
191 | tabuSelector.CopySelected = new BoolValue(false);
|
---|
192 | tabuSelector.EmptyNeighborhoodParameter.ActualName = "EmptyNeighborhood";
|
---|
193 | tabuSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
194 | tabuSelector.MoveQualityParameter.ActualName = MoveQualityParameter.Name;
|
---|
195 | tabuSelector.MoveTabuParameter.ActualName = MoveTabuParameter.Name;
|
---|
196 |
|
---|
197 | moveMakingProcessor.Name = "MoveMaking processor (UniformSubScopesProcessor)";
|
---|
198 |
|
---|
199 | emptyNeighborhoodBranch1.Name = "Neighborhood empty?";
|
---|
200 | emptyNeighborhoodBranch1.ConditionParameter.ActualName = "EmptyNeighborhood";
|
---|
201 |
|
---|
202 | tabuMaker.Name = "TabuMaker (placeholder)";
|
---|
203 | tabuMaker.OperatorParameter.ActualName = TabuMakerParameter.Name;
|
---|
204 |
|
---|
205 | moveMaker.Name = "MoveMaker (placeholder)";
|
---|
206 | moveMaker.OperatorParameter.ActualName = MoveMakerParameter.Name;
|
---|
207 |
|
---|
208 | analyzer2.Name = "Analyzer (placeholder)";
|
---|
209 | analyzer2.OperatorParameter.ActualName = AnalyzerParameter.Name;
|
---|
210 |
|
---|
211 | subScopesRemover.RemoveAllSubScopes = true;
|
---|
212 |
|
---|
213 | bestQualityUpdater.Name = "Update BestQuality";
|
---|
214 | bestQualityUpdater.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
215 | bestQualityUpdater.QualityParameter.ActualName = QualityParameter.Name;
|
---|
216 | bestQualityUpdater.BestQualityParameter.ActualName = "BestQuality";
|
---|
217 |
|
---|
218 | iterationsCounter.Name = "Iterations Counter";
|
---|
219 | iterationsCounter.Increment = new IntValue(1);
|
---|
220 | iterationsCounter.ValueParameter.ActualName = "Iterations";
|
---|
221 |
|
---|
222 | iterationsComparator.Name = "Iterations >= MaximumIterations";
|
---|
223 | iterationsComparator.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
|
---|
224 | iterationsComparator.LeftSideParameter.ActualName = "Iterations";
|
---|
225 | iterationsComparator.RightSideParameter.ActualName = MaximumIterationsParameter.Name;
|
---|
226 | iterationsComparator.ResultParameter.ActualName = "Terminate";
|
---|
227 |
|
---|
228 | resultsCollector3.CopyValue = new BoolValue(true);
|
---|
229 | resultsCollector3.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Moves", null, "EvaluatedMoves"));
|
---|
230 | resultsCollector3.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
231 |
|
---|
232 | emptyNeighborhoodBranch2.Name = "Neighborhood empty?";
|
---|
233 | emptyNeighborhoodBranch2.ConditionParameter.ActualName = "EmptyNeighborhood";
|
---|
234 |
|
---|
235 | iterationsTermination.Name = "Iterations Termination Condition";
|
---|
236 | iterationsTermination.ConditionParameter.ActualName = "Terminate";
|
---|
237 | #endregion
|
---|
238 |
|
---|
239 | #region Create operator graph
|
---|
240 | OperatorGraph.InitialOperator = variableCreator;
|
---|
241 | variableCreator.Successor = subScopesProcessor0;
|
---|
242 | subScopesProcessor0.Operators.Add(bestQualityInitializer);
|
---|
243 | subScopesProcessor0.Successor = resultsCollector1;
|
---|
244 | bestQualityInitializer.Successor = analyzer1;
|
---|
245 | analyzer1.Successor = null;
|
---|
246 | resultsCollector1.Successor = resultsCollector2;
|
---|
247 | resultsCollector2.Successor = solutionProcessor;
|
---|
248 | solutionProcessor.Operators.Add(moveGenerator);
|
---|
249 | solutionProcessor.Successor = iterationsCounter;
|
---|
250 | moveGenerator.Successor = moveEvaluationProcessor;
|
---|
251 | moveEvaluationProcessor.Operator = moveEvaluator;
|
---|
252 | moveEvaluationProcessor.Successor = moveQualitySorter;
|
---|
253 | moveEvaluator.Successor = evaluatedMovesCounter;
|
---|
254 | evaluatedMovesCounter.Successor = tabuChecker;
|
---|
255 | tabuChecker.Successor = null;
|
---|
256 | moveQualitySorter.Successor = tabuSelector;
|
---|
257 | tabuSelector.Successor = emptyNeighborhoodBranch1;
|
---|
258 | emptyNeighborhoodBranch1.FalseBranch = moveMakingProcessor;
|
---|
259 | emptyNeighborhoodBranch1.TrueBranch = null;
|
---|
260 | emptyNeighborhoodBranch1.Successor = subScopesRemover;
|
---|
261 | moveMakingProcessor.Operators.Add(new EmptyOperator());
|
---|
262 | moveMakingProcessor.Operators.Add(selectedMoveMakingProcesor);
|
---|
263 | moveMakingProcessor.Successor = mergingReducer;
|
---|
264 | selectedMoveMakingProcesor.Operator = tabuMaker;
|
---|
265 | selectedMoveMakingProcesor.Successor = null;
|
---|
266 | tabuMaker.Successor = moveMaker;
|
---|
267 | moveMaker.Successor = null;
|
---|
268 | mergingReducer.Successor = analyzer2;
|
---|
269 | analyzer2.Successor = null;
|
---|
270 | subScopesRemover.Successor = null;
|
---|
271 | iterationsCounter.Successor = iterationsComparator;
|
---|
272 | iterationsComparator.Successor = resultsCollector3;
|
---|
273 | resultsCollector3.Successor = emptyNeighborhoodBranch2;
|
---|
274 | emptyNeighborhoodBranch2.TrueBranch = null;
|
---|
275 | emptyNeighborhoodBranch2.FalseBranch = iterationsTermination;
|
---|
276 | emptyNeighborhoodBranch2.Successor = null;
|
---|
277 | iterationsTermination.TrueBranch = null;
|
---|
278 | iterationsTermination.FalseBranch = solutionProcessor;
|
---|
279 | #endregion
|
---|
280 | }
|
---|
281 |
|
---|
282 | public override IOperation Apply() {
|
---|
283 | if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null
|
---|
284 | || TabuCheckerParameter.ActualValue == null || TabuMakerParameter.ActualValue == null)
|
---|
285 | return null;
|
---|
286 | return base.Apply();
|
---|
287 | }
|
---|
288 | }
|
---|
289 | }
|
---|