Free cookie consent management tool by TermsFeed Policy Generator

source: branches/histogram/HeuristicLab.Problems.QuadraticAssignment/3.3/Analyzers/BestQAPSolutionAnalyzer.cs @ 6086

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

#1497

  • Added problem-specific local improvement operator (best improvement local search using swap2 moves)
    • Adapted ExhaustiveSwap2MoveGenerator to yield moves
  • Added a parameter BestKnownSolutions to collect possible optimal invariants
    • Adapted BestQAPSolutionAnalyzer to collect optimal invariants
  • Added a function to the QAP Evaluator that calculates the impact of a certain allele
File size: 8.4 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.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.PermutationEncoding;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.QuadraticAssignment {
33  /// <summary>
34  /// An operator for analyzing the best solution of Quadratic Assignment Problems.
35  /// </summary>
36  [Item("BestQAPSolutionAnalyzer", "An operator for analyzing the best solution of Quadratic Assignment Problems.")]
37  [StorableClass]
38  public sealed class BestQAPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
39    public LookupParameter<BoolValue> MaximizationParameter {
40      get { return (LookupParameter<BoolValue>)Parameters["Maximization"]; }
41    }
42    public LookupParameter<DoubleMatrix> DistancesParameter {
43      get { return (LookupParameter<DoubleMatrix>)Parameters["Distances"]; }
44    }
45    public LookupParameter<DoubleMatrix> WeightsParameter {
46      get { return (LookupParameter<DoubleMatrix>)Parameters["Weights"]; }
47    }
48    public ScopeTreeLookupParameter<Permutation> PermutationParameter {
49      get { return (ScopeTreeLookupParameter<Permutation>)Parameters["Permutation"]; }
50    }
51    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
52      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
53    }
54    public LookupParameter<QAPAssignment> BestSolutionParameter {
55      get { return (LookupParameter<QAPAssignment>)Parameters["BestSolution"]; }
56    }
57    public ValueLookupParameter<ResultCollection> ResultsParameter {
58      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
59    }
60    public LookupParameter<DoubleValue> BestKnownQualityParameter {
61      get { return (LookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
62    }
63    public LookupParameter<ItemList<Permutation>> BestKnownSolutionsParameter {
64      get { return (LookupParameter<ItemList<Permutation>>)Parameters["BestKnownSolutions"]; }
65    }
66    public LookupParameter<Permutation> BestKnownSolutionParameter {
67      get { return (LookupParameter<Permutation>)Parameters["BestKnownSolution"]; }
68    }
69
70    [StorableConstructor]
71    private BestQAPSolutionAnalyzer(bool deserializing) : base(deserializing) { }
72    private BestQAPSolutionAnalyzer(BestQAPSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { }
73    public override IDeepCloneable Clone(Cloner cloner) {
74      return new BestQAPSolutionAnalyzer(this, cloner);
75    }
76    public BestQAPSolutionAnalyzer()
77      : base() {
78      Parameters.Add(new LookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
79      Parameters.Add(new LookupParameter<DoubleMatrix>("Distances", "The distances between the locations."));
80      Parameters.Add(new LookupParameter<DoubleMatrix>("Weights", "The weights between the facilities."));
81      Parameters.Add(new ScopeTreeLookupParameter<Permutation>("Permutation", "The QAP solutions from which the best solution should be analyzed."));
82      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the QAP solutions which should be analyzed."));
83      Parameters.Add(new LookupParameter<QAPAssignment>("BestSolution", "The best QAP solution."));
84      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best QAP solution should be stored."));
85      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this QAP instance."));
86      Parameters.Add(new LookupParameter<ItemList<Permutation>>("BestKnownSolutions", "The best known solutions of this QAP instance."));
87      Parameters.Add(new LookupParameter<Permutation>("BestKnownSolution", "The best known solution of this QAP instance."));
88    }
89
90    [StorableHook(HookType.AfterDeserialization)]
91    private void AfterDeserialization() {
92      // BackwardsCompatibility3.3
93      #region Backwards compatible code, remove with 3.4
94      /*if (Parameters.ContainsKey("BestKnownSolution")) {
95        Parameters.Remove("BestKnownSolution");
96        Parameters.Add(new LookupParameter<ItemList<Permutation>>("BestKnownSolutions", "The best known solutions of this QAP instance."));
97      }*/
98      if (!Parameters.ContainsKey("BestKnownSolutions")) {
99        Parameters.Add(new LookupParameter<ItemList<Permutation>>("BestKnownSolutions", "The best known solutions of this QAP instance."));
100      }
101      #endregion
102    }
103
104    public override IOperation Apply() {
105      DoubleMatrix distances = DistancesParameter.ActualValue;
106      DoubleMatrix weights = WeightsParameter.ActualValue;
107      ItemArray<Permutation> permutations = PermutationParameter.ActualValue;
108      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
109      ResultCollection results = ResultsParameter.ActualValue;
110      bool max = MaximizationParameter.ActualValue.Value;
111      DoubleValue bestKnownQuality = BestKnownQualityParameter.ActualValue;
112
113      var sorted = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => x.Value).ToArray();
114      if (max) sorted = sorted.Reverse().ToArray();
115      int i = sorted.First().index;
116
117      if (bestKnownQuality == null
118          || max && qualities[i].Value > bestKnownQuality.Value
119          || !max && qualities[i].Value < bestKnownQuality.Value
120          || bestKnownQuality.Value == qualities[i].Value
121            && (BestKnownSolutionsParameter.ActualValue == null || BestKnownSolutionsParameter.ActualValue.Count == 0)) {
122        BestKnownQualityParameter.ActualValue = new DoubleValue(qualities[i].Value);
123        BestKnownSolutionParameter.ActualValue = (Permutation)permutations[i].Clone();
124        BestKnownSolutionsParameter.ActualValue = new ItemList<Permutation>();
125        BestKnownSolutionsParameter.ActualValue.Add((Permutation)permutations[i].Clone());
126      } else if (bestKnownQuality != null && qualities[i].Value == bestKnownQuality.Value) {
127        PermutationEqualityComparer comparer = new PermutationEqualityComparer();
128        foreach (var k in sorted) {
129          if (!max && k.Value > qualities[i].Value
130            || max && k.Value < qualities[i].Value) break;
131          Permutation p = permutations[k.index];
132          bool alreadyPresent = false;
133          foreach (Permutation p2 in BestKnownSolutionsParameter.ActualValue) {
134            if (comparer.Equals(p, p2)) {
135              alreadyPresent = true;
136              break;
137            }
138          }
139          if (!alreadyPresent)
140            BestKnownSolutionsParameter.ActualValue.Add((Permutation)permutations[k.index].Clone());
141        }
142      }
143
144      QAPAssignment assignment = BestSolutionParameter.ActualValue;
145      if (assignment == null) {
146        assignment = new QAPAssignment(weights, (Permutation)permutations[i].Clone(), new DoubleValue(qualities[i].Value));
147        assignment.Distances = distances;
148        BestSolutionParameter.ActualValue = assignment;
149        results.Add(new Result("Best QAP Solution", assignment));
150      } else {
151        if (max && assignment.Quality.Value < qualities[i].Value ||
152          !max && assignment.Quality.Value > qualities[i].Value) {
153          assignment.Distances = distances;
154          assignment.Weights = weights;
155          assignment.Assignment = (Permutation)permutations[i].Clone();
156          assignment.Quality.Value = qualities[i].Value;
157        }
158      }
159
160      return base.Apply();
161    }
162  }
163}
Note: See TracBrowser for help on using the repository browser.