Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.TravelingSalesman/3.3/SimilarityCalculators/TSPSimilarityCalculator.cs @ 15217

Last change on this file since 15217 was 15217, checked in by abeham, 7 years ago

#2666, #2706, #2730, #2736: merged revisions 14412, 14475, 14476, 14659, 14660, 14663, 14779, 14780, 14912, 15050, 15067, 15069, 15079, 15162, 15166, 15172, 15173 to stable

File size: 5.1 KB
RevLine 
[7789]1#region License Information
2/* HeuristicLab
[14186]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[7789]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
[8086]22using System;
[7789]23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Encodings.PermutationEncoding;
26using HeuristicLab.Optimization.Operators;
[15217]27using HeuristicLab.PluginInfrastructure;
[7789]28
29namespace HeuristicLab.Problems.TravelingSalesman {
30  /// <summary>
31  /// An operator that performs similarity calculation between two traveling salesman solutions.
32  /// </summary>
[8319]33  /// <remarks>
34  /// The operator calculates the similarity based on the number of edges the two solutions have in common.
35  /// </remarks>
[8327]36  [Item("TSPSimilarityCalculator", "An operator that performs similarity calculation between two traveling salesman solutions. The operator calculates the similarity based on the number of edges the two solutions have in common.")]
[15217]37  [Obsolete("This operator is similar to the Hamming similarity calculator in the Encodings.PermutationEncoding namespace")]
38  [NonDiscoverableType]
39  internal sealed class TSPSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator {
[12280]40    protected override bool IsCommutative { get { return true; } }
41
[7789]42    private TSPSimilarityCalculator(bool deserializing) : base(deserializing) { }
43    private TSPSimilarityCalculator(TSPSimilarityCalculator original, Cloner cloner) : base(original, cloner) { }
44    public TSPSimilarityCalculator() : base() { }
45
[8303]46    public override IDeepCloneable Clone(Cloner cloner) {
47      return new TSPSimilarityCalculator(this, cloner);
48    }
49
[8086]50    public static double CalculateSimilarity(Permutation left, Permutation right) {
51      if (left == null || right == null)
52        throw new ArgumentException("Cannot calculate similarity because one of the provided solutions or both are null.");
[8319]53      if (left.PermutationType != right.PermutationType)
54        throw new ArgumentException("Cannot calculate similarity because the provided solutions have different types.");
55      if (left.Length != right.Length)
56        throw new ArgumentException("Cannot calculate similarity because the provided solutions have different lengths.");
[9030]57      if (object.ReferenceEquals(left, right)) return 1.0;
[7789]58
[8319]59      switch (left.PermutationType) {
60        case PermutationTypes.Absolute:
61          return CalculateAbsolute(left, right);
62        case PermutationTypes.RelativeDirected:
63          return CalculateRelativeDirected(left, right);
64        case PermutationTypes.RelativeUndirected:
65          return CalculateRelativeUndirected(left, right);
66        default:
67          throw new InvalidOperationException("unknown permutation type");
68      }
69    }
70
71    private static double CalculateAbsolute(Permutation left, Permutation right) {
72      double similarity = 0.0;
[8322]73      for (int i = 0; i < left.Length; i++)
74        if (left[i] == right[i]) similarity++;
75
[8319]76      return similarity / left.Length;
77    }
78
79    private static double CalculateRelativeDirected(Permutation left, Permutation right) {
[9443]80      int[] edgesR = CalculateEdgesVector(right);
81      int[] edgesL = CalculateEdgesVector(left);
[8322]82
83      double similarity = 0.0;
[9443]84      for (int i = 0; i < left.Length; i++) {
85        if (edgesL[i] == edgesR[i]) similarity++;
86      }
[8322]87
88      return similarity / left.Length;
[8319]89    }
90
91    private static double CalculateRelativeUndirected(Permutation left, Permutation right) {
[9413]92      int[] edgesR = CalculateEdgesVector(right);
93      int[] edgesL = CalculateEdgesVector(left);
[7789]94
95      double similarity = 0.0;
[8086]96      for (int i = 0; i < left.Length; i++) {
[9413]97        if ((edgesL[i] == edgesR[i]) || (edgesL[edgesR[i]] == i))
[7789]98          similarity++;
99      }
100
[8086]101      return similarity / left.Length;
[7789]102    }
[8086]103
[9413]104    private static int[] CalculateEdgesVector(Permutation permutation) {
105      // transform path representation into adjacency representation
106      int[] edgesVector = new int[permutation.Length];
107      for (int i = 0; i < permutation.Length - 1; i++)
108        edgesVector[permutation[i]] = permutation[i + 1];
109      edgesVector[permutation[permutation.Length - 1]] = permutation[0];
110      return edgesVector;
111    }
112
[8319]113    public override double CalculateSolutionSimilarity(IScope leftSolution, IScope rightSolution) {
114      var sol1 = leftSolution.Variables[SolutionVariableName].Value as Permutation;
115      var sol2 = rightSolution.Variables[SolutionVariableName].Value as Permutation;
[8086]116
117      return CalculateSimilarity(sol1, sol2);
118    }
[7789]119  }
120}
Note: See TracBrowser for help on using the repository browser.