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