Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs @ 6089

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

#1469

  • Fixed an issue were a TSP move evaluator could be selected in the QAP
File size: 21.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 System;
23using System.Collections.Generic;
24using System.Drawing;
25using System.IO;
26using System.Linq;
27using System.Reflection;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Data;
31using HeuristicLab.Encodings.PermutationEncoding;
32using HeuristicLab.Optimization;
33using HeuristicLab.Parameters;
34using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
35using HeuristicLab.PluginInfrastructure;
36
37namespace HeuristicLab.Problems.QuadraticAssignment {
38  [Item("Quadratic Assignment Problem", "The Quadratic Assignment Problem (QAP) can be described as the problem of assigning N facilities to N fixed locations such that there is exactly one facility in each location and that the sum of the distances multiplied by the connection strength between the facilities becomes minimal.")]
39  [Creatable("Problems")]
40  [StorableClass]
41  public sealed class QuadraticAssignmentProblem : SingleObjectiveHeuristicOptimizationProblem<IQAPEvaluator, IPermutationCreator>, IStorableContent {
42    private static string InstancePrefix = "HeuristicLab.Problems.QuadraticAssignment.Data.";
43
44    public string Filename { get; set; }
45
46    public override Image ItemImage {
47      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
48    }
49
50    #region Parameter Properties
51    public IValueParameter<ItemList<Permutation>> BestKnownSolutionsParameter {
52      get { return (IValueParameter<ItemList<Permutation>>)Parameters["BestKnownSolutions"]; }
53    }
54    public IValueParameter<Permutation> BestKnownSolutionParameter {
55      get { return (IValueParameter<Permutation>)Parameters["BestKnownSolution"]; }
56    }
57    public IValueParameter<DoubleMatrix> WeightsParameter {
58      get { return (IValueParameter<DoubleMatrix>)Parameters["Weights"]; }
59    }
60    public IValueParameter<DoubleMatrix> DistancesParameter {
61      get { return (IValueParameter<DoubleMatrix>)Parameters["Distances"]; }
62    }
63    #endregion
64
65    #region Properties
66    public ItemList<Permutation> BestKnownSolutions {
67      get { return BestKnownSolutionsParameter.Value; }
68      set { BestKnownSolutionsParameter.Value = value; }
69    }
70    public Permutation BestKnownSolution {
71      get { return BestKnownSolutionParameter.Value; }
72      set { BestKnownSolutionParameter.Value = value; }
73    }
74    public DoubleMatrix Weights {
75      get { return WeightsParameter.Value; }
76      set { WeightsParameter.Value = value; }
77    }
78    public DoubleMatrix Distances {
79      get { return DistancesParameter.Value; }
80      set { DistancesParameter.Value = value; }
81    }
82
83    public IEnumerable<string> EmbeddedInstances {
84      get {
85        return Assembly.GetExecutingAssembly()
86          .GetManifestResourceNames()
87          .Where(x => x.EndsWith(".dat"))
88          .OrderBy(x => x)
89          .Select(x => x.Replace(".dat", String.Empty))
90          .Select(x => x.Replace(InstancePrefix, String.Empty));
91      }
92    }
93
94    private BestQAPSolutionAnalyzer BestQAPSolutionAnalyzer {
95      get { return Operators.OfType<BestQAPSolutionAnalyzer>().FirstOrDefault(); }
96    }
97
98    private QAPAlleleFrequencyAnalyzer QAPAlleleFrequencyAnalyzer {
99      get { return Operators.OfType<QAPAlleleFrequencyAnalyzer>().FirstOrDefault(); }
100    }
101
102    private QAPPopulationDiversityAnalyzer QAPPopulationDiversityAnalyzer {
103      get { return Operators.OfType<QAPPopulationDiversityAnalyzer>().FirstOrDefault(); }
104    }
105    #endregion
106
107    [StorableConstructor]
108    private QuadraticAssignmentProblem(bool deserializing) : base(deserializing) { }
109    private QuadraticAssignmentProblem(QuadraticAssignmentProblem original, Cloner cloner)
110      : base(original, cloner) {
111      AttachEventHandlers();
112    }
113    public QuadraticAssignmentProblem()
114      : base(new QAPEvaluator(), new RandomPermutationCreator()) {
115      Parameters.Add(new OptionalValueParameter<ItemList<Permutation>>("BestKnownSolutions", "The list of best known solutions which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
116      Parameters.Add(new OptionalValueParameter<Permutation>("BestKnownSolution", "The best known solution which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
117      Parameters.Add(new ValueParameter<DoubleMatrix>("Weights", "The strength of the connection between the facilities.", new DoubleMatrix(5, 5)));
118      Parameters.Add(new ValueParameter<DoubleMatrix>("Distances", "The distance matrix which can either be specified directly without the coordinates, or can be calculated automatically from the coordinates.", new DoubleMatrix(5, 5)));
119
120      Maximization = new BoolValue(false);
121
122      Weights = new DoubleMatrix(new double[,] {
123        { 0, 1, 0, 0, 1 },
124        { 1, 0, 1, 0, 0 },
125        { 0, 1, 0, 1, 0 },
126        { 0, 0, 1, 0, 1 },
127        { 1, 0, 0, 1, 0 }
128      });
129
130      Distances = new DoubleMatrix(new double[,] {
131        {   0, 360, 582, 582, 360 },
132        { 360,   0, 360, 582, 582 },
133        { 582, 360,   0, 360, 582 },
134        { 582, 582, 360,   0, 360 },
135        { 360, 582, 582, 360,   0 }
136      });
137
138      SolutionCreator.PermutationParameter.ActualName = "Assignment";
139      ParameterizeSolutionCreator();
140      ParameterizeEvaluator();
141
142      InitializeOperators();
143      AttachEventHandlers();
144    }
145
146    public override IDeepCloneable Clone(Cloner cloner) {
147      return new QuadraticAssignmentProblem(this, cloner);
148    }
149
150    [StorableHook(HookType.AfterDeserialization)]
151    private void AfterDeserialization() {
152      // BackwardsCompatibility3.3
153      #region Backwards compatible code, remove with 3.4
154      /*if (Parameters.ContainsKey("BestKnownSolution")) {
155        Permutation solution = ((IValueParameter<Permutation>)Parameters["BestKnownSolution"]).Value;
156        Parameters.Remove("BestKnownSolution");
157        Parameters.Add(new OptionalValueParameter<ItemList<Permutation>>("BestKnownSolutions", "The list of best known solutions which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
158        if (solution != null) {
159          BestKnownSolutions = new ItemList<Permutation>();
160          BestKnownSolutions.Add(solution);
161        }
162      }*/
163      if (!Parameters.ContainsKey("BestKnownSolutions")) {
164        Parameters.Add(new OptionalValueParameter<ItemList<Permutation>>("BestKnownSolutions", "The list of best known solutions which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
165      }
166      #endregion
167    }
168
169    #region Events
170    protected override void OnSolutionCreatorChanged() {
171      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
172      ParameterizeSolutionCreator();
173      ParameterizeEvaluator();
174      ParameterizeAnalyzers();
175      ParameterizeOperators();
176      base.OnSolutionCreatorChanged();
177    }
178    protected override void OnEvaluatorChanged() {
179      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
180      ParameterizeEvaluator();
181      ParameterizeAnalyzers();
182      ParameterizeOperators();
183      base.OnEvaluatorChanged();
184    }
185
186    private void SolutionCreator_PermutationParameter_ActualNameChanged(object sender, EventArgs e) {
187      ParameterizeEvaluator();
188      ParameterizeAnalyzers();
189      ParameterizeOperators();
190    }
191    private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
192      ParameterizeAnalyzers();
193      ParameterizeOperators();
194    }
195    private void WeightsParameter_ValueChanged(object sender, EventArgs e) {
196      Weights.RowsChanged += new EventHandler(Weights_RowsChanged);
197      Weights.ColumnsChanged += new EventHandler(Weights_ColumnsChanged);
198      ParameterizeSolutionCreator();
199      ParameterizeEvaluator();
200      ParameterizeOperators();
201      AdjustDistanceMatrix();
202    }
203    private void Weights_RowsChanged(object sender, EventArgs e) {
204      if (Weights.Rows != Weights.Columns)
205        ((IStringConvertibleMatrix)Weights).Columns = Weights.Rows;
206      else {
207        ParameterizeSolutionCreator();
208        ParameterizeEvaluator();
209        ParameterizeOperators();
210        AdjustDistanceMatrix();
211      }
212    }
213    private void Weights_ColumnsChanged(object sender, EventArgs e) {
214      if (Weights.Rows != Weights.Columns)
215        ((IStringConvertibleMatrix)Weights).Rows = Weights.Columns;
216      else {
217        ParameterizeSolutionCreator();
218        ParameterizeEvaluator();
219        ParameterizeOperators();
220        AdjustDistanceMatrix();
221      }
222    }
223    private void DistancesParameter_ValueChanged(object sender, EventArgs e) {
224      Distances.RowsChanged += new EventHandler(Distances_RowsChanged);
225      Distances.ColumnsChanged += new EventHandler(Distances_ColumnsChanged);
226      ParameterizeSolutionCreator();
227      ParameterizeEvaluator();
228      ParameterizeOperators();
229      AdjustWeightsMatrix();
230    }
231    private void Distances_RowsChanged(object sender, EventArgs e) {
232      if (Distances.Rows != Distances.Columns)
233        ((IStringConvertibleMatrix)Distances).Columns = Distances.Rows;
234      else {
235        ParameterizeSolutionCreator();
236        ParameterizeEvaluator();
237        ParameterizeOperators();
238        AdjustWeightsMatrix();
239      }
240    }
241    private void Distances_ColumnsChanged(object sender, EventArgs e) {
242      if (Distances.Rows != Distances.Columns)
243        ((IStringConvertibleMatrix)Distances).Rows = Distances.Columns;
244      else {
245        ParameterizeSolutionCreator();
246        ParameterizeEvaluator();
247        ParameterizeOperators();
248        AdjustWeightsMatrix();
249      }
250    }
251    #endregion
252
253    #region Helpers
254    [StorableHook(HookType.AfterDeserialization)]
255    private void AfterDeserializationHook() {
256      AttachEventHandlers();
257    }
258
259    private void AttachEventHandlers() {
260      SolutionCreator.PermutationParameter.ActualNameChanged += new EventHandler(SolutionCreator_PermutationParameter_ActualNameChanged);
261      Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
262      WeightsParameter.ValueChanged += new EventHandler(WeightsParameter_ValueChanged);
263      Weights.RowsChanged += new EventHandler(Weights_RowsChanged);
264      Weights.ColumnsChanged += new EventHandler(Weights_ColumnsChanged);
265      DistancesParameter.ValueChanged += new EventHandler(DistancesParameter_ValueChanged);
266      Distances.RowsChanged += new EventHandler(Distances_RowsChanged);
267      Distances.ColumnsChanged += new EventHandler(Distances_ColumnsChanged);
268    }
269
270    private void InitializeOperators() {
271      Operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>());
272      Operators.RemoveAll(x => x is ISingleObjectiveMoveEvaluator);
273      Operators.AddRange(ApplicationManager.Manager.GetInstances<IQAPMoveEvaluator>());
274      Operators.Add(new BestQAPSolutionAnalyzer());
275      Operators.Add(new QAPAlleleFrequencyAnalyzer());
276      Operators.Add(new QAPPopulationDiversityAnalyzer());
277      Operators.Add(new QAPExhaustiveSwap2LocalImprovement());
278      ParameterizeAnalyzers();
279      ParameterizeOperators();
280    }
281    private void ParameterizeSolutionCreator() {
282      if (SolutionCreator != null) {
283        SolutionCreator.PermutationTypeParameter.Value = new PermutationType(PermutationTypes.Absolute);
284        SolutionCreator.LengthParameter.Value = new IntValue(Weights.Rows);
285      }
286    }
287    private void ParameterizeEvaluator() {
288      if (Evaluator != null) {
289        Evaluator.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
290        Evaluator.DistancesParameter.ActualName = DistancesParameter.Name;
291        Evaluator.WeightsParameter.ActualName = WeightsParameter.Name;
292      }
293    }
294    private void ParameterizeAnalyzers() {
295      if (BestQAPSolutionAnalyzer != null) {
296        BestQAPSolutionAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
297        BestQAPSolutionAnalyzer.DistancesParameter.ActualName = DistancesParameter.Name;
298        BestQAPSolutionAnalyzer.WeightsParameter.ActualName = WeightsParameter.Name;
299        BestQAPSolutionAnalyzer.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
300        BestQAPSolutionAnalyzer.ResultsParameter.ActualName = "Results";
301        BestQAPSolutionAnalyzer.BestKnownQualityParameter.ActualName = BestKnownQualityParameter.Name;
302        BestQAPSolutionAnalyzer.BestKnownSolutionsParameter.ActualName = BestKnownSolutionsParameter.Name;
303        BestQAPSolutionAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
304      }
305      if (QAPAlleleFrequencyAnalyzer != null) {
306        QAPAlleleFrequencyAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
307        QAPAlleleFrequencyAnalyzer.BestKnownSolutionParameter.ActualName = BestKnownSolutionParameter.Name;
308        QAPAlleleFrequencyAnalyzer.DistancesParameter.ActualName = DistancesParameter.Name;
309        QAPAlleleFrequencyAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
310        QAPAlleleFrequencyAnalyzer.ResultsParameter.ActualName = "Results";
311        QAPAlleleFrequencyAnalyzer.SolutionParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
312        QAPAlleleFrequencyAnalyzer.WeightsParameter.ActualName = WeightsParameter.Name;
313      }
314      if (QAPPopulationDiversityAnalyzer != null) {
315        QAPPopulationDiversityAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
316        QAPPopulationDiversityAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
317        QAPPopulationDiversityAnalyzer.ResultsParameter.ActualName = "Results";
318        QAPPopulationDiversityAnalyzer.SolutionParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
319      }
320    }
321    private void ParameterizeOperators() {
322      foreach (IPermutationCrossover op in Operators.OfType<IPermutationCrossover>()) {
323        op.ParentsParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
324        op.ChildParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
325      }
326      foreach (IPermutationManipulator op in Operators.OfType<IPermutationManipulator>()) {
327        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
328      }
329      foreach (IPermutationMoveOperator op in Operators.OfType<IPermutationMoveOperator>()) {
330        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
331      }
332      if (Operators.OfType<IMoveGenerator>().Any()) {
333        string inversionMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationInversionMoveOperator>().First().InversionMoveParameter.ActualName;
334        foreach (IPermutationInversionMoveOperator op in Operators.OfType<IPermutationInversionMoveOperator>())
335          op.InversionMoveParameter.ActualName = inversionMove;
336        string translocationMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationTranslocationMoveOperator>().First().TranslocationMoveParameter.ActualName;
337        foreach (IPermutationTranslocationMoveOperator op in Operators.OfType<IPermutationTranslocationMoveOperator>())
338          op.TranslocationMoveParameter.ActualName = translocationMove;
339        string swapMove = Operators.OfType<IMoveGenerator>().OfType<IPermutationSwap2MoveOperator>().First().Swap2MoveParameter.ActualName;
340        foreach (IPermutationSwap2MoveOperator op in Operators.OfType<IPermutationSwap2MoveOperator>()) {
341          op.Swap2MoveParameter.ActualName = swapMove;
342        }
343      }
344      foreach (var op in Operators.OfType<IPermutationMultiNeighborhoodShakingOperator>())
345        op.PermutationParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
346
347      QAPExhaustiveSwap2LocalImprovement localOpt = Operators.OfType<QAPExhaustiveSwap2LocalImprovement>().SingleOrDefault();
348      if (localOpt != null) {
349        localOpt.AssignmentParameter.ActualName = SolutionCreator.PermutationParameter.ActualName;
350        localOpt.DistancesParameter.ActualName = DistancesParameter.Name;
351        localOpt.MaximizationParameter.ActualName = MaximizationParameter.Name;
352        localOpt.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
353        localOpt.WeightsParameter.ActualName = WeightsParameter.Name;
354      }
355    }
356
357    private void AdjustDistanceMatrix() {
358      if (Distances.Rows != Weights.Rows || Distances.Columns != Weights.Columns) {
359        ((IStringConvertibleMatrix)Distances).Rows = Weights.Rows;
360      }
361    }
362
363    private void AdjustWeightsMatrix() {
364      if (Weights.Rows != Distances.Rows || Weights.Columns != Distances.Columns) {
365        ((IStringConvertibleMatrix)Weights).Rows = Distances.Rows;
366      }
367    }
368    #endregion
369
370    public void ImportFileInstance(string filename) {
371      QAPLIBParser parser = new QAPLIBParser();
372      parser.Parse(filename);
373      if (parser.Error != null) throw parser.Error;
374      Distances = new DoubleMatrix(parser.Distances);
375      Weights = new DoubleMatrix(parser.Weights);
376      Name = "Quadratic Assignment Problem (imported from " + Path.GetFileNameWithoutExtension(filename) + ")";
377      Description = "Imported problem data using QAPLIBParser " + Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).Cast<AssemblyFileVersionAttribute>().FirstOrDefault().Version + ".";
378      BestKnownQuality = null;
379      BestKnownSolutions = null;
380      OnReset();
381    }
382
383    public void LoadEmbeddedInstance(string instance) {
384      using (Stream stream = Assembly.GetExecutingAssembly()
385        .GetManifestResourceStream(InstancePrefix + instance + ".dat")) {
386        QAPLIBParser parser = new QAPLIBParser();
387        parser.Parse(stream);
388        if (parser.Error != null) throw parser.Error;
389        Distances = new DoubleMatrix(parser.Distances);
390        Weights = new DoubleMatrix(parser.Weights);
391        Name = "Quadratic Assignment Problem (loaded instance " + instance + ")";
392        Description = "Loaded embedded problem data of instance " + instance + ".";
393        OnReset();
394      }
395      bool solutionExists = Assembly.GetExecutingAssembly()
396          .GetManifestResourceNames()
397          .Where(x => x.EndsWith(instance + ".sln"))
398          .Any();
399      if (solutionExists) {
400        using (Stream solStream = Assembly.GetExecutingAssembly()
401          .GetManifestResourceStream(InstancePrefix + instance + ".sln")) {
402          QAPLIBSolutionParser solParser = new QAPLIBSolutionParser();
403          solParser.Parse(solStream, true); // most sln's seem to be of the type index = "facility" => value = "location"
404          if (solParser.Error != null) throw solParser.Error;
405          if (!solParser.Quality.IsAlmost(QAPEvaluator.Apply(new Permutation(PermutationTypes.Absolute, solParser.Assignment), Weights, Distances))) {
406            solStream.Seek(0, SeekOrigin.Begin);
407            solParser.Reset();
408            solParser.Parse(solStream, false); // some sln's seem to be of the type index = "location" => value = "facility"
409            if (solParser.Error != null) throw solParser.Error;
410            if (solParser.Quality.IsAlmost(QAPEvaluator.Apply(new Permutation(PermutationTypes.Absolute, solParser.Assignment), Weights, Distances))) {
411              BestKnownQuality = new DoubleValue(solParser.Quality);
412              BestKnownSolutions = new ItemList<Permutation>(new Permutation[] { new Permutation(PermutationTypes.Absolute, solParser.Assignment) });
413              BestKnownSolution = new Permutation(PermutationTypes.Absolute, solParser.Assignment);
414            } else {
415              BestKnownQuality = new DoubleValue(solParser.Quality);
416              BestKnownSolutions = null;
417              BestKnownSolution = null;
418            }
419          } else {
420            BestKnownQuality = new DoubleValue(solParser.Quality);
421            BestKnownSolutions = new ItemList<Permutation>(new Permutation[] { new Permutation(PermutationTypes.Absolute, solParser.Assignment) });
422            BestKnownSolution = new Permutation(PermutationTypes.Absolute, solParser.Assignment);
423          }
424        }
425      } else {
426        BestKnownQuality = null;
427        BestKnownSolutions = null;
428        BestKnownSolution = null;
429      }
430    }
431  }
432}
Note: See TracBrowser for help on using the repository browser.