Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting/3.3/SimilarityCalculators/VRPSimilarityCalculator.cs @ 8086

Last change on this file since 8086 was 8086, checked in by jkarder, 12 years ago

#1331:

  • synced branch with trunk
  • added custom interface (ISimilarityBasedOperator) to mark operators that conduct similarity calculation
  • similarity calculators are now parameterized by the algorithm
  • deleted SolutionPool2TierUpdateMethod
  • deleted KnapsackMultipleGuidesPathRelinker
  • moved IImprovementOperator, IPathRelinker and ISimilarityCalculator to HeuristicLab.Optimization
  • added parameter descriptions
  • fixed plugin references
  • fixed count of EvaluatedSolutions
  • fixed check for duplicate solutions
  • minor code improvements
File size: 3.5 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Optimization.Operators;
28using HeuristicLab.Problems.VehicleRouting.Encodings;
29using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
30
31namespace HeuristicLab.Problems.VehicleRouting {
32  /// <summary>
33  /// An operator that performs similarity calculation between two vehicle routing solutions.
34  /// </summary>
35  [Item("VRPSimilarityCalculator", "An operator that performs similarity calculation between two vehicle routing solutions.")]
36  public sealed class VRPSimilarityCalculator : SimilarityCalculator {
37    private VRPSimilarityCalculator(bool deserializing) : base(deserializing) { }
38    private VRPSimilarityCalculator(VRPSimilarityCalculator original, Cloner cloner) : base(original, cloner) { }
39    public VRPSimilarityCalculator() : base() { }
40
41    public static double CalculateSimilarity(PotvinEncoding left, PotvinEncoding right) {
42      if (left == null || right == null)
43        throw new ArgumentException("Cannot calculate similarity because one of the provided solutions or both are null.");
44
45      // extract edges from first solution
46      var edges1 = new List<Tuple<int, int>>();
47      foreach (Tour tour in left.Tours) {
48        edges1.Add(new Tuple<int, int>(0, tour.Cities[0]));
49        for (int i = 0; i < tour.Cities.Count - 1; i++)
50          edges1.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
51        edges1.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
52      }
53
54      // extract edges from second solution
55      var edges2 = new List<Tuple<int, int>>();
56      foreach (Tour tour in right.Tours) {
57        edges2.Add(new Tuple<int, int>(0, tour.Cities[0]));
58        for (int i = 0; i < tour.Cities.Count - 1; i++)
59          edges2.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
60        edges2.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
61      }
62
63      if (edges1.Count + edges2.Count == 0)
64        throw new ArgumentException("Cannot calculate diversity because no tours exist.");
65
66      int identicalEdges = 0;
67      foreach (var edge in edges1) {
68        if (edges2.Any(x => x.Equals(edge)))
69          identicalEdges++;
70      }
71
72      return identicalEdges * 2.0 / (edges1.Count + edges2.Count);
73    }
74
75    protected override double CalculateSimilarity(IScope left, IScope right) {
76      PotvinEncoding sol1 = left.Variables[Target].Value as PotvinEncoding;
77      PotvinEncoding sol2 = right.Variables[Target].Value as PotvinEncoding;
78
79      return CalculateSimilarity(sol1, sol2);
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.