Free cookie consent management tool by TermsFeed Policy Generator

source: branches/symbreg-factors-2650/HeuristicLab.Problems.Instances.VehicleRouting/3.4/SolomonFormat/SolomonFormatInstanceProvider.cs @ 14542

Last change on this file since 14542 was 14542, checked in by gkronber, 7 years ago

#2650: merged r14504:14533 from trunk to branch

File size: 3.4 KB
RevLine 
[7881]1#region License Information
2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[7881]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
[11455]22using System;
[14542]23using System.Globalization;
[7881]24using System.IO;
[11455]25using System.Linq;
[7881]26
27namespace HeuristicLab.Problems.Instances.VehicleRouting {
[11286]28  public abstract class SolomonFormatInstanceProvider : VRPInstanceProvider<CVRPTWData> {
29    protected override CVRPTWData LoadData(Stream stream) {
[7881]30      return LoadInstance(new SolomonParser(stream));
31    }
32
[8192]33    public override bool CanImportData {
34      get { return true; }
35    }
[11286]36    public override CVRPTWData ImportData(string path) {
[7881]37      return LoadInstance(new SolomonParser(path));
38    }
39
40    private CVRPTWData LoadInstance(SolomonParser parser) {
41      parser.Parse();
42
43      var instance = new CVRPTWData();
44
45      instance.Dimension = parser.Cities + 1;
46      instance.Coordinates = parser.Coordinates;
47      instance.Capacity = parser.Capacity;
48      instance.Demands = parser.Demands;
49      instance.DistanceMeasure = DistanceMeasure.Euclidean;
50      instance.ReadyTimes = parser.Readytimes;
51      instance.ServiceTimes = parser.Servicetimes;
52      instance.DueTimes = parser.Duetimes;
53      instance.MaximumVehicles = parser.Vehicles;
54
55      instance.Name = parser.ProblemName;
56
57      return instance;
58    }
[11455]59
60    protected override void LoadSolution(Stream stream, CVRPTWData instance) {
61      using (var reader = new StreamReader(stream)) {
62        string instanceName = ExtractValue(reader.ReadLine());
63        string authors = ExtractValue(reader.ReadLine());
64        string date = ExtractValue(reader.ReadLine());
65        string reference = ExtractValue(reader.ReadLine());
[14498]66        switch (reader.ReadLine().Trim()) { // "Solution" or "Distance"
67          case "Solution":
68            var routesQuery = from line in reader.ReadAllLines()
69                              where !string.IsNullOrEmpty(line)
70                              let tokens = ExtractValue(line).Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
71                              let stops = tokens.Select(int.Parse).Select(s => s - 1)
72                              select stops;
73            var routes = routesQuery.Select(s => s.ToArray()).ToArray();
74            instance.BestKnownTour = routes;
75            break;
76          case "Distance":
[14542]77            double quality = double.Parse(reader.ReadLine(), CultureInfo.InvariantCulture);
[14498]78            instance.BestKnownQuality = quality;
79            break;
80        }
[11455]81      }
82    }
83
84    private static string ExtractValue(string line) {
85      return line.Split(new[] { ':' }, StringSplitOptions.RemoveEmptyEntries).Last().Trim();
86    }
[7881]87  }
88}
Note: See TracBrowser for help on using the repository browser.