Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/VRPUtilities.cs @ 4619

Last change on this file since 4619 was 4619, checked in by svonolfe, 14 years ago

Add best known solution import for the VRP (TSPLib format) #1236

File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Drawing;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.VehicleRouting {
30  public sealed class VRPUtilities {
31    public static double CalculateDistance(int start, int end, DoubleMatrix coordinates) {
32      double distance = 0.0;
33
34      distance =
35          Math.Sqrt(
36            Math.Pow(coordinates[start, 0] - coordinates[end, 0], 2) +
37            Math.Pow(coordinates[start, 1] - coordinates[end, 1], 2));
38
39      return distance;
40    }
41
42    private static DoubleMatrix CreateDistanceMatrix(DoubleMatrix coordinates) {
43      DoubleMatrix distanceMatrix = new DoubleMatrix(coordinates.Rows, coordinates.Rows);
44
45      for (int i = 0; i < distanceMatrix.Rows; i++) {
46        for (int j = i; j < distanceMatrix.Columns; j++) {
47          double distance = CalculateDistance(i, j, coordinates);
48
49          distanceMatrix[i, j] = distance;
50          distanceMatrix[j, i] = distance;
51        }
52      }
53
54      return distanceMatrix;
55    }
56
57    public static double GetDistance(int start, int end,
58      DoubleMatrix coordinates, IParameter distanceMatrix, BoolValue useDistanceMatrix) {
59      double distance = 0.0;
60
61      if (useDistanceMatrix.Value) {
62        if (distanceMatrix is IValueLookupParameter<DoubleMatrix>) {
63          if ((distanceMatrix as IValueLookupParameter<DoubleMatrix>).Value == null) {
64            (distanceMatrix as IValueLookupParameter<DoubleMatrix>).Value = CreateDistanceMatrix(coordinates);
65          }
66         
67          distance = (distanceMatrix as IValueLookupParameter<DoubleMatrix>).Value[start, end];
68        } else {
69          if (distanceMatrix.ActualValue == null) {
70            distanceMatrix.ActualValue = CreateDistanceMatrix(coordinates);
71          }
72
73          distance = (distanceMatrix.ActualValue as DoubleMatrix)[start, end];
74        }     
75      } else {
76        distance = CalculateDistance(start, end, coordinates);
77      }
78
79      return distance;
80    }
81
82    public static double GetDistance(int start, int end,
83      DoubleMatrix coordinates, DoubleMatrix distanceMatrix, BoolValue useDistanceMatrix) {
84      double distance = 0.0;
85
86      if (useDistanceMatrix.Value) {
87        distance = distanceMatrix[start, end];
88      } else {
89        distance = CalculateDistance(start, end, coordinates);
90      }
91
92      return distance;
93    }
94  }
95}
Note: See TracBrowser for help on using the repository browser.