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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Optimization.Operators;
|
---|
28 | using HeuristicLab.Problems.VehicleRouting.Encodings;
|
---|
29 | using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Problems.VehicleRouting {
|
---|
32 | /// <summary>
|
---|
33 | /// An operator that performs similarity calculation between two vehicle routing solutions.
|
---|
34 | /// </summary>
|
---|
35 | /// <remarks>
|
---|
36 | /// The operator calculates the similarity based on the number of edges the two solutions have in common.
|
---|
37 | /// </remarks>
|
---|
38 | [Item("VRPSimilarityCalculator", "An operator that performs similarity calculation between two vehicle routing solutions.")]
|
---|
39 | public sealed class VRPSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator {
|
---|
40 | private VRPSimilarityCalculator(bool deserializing) : base(deserializing) { }
|
---|
41 | private VRPSimilarityCalculator(VRPSimilarityCalculator original, Cloner cloner) : base(original, cloner) { }
|
---|
42 | public VRPSimilarityCalculator() : base() { }
|
---|
43 |
|
---|
44 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
45 | return new VRPSimilarityCalculator(this, cloner);
|
---|
46 | }
|
---|
47 |
|
---|
48 | public static double CalculateSimilarity(PotvinEncoding left, PotvinEncoding right) {
|
---|
49 | if (left == null || right == null)
|
---|
50 | throw new ArgumentException("Cannot calculate similarity because one of the provided solutions or both are null.");
|
---|
51 | if (left == right) return 1.0;
|
---|
52 |
|
---|
53 | // extract edges from first solution
|
---|
54 | var edges1 = new List<Tuple<int, int>>();
|
---|
55 | foreach (Tour tour in left.Tours) {
|
---|
56 | edges1.Add(new Tuple<int, int>(0, tour.Cities[0]));
|
---|
57 | for (int i = 0; i < tour.Cities.Count - 1; i++)
|
---|
58 | edges1.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
|
---|
59 | edges1.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
|
---|
60 | }
|
---|
61 |
|
---|
62 | // extract edges from second solution
|
---|
63 | var edges2 = new List<Tuple<int, int>>();
|
---|
64 | foreach (Tour tour in right.Tours) {
|
---|
65 | edges2.Add(new Tuple<int, int>(0, tour.Cities[0]));
|
---|
66 | for (int i = 0; i < tour.Cities.Count - 1; i++)
|
---|
67 | edges2.Add(new Tuple<int, int>(tour.Cities[i], tour.Cities[i + 1]));
|
---|
68 | edges2.Add(new Tuple<int, int>(tour.Cities[tour.Cities.Count - 1], 0));
|
---|
69 | }
|
---|
70 |
|
---|
71 | if (edges1.Count + edges2.Count == 0)
|
---|
72 | throw new ArgumentException("Cannot calculate diversity because no tours exist.");
|
---|
73 |
|
---|
74 | int identicalEdges = 0;
|
---|
75 | foreach (var edge in edges1) {
|
---|
76 | if (edges2.Any(x => x.Equals(edge)))
|
---|
77 | identicalEdges++;
|
---|
78 | }
|
---|
79 |
|
---|
80 | return identicalEdges * 2.0 / (edges1.Count + edges2.Count);
|
---|
81 | }
|
---|
82 |
|
---|
83 | public override double CalculateSolutionSimilarity(IScope leftSolution, IScope rightSolution) {
|
---|
84 | var sol1 = leftSolution.Variables[SolutionVariableName].Value as PotvinEncoding;
|
---|
85 | var sol2 = rightSolution.Variables[SolutionVariableName].Value as PotvinEncoding;
|
---|
86 |
|
---|
87 | return CalculateSimilarity(sol1, sol2);
|
---|
88 | }
|
---|
89 | }
|
---|
90 | }
|
---|