[7345] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Linq;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Operators;
|
---|
| 28 | using HeuristicLab.Optimization;
|
---|
| 29 | using HeuristicLab.Optimization.Operators;
|
---|
| 30 | using HeuristicLab.Parameters;
|
---|
| 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[7363] | 32 | using HeuristicLab.Problems.GeneralizedQuadraticAssignment.Common;
|
---|
[7345] | 33 | using HeuristicLab.Selection;
|
---|
| 34 |
|
---|
| 35 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms {
|
---|
| 36 | [Item("GRASP+PR MainLoop", "The main loop that implements the behavior of the GRASP+PR algorithm.")]
|
---|
| 37 | [StorableClass]
|
---|
| 38 | public class GRASPWithPathRelinkingMainLoop : AlgorithmOperator {
|
---|
| 39 | public IValueLookupParameter<IOperator> SolutionCreatorParameter {
|
---|
| 40 | get { return (IValueLookupParameter<IOperator>)Parameters["SolutionCreator"]; }
|
---|
| 41 | }
|
---|
| 42 | public IValueLookupParameter<IOperator> EvaluatorParameter {
|
---|
| 43 | get { return (IValueLookupParameter<IOperator>)Parameters["Evaluator"]; }
|
---|
| 44 | }
|
---|
| 45 | public IValueLookupParameter<IntValue> EvaluatedSolutionsParameter {
|
---|
| 46 | get { return (IValueLookupParameter<IntValue>)Parameters["EvaluatedSolutions"]; }
|
---|
| 47 | }
|
---|
| 48 | public IValueLookupParameter<IntValue> MaximumIterationsParameter {
|
---|
| 49 | get { return (IValueLookupParameter<IntValue>)Parameters["MaximumIterations"]; }
|
---|
| 50 | }
|
---|
| 51 | public IValueLookupParameter<ResultCollection> ResultsParameter {
|
---|
| 52 | get { return (IValueLookupParameter<ResultCollection>)Parameters["Results"]; }
|
---|
| 53 | }
|
---|
| 54 | public IValueLookupParameter<IntValue> EliteSetSizeParameter {
|
---|
| 55 | get { return (IValueLookupParameter<IntValue>)Parameters["EliteSetSize"]; }
|
---|
| 56 | }
|
---|
| 57 | public IValueLookupParameter<IOperator> LocalImprovementParameter {
|
---|
| 58 | get { return (IValueLookupParameter<IOperator>)Parameters["LocalImprovement"]; }
|
---|
| 59 | }
|
---|
| 60 | public IValueLookupParameter<IOperator> PathRelinkingParameter {
|
---|
| 61 | get { return (IValueLookupParameter<IOperator>)Parameters["PathRelinking"]; }
|
---|
| 62 | }
|
---|
[7478] | 63 | public IValueLookupParameter<IOperator> EliteSetReducerParameter {
|
---|
| 64 | get { return (IValueLookupParameter<IOperator>)Parameters["EliteSetReducer"]; }
|
---|
[7345] | 65 | }
|
---|
| 66 | public IValueLookupParameter<IOperator> AnalyzerParameter {
|
---|
| 67 | get { return (IValueLookupParameter<IOperator>)Parameters["Analyzer"]; }
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | [StorableConstructor]
|
---|
| 71 | protected GRASPWithPathRelinkingMainLoop(bool deserializing) : base(deserializing) { }
|
---|
| 72 | protected GRASPWithPathRelinkingMainLoop(GRASPWithPathRelinkingMainLoop original, Cloner cloner)
|
---|
| 73 | : base(original, cloner) { }
|
---|
| 74 | public GRASPWithPathRelinkingMainLoop()
|
---|
| 75 | : base() {
|
---|
| 76 | Parameters.Add(new ValueLookupParameter<IOperator>("SolutionCreator", "The solution creation procedure which ideally should be a greedy initialization heuristic."));
|
---|
| 77 | Parameters.Add(new ValueLookupParameter<IOperator>("Evaluator", "The evaluator which calculates the fitness of a solutions."));
|
---|
| 78 | Parameters.Add(new ValueLookupParameter<IntValue>("EvaluatedSolutions", "The number of evaluated solutions."));
|
---|
| 79 | Parameters.Add(new ValueLookupParameter<IntValue>("MaximumIterations", "The number of maximum iterations that should be performed."));
|
---|
| 80 | Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "Specifies where the results are stored."));
|
---|
| 81 | Parameters.Add(new ValueLookupParameter<IntValue>("EliteSetSize", "The size of the elite set."));
|
---|
| 82 | Parameters.Add(new ValueLookupParameter<IOperator>("LocalImprovement", "The operator which performs the local improvement."));
|
---|
| 83 | Parameters.Add(new ValueLookupParameter<IOperator>("PathRelinking", "The operator which performs the path relinking."));
|
---|
[7478] | 84 | Parameters.Add(new ValueLookupParameter<IOperator>("EliteSetReducer", "The operator that reduces the existing elite set and the new solution to a new elite set."));
|
---|
[7345] | 85 | Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The analyzer that is to be applied."));
|
---|
| 86 |
|
---|
| 87 | var variableCreator1 = new VariableCreator();
|
---|
[7373] | 88 | variableCreator1.Name = "Iterations = 0";
|
---|
[7345] | 89 | variableCreator1.CollectedValues.Add(new ValueParameter<IntValue>("Iterations", new IntValue(0)));
|
---|
| 90 |
|
---|
[7412] | 91 | var resultsCollector = new ResultsCollector();
|
---|
| 92 | resultsCollector.CopyValue = new BoolValue(false);
|
---|
| 93 | resultsCollector.CollectedValues.Add(new LookupParameter<IntValue>("Iterations"));
|
---|
| 94 |
|
---|
[7345] | 95 | var selector1 = new RandomSelector();
|
---|
| 96 | selector1.NumberOfSelectedSubScopesParameter.Value = new IntValue(1);
|
---|
| 97 | selector1.CopySelected.Value = true;
|
---|
| 98 |
|
---|
| 99 | var ssp1 = new SubScopesProcessor();
|
---|
| 100 |
|
---|
| 101 | var eo1 = new EmptyOperator();
|
---|
| 102 |
|
---|
| 103 | var solutionsCreator = new SolutionsCreator();
|
---|
[7373] | 104 | solutionsCreator.ParallelParameter.Value = new BoolValue(false);
|
---|
[7345] | 105 | solutionsCreator.EvaluatorParameter.ActualName = EvaluatorParameter.Name;
|
---|
| 106 | solutionsCreator.SolutionCreatorParameter.ActualName = SolutionCreatorParameter.Name;
|
---|
| 107 | solutionsCreator.NumberOfSolutions = new IntValue(1);
|
---|
[7363] | 108 |
|
---|
[7345] | 109 | var ssp2 = new SubScopesProcessor();
|
---|
| 110 |
|
---|
| 111 | var eo2 = new EmptyOperator();
|
---|
| 112 |
|
---|
| 113 | var placeholder1 = new Placeholder();
|
---|
| 114 | placeholder1.Name = "(LocalImprovement)";
|
---|
| 115 | placeholder1.OperatorParameter.ActualName = LocalImprovementParameter.Name;
|
---|
| 116 |
|
---|
| 117 | var childrenCreator = new ChildrenCreator();
|
---|
| 118 | childrenCreator.ParentsPerChild = new IntValue(2);
|
---|
[7363] | 119 |
|
---|
[7373] | 120 | var ssp3 = new SubScopesProcessor();
|
---|
| 121 |
|
---|
[7345] | 122 | var placeholder2 = new Placeholder();
|
---|
| 123 | placeholder2.Name = "(PathRelinking)";
|
---|
| 124 | placeholder2.OperatorParameter.ActualName = PathRelinkingParameter.Name;
|
---|
| 125 |
|
---|
[7412] | 126 | var placeholder3 = new Placeholder();
|
---|
| 127 | placeholder3.Name = "(Evaluator)";
|
---|
| 128 | placeholder3.OperatorParameter.ActualName = EvaluatorParameter.Name;
|
---|
| 129 |
|
---|
[7345] | 130 | var subScopesRemover = new SubScopesRemover();
|
---|
| 131 | subScopesRemover.RemoveAllSubScopes = true;
|
---|
| 132 |
|
---|
[7373] | 133 | var ssp4 = new SubScopesProcessor();
|
---|
[7345] | 134 |
|
---|
| 135 | var placeholder4 = new Placeholder();
|
---|
[7412] | 136 | placeholder4.Name = "(LocalImprovement)";
|
---|
| 137 | placeholder4.OperatorParameter.ActualName = LocalImprovementParameter.Name;
|
---|
[7345] | 138 |
|
---|
[7412] | 139 | var placeholder5 = new Placeholder();
|
---|
[7478] | 140 | placeholder5.Name = "(EliteSetReplacer)";
|
---|
| 141 | placeholder5.OperatorParameter.ActualName = EliteSetReducerParameter.Name;
|
---|
[7412] | 142 |
|
---|
[7345] | 143 | var counter = new IntCounter();
|
---|
| 144 | counter.Name = "Iterations++";
|
---|
| 145 | counter.ValueParameter.ActualName = "Iterations";
|
---|
| 146 | counter.Increment = new IntValue(1);
|
---|
| 147 |
|
---|
| 148 | var analyzer1 = new Placeholder();
|
---|
| 149 | analyzer1.Name = "(Analyzer)";
|
---|
| 150 | analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
|
---|
| 151 |
|
---|
| 152 | var comparator3 = new Comparator();
|
---|
| 153 | comparator3.Name = "Iterations >= MaximumIterations";
|
---|
| 154 | comparator3.Comparison.Value = ComparisonType.GreaterOrEqual;
|
---|
| 155 | comparator3.LeftSideParameter.ActualName = "Iterations";
|
---|
| 156 | comparator3.RightSideParameter.ActualName = MaximumIterationsParameter.Name;
|
---|
| 157 | comparator3.ResultParameter.ActualName = "TerminatedByIteration";
|
---|
| 158 |
|
---|
| 159 | var conditionalBranch3 = new ConditionalBranch();
|
---|
| 160 | conditionalBranch3.Name = "Terminate by Iterations?";
|
---|
| 161 | conditionalBranch3.ConditionParameter.ActualName = "TerminatedByIteration";
|
---|
| 162 |
|
---|
| 163 | OperatorGraph.InitialOperator = variableCreator1;
|
---|
[7412] | 164 | variableCreator1.Successor = resultsCollector;
|
---|
[7478] | 165 | resultsCollector.Successor = selector1;
|
---|
| 166 | selector1.Successor = ssp1;
|
---|
[7345] | 167 | ssp1.Operators.Add(eo1);
|
---|
| 168 | ssp1.Operators.Add(solutionsCreator);
|
---|
[7412] | 169 | ssp1.Successor = placeholder5;
|
---|
[7345] | 170 | eo1.Successor = null;
|
---|
[7478] | 171 | solutionsCreator.Successor = ssp2;
|
---|
[7345] | 172 | ssp2.Operators.Add(eo2);
|
---|
| 173 | ssp2.Operators.Add(placeholder1);
|
---|
[7373] | 174 | ssp2.Successor = childrenCreator;
|
---|
[7345] | 175 | eo2.Successor = null;
|
---|
[7373] | 176 | placeholder1.Successor = null;
|
---|
| 177 | childrenCreator.Successor = ssp3;
|
---|
| 178 | ssp3.Operators.Add(placeholder2);
|
---|
| 179 | ssp3.Successor = null;
|
---|
[7412] | 180 | placeholder2.Successor = placeholder3;
|
---|
| 181 | placeholder3.Successor = subScopesRemover;
|
---|
[7478] | 182 | subScopesRemover.Successor = placeholder4;
|
---|
| 183 | placeholder4.Successor = null;
|
---|
[7412] | 184 | placeholder5.Successor = counter;
|
---|
[7345] | 185 | counter.Successor = analyzer1;
|
---|
| 186 | analyzer1.Successor = comparator3;
|
---|
| 187 | comparator3.Successor = conditionalBranch3;
|
---|
| 188 | conditionalBranch3.TrueBranch = null;
|
---|
[7478] | 189 | conditionalBranch3.FalseBranch = selector1;
|
---|
[7345] | 190 | conditionalBranch3.Successor = null;
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 194 | return new GRASPWithPathRelinkingMainLoop(this, cloner);
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | private void Parameterize() {
|
---|
| 198 | var operators = OperatorGraph.InitialOperator.Walk().ToArray();
|
---|
| 199 |
|
---|
| 200 | foreach (var solutionsCreator in operators.OfType<SolutionsCreator>()) {
|
---|
| 201 | solutionsCreator.SolutionCreatorParameter.ActualName = SolutionCreatorParameter.Name;
|
---|
| 202 | solutionsCreator.EvaluatorParameter.ActualName = EvaluatorParameter.Name;
|
---|
| 203 | }
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | public event EventHandler ProblemChanged;
|
---|
| 207 | protected virtual void OnProblemChanged() {
|
---|
| 208 | Parameterize();
|
---|
| 209 | var handler = ProblemChanged;
|
---|
| 210 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 211 | }
|
---|
| 212 | }
|
---|
| 213 | }
|
---|