1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Problems.TravelingSalesman {
|
---|
28 | /// <summary>
|
---|
29 | /// An operator to evaluate inversion moves (2-opt).
|
---|
30 | /// </summary>
|
---|
31 | [Item("TSPInversionMoveGeoPathEvaluator", "Operator for evaluating an inversion move (2-opt) based on geo (world) distances.")]
|
---|
32 | [StorableClass]
|
---|
33 | public class TSPInversionMoveGeoPathEvaluator : TSPInversionMovePathEvaluator {
|
---|
34 | public override Type EvaluatorType {
|
---|
35 | get { return typeof(TSPGeoPathEvaluator); }
|
---|
36 | }
|
---|
37 |
|
---|
38 | private const double PI = 3.141592;
|
---|
39 | private const double RADIUS = 6378.388;
|
---|
40 |
|
---|
41 | [StorableConstructor]
|
---|
42 | protected TSPInversionMoveGeoPathEvaluator(bool deserializing) : base(deserializing) { }
|
---|
43 | protected TSPInversionMoveGeoPathEvaluator(TSPInversionMoveGeoPathEvaluator original, Cloner cloner) : base(original, cloner) { }
|
---|
44 | public TSPInversionMoveGeoPathEvaluator() : base() { }
|
---|
45 |
|
---|
46 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
47 | return new TSPInversionMoveGeoPathEvaluator(this, cloner);
|
---|
48 | }
|
---|
49 |
|
---|
50 | /// <summary>
|
---|
51 | /// Calculates the distance between two points using the GEO distance metric (globe coordinates).
|
---|
52 | /// </summary>
|
---|
53 | /// <param name="x1">The x-coordinate of point 1.</param>
|
---|
54 | /// <param name="y1">The y-coordinate of point 1.</param>
|
---|
55 | /// <param name="x2">The x-coordinate of point 2.</param>
|
---|
56 | /// <param name="y2">The y-coordinate of point 2.</param>
|
---|
57 | /// <returns>The calculated distance.</returns>
|
---|
58 | protected override double CalculateDistance(double x1, double y1, double x2, double y2) {
|
---|
59 | double latitude1, longitude1, latitude2, longitude2;
|
---|
60 | double q1, q2, q3;
|
---|
61 | double length;
|
---|
62 |
|
---|
63 | latitude1 = ConvertToRadian(x1);
|
---|
64 | longitude1 = ConvertToRadian(y1);
|
---|
65 | latitude2 = ConvertToRadian(x2);
|
---|
66 | longitude2 = ConvertToRadian(y2);
|
---|
67 |
|
---|
68 | q1 = Math.Cos(longitude1 - longitude2);
|
---|
69 | q2 = Math.Cos(latitude1 - latitude2);
|
---|
70 | q3 = Math.Cos(latitude1 + latitude2);
|
---|
71 |
|
---|
72 | length = (int)(RADIUS * Math.Acos(0.5 * ((1.0 + q1) * q2 - (1.0 - q1) * q3)) + 1.0);
|
---|
73 | return (length);
|
---|
74 | }
|
---|
75 |
|
---|
76 | private double ConvertToRadian(double x) {
|
---|
77 | return PI * (Math.Truncate(x) + 5.0 * (x - Math.Truncate(x)) / 3.0) / 180.0;
|
---|
78 | }
|
---|
79 | }
|
---|
80 | }
|
---|