Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Interpreters/CVRPInterpreter.cs @ 7871

Last change on this file since 7871 was 7871, checked in by svonolfe, 12 years ago

Added support for included TSPLib CVRP instances (#1177)

File size: 2.7 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.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Problems.Instances;
27using HeuristicLab.Problems.VehicleRouting.Interfaces;
28using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
29using HeuristicLab.Data;
30using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin;
31
32namespace HeuristicLab.Problems.VehicleRouting.Interpreters {
33  public class CVRPInterpreter: IVRPDataInterpreter<CVRPData> {
34    public VRPInstanceDescription Interpret(IVRPData data) {
35      CVRPData cvrpData = data as CVRPData;
36
37      VRPInstanceDescription result = new VRPInstanceDescription();
38      result.Name = cvrpData.Name;
39      result.Description = cvrpData.Description;
40
41      CVRPProblemInstance problem = new CVRPProblemInstance();
42      problem.Coordinates = new DoubleMatrix(cvrpData.Coordinates);
43      if (cvrpData.MaximumVehicles != null)
44        problem.Vehicles.Value = (int)cvrpData.MaximumVehicles;
45      else
46        problem.Vehicles.Value = cvrpData.Dimension - 1;
47      problem.Capacity.Value = cvrpData.Capacity;
48      problem.Demand = new DoubleArray(cvrpData.Demands);
49      if (cvrpData.DistanceMeasure != DistanceMeasure.Euclidean) {
50        problem.UseDistanceMatrix.Value = true;
51        problem.DistanceMatrix = new DoubleMatrix(cvrpData.GetDistanceMatrix());
52      }
53      result.ProblemInstance = problem;
54
55      result.BestKnownQuality = cvrpData.BestKnownQuality;
56      if (cvrpData.BestKnownTour != null) {
57        PotvinEncoding solution = new PotvinEncoding(problem);
58
59        for(int i = 0; i < cvrpData.BestKnownTour.GetLength(0); i++) {
60          Tour tour = new Tour();
61          solution.Tours.Add(tour);
62
63          foreach (int stop in cvrpData.BestKnownTour[i]) {
64            tour.Stops.Add(stop + 1);
65          }
66        }
67       
68        result.BestKnownSolution = solution;
69      }
70
71      return result;
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.