Free cookie consent management tool by TermsFeed Policy Generator

source: branches/QAP/HeuristicLab.Problems.QuadraticAssignment/3.3/Evaluators/QAPEvaluator.cs @ 5838

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

#1330

  • Renamed the DistanceMatrix parameter to Distances
  • Renamed the SwapMove to Swap2Move and renamed operators accordingly
  • Integrated changes in HeuristicLab.Analysis.Views regarding description text box
File size: 3.5 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 HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.PermutationEncoding;
26using HeuristicLab.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.QuadraticAssignment {
31  [StorableClass]
32  public class QAPEvaluator : SingleSuccessorOperator, IQAPEvaluator {
33
34    public ILookupParameter<Permutation> PermutationParameter {
35      get { return (ILookupParameter<Permutation>)Parameters["Permutation"]; }
36    }
37    public ILookupParameter<DoubleMatrix> DistancesParameter {
38      get { return (ILookupParameter<DoubleMatrix>)Parameters["Distances"]; }
39    }
40    public ILookupParameter<DoubleMatrix> WeightsParameter {
41      get { return (ILookupParameter<DoubleMatrix>)Parameters["Weights"]; }
42    }
43    public ILookupParameter<DoubleValue> QualityParameter {
44      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
45    }
46
47    [StorableConstructor]
48    protected QAPEvaluator(bool deserializing) : base(deserializing) { }
49    protected QAPEvaluator(QAPEvaluator original, Cloner cloner) : base(original, cloner) { }
50    public QAPEvaluator() {
51      Parameters.Add(new LookupParameter<Permutation>("Permutation", "The permutation that represents the current solution."));
52      Parameters.Add(new LookupParameter<DoubleMatrix>("Distances", "The distance matrix that contains the distances between the locations."));
53      Parameters.Add(new LookupParameter<DoubleMatrix>("Weights", "The matrix with the weights between the facilities, that is how strongly they're connected to each other."));
54      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality value aka fitness value of the solution."));
55    }
56
57    public override IDeepCloneable Clone(Cloner cloner) {
58      return new QAPEvaluator(this, cloner);
59    }
60
61    public static double Apply(Permutation assignment, DoubleMatrix weights, DoubleMatrix distances) {
62      double quality = 0;
63      for (int i = 0; i < assignment.Length; i++) {
64        for (int j = 0; j < assignment.Length; j++) {
65          quality += weights[i, j] * distances[assignment[i], assignment[j]];
66        }
67      }
68      return quality;
69    }
70
71    public override IOperation Apply() {
72      Permutation assignment = PermutationParameter.ActualValue;
73      DoubleMatrix weights = WeightsParameter.ActualValue;
74      DoubleMatrix distanceMatrix = DistancesParameter.ActualValue;
75
76      double quality = Apply(assignment, weights, distanceMatrix);
77      QualityParameter.ActualValue = new DoubleValue(quality);
78
79      return base.Apply();
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.