Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1331: made similarity calculators storable and cloneable

File size: 3.6 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 override IDeepCloneable Clone(Cloner cloner) {
42      return new VRPSimilarityCalculator(this, cloner);
43    }
44
45    public static double CalculateSimilarity(PotvinEncoding left, PotvinEncoding right) {
46      if (left == null || right == null)
47        throw new ArgumentException("Cannot calculate similarity because one of the provided solutions or both are null.");
48
49      // extract edges from first solution
50      var edges1 = new List<Tuple<int, int>>();
51      foreach (Tour tour in left.Tours) {
52        edges1.Add(new Tuple<int, int>(0, tour.Cities[0]));
53        for (int i = 0; i < tour.Cities.Count - 1; i++)
54          edges1.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
55        edges1.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
56      }
57
58      // extract edges from second solution
59      var edges2 = new List<Tuple<int, int>>();
60      foreach (Tour tour in right.Tours) {
61        edges2.Add(new Tuple<int, int>(0, tour.Cities[0]));
62        for (int i = 0; i < tour.Cities.Count - 1; i++)
63          edges2.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
64        edges2.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
65      }
66
67      if (edges1.Count + edges2.Count == 0)
68        throw new ArgumentException("Cannot calculate diversity because no tours exist.");
69
70      int identicalEdges = 0;
71      foreach (var edge in edges1) {
72        if (edges2.Any(x => x.Equals(edge)))
73          identicalEdges++;
74      }
75
76      return identicalEdges * 2.0 / (edges1.Count + edges2.Count);
77    }
78
79    protected override double CalculateSimilarity(IScope left, IScope right) {
80      PotvinEncoding sol1 = left.Variables[Target].Value as PotvinEncoding;
81      PotvinEncoding sol2 = right.Variables[Target].Value as PotvinEncoding;
82
83      return CalculateSimilarity(sol1, sol2);
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.