[4232] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4232] | 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.Globalization;
|
---|
| 24 | using System.IO;
|
---|
| 25 |
|
---|
| 26 | namespace HeuristicLab.Problems.VehicleRouting {
|
---|
| 27 | /// <summary>
|
---|
[4317] | 28 | /// Parses a *.vrp file in TSPLIB format and extracts its information about a VRP.
|
---|
[4232] | 29 | /// </summary>
|
---|
| 30 | public class TSPLIBParser {
|
---|
| 31 | #region Inner Enum TSPLIBEdgeWeightType
|
---|
| 32 | public enum TSPLIBEdgeWeightType {
|
---|
| 33 | UNDEFINED,
|
---|
| 34 | EUC_2D,
|
---|
| 35 | GEO
|
---|
| 36 | }
|
---|
| 37 | #endregion
|
---|
| 38 |
|
---|
| 39 | private const int EOF = 0;
|
---|
| 40 | private const int NAME = 1;
|
---|
| 41 | private const int TYPE = 2;
|
---|
| 42 | private const int COMMENT = 3;
|
---|
| 43 | private const int DIM = 4;
|
---|
| 44 | private const int WEIGHTTYPE = 5;
|
---|
[4317] | 45 | private const int WEIGHTFORMAT = 11;
|
---|
[4232] | 46 | private const int NODETYPE = 6;
|
---|
| 47 | private const int NODESECTION = 7;
|
---|
| 48 | private const int CAPACITY = 8;
|
---|
[4317] | 49 | private const int DISTANCE = 12;
|
---|
| 50 | private const int VEHICLES = 13;
|
---|
[4232] | 51 | private const int DEPOTSECTION = 9;
|
---|
| 52 | private const int DEMANDSECTION = 10;
|
---|
| 53 |
|
---|
| 54 | private StreamReader source;
|
---|
[4317] | 55 | private bool alternateFormat;
|
---|
| 56 | CultureInfo culture = new CultureInfo("en-US");
|
---|
[4232] | 57 |
|
---|
| 58 | private string name;
|
---|
| 59 | /// <summary>
|
---|
[4317] | 60 | /// Gets the name of the parsed VRP.
|
---|
[4232] | 61 | /// </summary>
|
---|
| 62 | public string Name {
|
---|
| 63 | get { return name; }
|
---|
| 64 | }
|
---|
| 65 | private string comment;
|
---|
| 66 | /// <summary>
|
---|
[4317] | 67 | /// Gets the comment of the parsed VRP.
|
---|
[4232] | 68 | /// </summary>
|
---|
| 69 | public string Comment {
|
---|
| 70 | get { return comment; }
|
---|
| 71 | }
|
---|
| 72 | private double[,] vertices;
|
---|
| 73 | /// <summary>
|
---|
[4317] | 74 | /// Gets the vertices of the parsed VRP.
|
---|
[4232] | 75 | /// </summary>
|
---|
| 76 | public double[,] Vertices {
|
---|
| 77 | get { return vertices; }
|
---|
| 78 | }
|
---|
| 79 | private TSPLIBEdgeWeightType weightType;
|
---|
| 80 | /// <summary>
|
---|
[4317] | 81 | /// Gets the weight format of the parsed VRP.
|
---|
[4232] | 82 | /// </summary>
|
---|
| 83 | public TSPLIBEdgeWeightType WeightType {
|
---|
| 84 | get { return weightType; }
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | private double capacity;
|
---|
| 88 | public double Capacity {
|
---|
| 89 | get {
|
---|
| 90 | return capacity;
|
---|
| 91 | }
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[4317] | 94 | private double distance;
|
---|
| 95 | public double Distance {
|
---|
| 96 | get {
|
---|
| 97 | return distance;
|
---|
| 98 | }
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | private int vehicles;
|
---|
| 102 | public int Vehicles {
|
---|
| 103 | get {
|
---|
| 104 | return vehicles;
|
---|
| 105 | }
|
---|
| 106 | }
|
---|
| 107 |
|
---|
[4232] | 108 | private int depot;
|
---|
| 109 | public int Depot {
|
---|
| 110 | get {
|
---|
| 111 | return depot;
|
---|
| 112 | }
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | private double[] demands;
|
---|
| 116 | public double[] Demands {
|
---|
| 117 | get {
|
---|
| 118 | return demands;
|
---|
| 119 | }
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | /// <summary>
|
---|
| 123 | /// Initializes a new instance of <see cref="TSPLIBParser"/> with the given <paramref name="path"/>.
|
---|
| 124 | /// </summary>
|
---|
[4317] | 125 | /// <exception cref="ArgumentException">Thrown if the input file is not a TSPLIB TSP file (*.vrp)
|
---|
[4232] | 126 | /// </exception>
|
---|
[4317] | 127 | /// <param name="path">The path where the VRP is stored.</param>
|
---|
[4232] | 128 | public TSPLIBParser(String path) {
|
---|
| 129 | if (!path.EndsWith(".vrp"))
|
---|
[4317] | 130 | throw new ArgumentException("Input file has to be a TSPLIB CVRP file (*.vrp, *.txt).");
|
---|
[4232] | 131 |
|
---|
[4317] | 132 | source = null;
|
---|
[4232] | 133 | name = path;
|
---|
| 134 | comment = string.Empty;
|
---|
| 135 | vertices = null;
|
---|
| 136 | weightType = TSPLIBEdgeWeightType.UNDEFINED;
|
---|
| 137 | capacity = -1;
|
---|
[4317] | 138 | distance = -1;
|
---|
| 139 | vehicles = -1;
|
---|
[4232] | 140 | depot = -1;
|
---|
| 141 | demands = null;
|
---|
[4317] | 142 | alternateFormat = false;
|
---|
[4232] | 143 | }
|
---|
| 144 |
|
---|
| 145 | /// <summary>
|
---|
[4317] | 146 | /// Reads the TSPLIB VRP file and parses the elements.
|
---|
[4232] | 147 | /// </summary>
|
---|
| 148 | /// <exception cref="InvalidDataException">Thrown if the file has an invalid format or contains invalid data.</exception>
|
---|
| 149 | public void Parse() {
|
---|
[4317] | 150 | using (source = new StreamReader(name)) {
|
---|
| 151 | int section = -1;
|
---|
| 152 | string str = null;
|
---|
| 153 | bool typeIsChecked = false;
|
---|
| 154 | bool weightTypeIsChecked = false;
|
---|
| 155 | bool weightFormatIsChecked = false;
|
---|
[4232] | 156 |
|
---|
[4317] | 157 | do {
|
---|
| 158 | str = source.ReadLine();
|
---|
| 159 | section = GetSection(str);
|
---|
[4232] | 160 |
|
---|
[4317] | 161 | if (section != -1) {
|
---|
| 162 | switch (section) {
|
---|
| 163 | case NAME:
|
---|
| 164 | ReadName(str);
|
---|
| 165 | break;
|
---|
| 166 | case TYPE:
|
---|
| 167 | CheckType(str);
|
---|
| 168 | typeIsChecked = true;
|
---|
| 169 | break;
|
---|
| 170 | case COMMENT:
|
---|
| 171 | ReadComment(str);
|
---|
| 172 | break;
|
---|
| 173 | case DIM:
|
---|
| 174 | InitArrays(str);
|
---|
| 175 | break;
|
---|
| 176 | case WEIGHTTYPE:
|
---|
| 177 | ReadWeightType(str);
|
---|
| 178 | weightTypeIsChecked = true;
|
---|
| 179 | break;
|
---|
| 180 | case WEIGHTFORMAT:
|
---|
| 181 | ReadWeightFormat(str);
|
---|
| 182 | weightFormatIsChecked = true;
|
---|
| 183 | break;
|
---|
| 184 | case NODETYPE:
|
---|
| 185 | CheckNodeType(str);
|
---|
| 186 | break;
|
---|
| 187 | case NODESECTION:
|
---|
| 188 | ReadVertices();
|
---|
| 189 | break;
|
---|
| 190 | case CAPACITY:
|
---|
| 191 | ReadCapacity(str);
|
---|
| 192 | break;
|
---|
| 193 | case DISTANCE:
|
---|
| 194 | ReadDistance(str);
|
---|
| 195 | break;
|
---|
| 196 | case VEHICLES:
|
---|
| 197 | ReadVehicles(str);
|
---|
| 198 | break;
|
---|
| 199 | case DEPOTSECTION:
|
---|
| 200 | ReadDepot();
|
---|
| 201 | break;
|
---|
| 202 | case DEMANDSECTION:
|
---|
| 203 | ReadDemands();
|
---|
| 204 | break;
|
---|
| 205 | }
|
---|
[4232] | 206 | }
|
---|
[4317] | 207 | } while (!((section == EOF) || (str == null)));
|
---|
[4232] | 208 |
|
---|
[4317] | 209 | if (!typeIsChecked || !weightTypeIsChecked ||
|
---|
| 210 | (alternateFormat && !weightFormatIsChecked) ||
|
---|
| 211 | weightType == TSPLIBEdgeWeightType.UNDEFINED)
|
---|
| 212 | throw new InvalidDataException("Input file does not contain format or edge weight format information.");
|
---|
| 213 | }
|
---|
| 214 | source = null;
|
---|
[4232] | 215 | }
|
---|
| 216 |
|
---|
| 217 | private int GetSection(string str) {
|
---|
| 218 | if (str == null)
|
---|
| 219 | return EOF;
|
---|
| 220 |
|
---|
| 221 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 222 | if (tokens.Length == 0)
|
---|
| 223 | return -1;
|
---|
| 224 |
|
---|
| 225 | string token = tokens[0].Trim();
|
---|
| 226 | if (token.Equals("eof", StringComparison.OrdinalIgnoreCase))
|
---|
| 227 | return EOF;
|
---|
| 228 | if (token.Equals("name", StringComparison.OrdinalIgnoreCase))
|
---|
| 229 | return NAME;
|
---|
| 230 | if (token.Equals("type", StringComparison.OrdinalIgnoreCase))
|
---|
| 231 | return TYPE;
|
---|
| 232 | if (token.Equals("comment", StringComparison.OrdinalIgnoreCase))
|
---|
| 233 | return COMMENT;
|
---|
| 234 | if (token.Equals("dimension", StringComparison.OrdinalIgnoreCase))
|
---|
| 235 | return DIM;
|
---|
| 236 | if (token.Equals("edge_weight_type", StringComparison.OrdinalIgnoreCase))
|
---|
| 237 | return WEIGHTTYPE;
|
---|
[4317] | 238 | if (token.Equals("edge_weight_format", StringComparison.OrdinalIgnoreCase))
|
---|
| 239 | return WEIGHTFORMAT;
|
---|
[4232] | 240 | if (token.Equals("node_coord_type", StringComparison.OrdinalIgnoreCase))
|
---|
| 241 | return NODETYPE;
|
---|
| 242 | if (token.Equals("node_coord_section", StringComparison.OrdinalIgnoreCase))
|
---|
| 243 | return NODESECTION;
|
---|
| 244 | if (token.Equals("capacity", StringComparison.OrdinalIgnoreCase))
|
---|
| 245 | return CAPACITY;
|
---|
[4317] | 246 | if (token.Equals("distance", StringComparison.OrdinalIgnoreCase))
|
---|
| 247 | return DISTANCE;
|
---|
| 248 | if (token.Equals("vehicles", StringComparison.OrdinalIgnoreCase))
|
---|
| 249 | return VEHICLES;
|
---|
[4232] | 250 | if (token.Equals("depot_section", StringComparison.OrdinalIgnoreCase))
|
---|
| 251 | return DEPOTSECTION;
|
---|
| 252 | if (token.Equals("demand_section", StringComparison.OrdinalIgnoreCase))
|
---|
| 253 | return DEMANDSECTION;
|
---|
| 254 |
|
---|
| 255 | return -1;
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | private void ReadName(string str) {
|
---|
| 259 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 260 | name = tokens[tokens.Length - 1].Trim();
|
---|
| 261 | }
|
---|
| 262 |
|
---|
| 263 | private void CheckType(string str) {
|
---|
| 264 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 265 |
|
---|
| 266 | string type = tokens[tokens.Length - 1].Trim();
|
---|
| 267 | if (!type.Equals("cvrp", StringComparison.OrdinalIgnoreCase))
|
---|
[4317] | 268 | throw new InvalidDataException("Input file format is not \"CVRP\"");
|
---|
[4232] | 269 | }
|
---|
| 270 |
|
---|
| 271 | private void ReadComment(string str) {
|
---|
| 272 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 273 | comment = tokens[tokens.Length - 1].Trim();
|
---|
| 274 | }
|
---|
| 275 |
|
---|
| 276 | private void InitArrays(string str) {
|
---|
| 277 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 278 | string dimension = tokens[tokens.Length - 1].Trim();
|
---|
| 279 |
|
---|
| 280 | int dim = Int32.Parse(dimension);
|
---|
| 281 | vertices = new double[dim, 2];
|
---|
| 282 | demands = new double[dim];
|
---|
| 283 | }
|
---|
| 284 |
|
---|
| 285 | private void ReadWeightType(string str) {
|
---|
| 286 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 287 | string type = tokens[tokens.Length - 1].Trim();
|
---|
| 288 |
|
---|
| 289 | if (type.Equals("euc_2d", StringComparison.OrdinalIgnoreCase))
|
---|
| 290 | weightType = TSPLIBEdgeWeightType.EUC_2D;
|
---|
| 291 | else if (type.Equals("geo", StringComparison.OrdinalIgnoreCase))
|
---|
| 292 | weightType = TSPLIBEdgeWeightType.GEO;
|
---|
[4317] | 293 | else if (type.Equals("function", StringComparison.OrdinalIgnoreCase)) {
|
---|
| 294 | weightType = TSPLIBEdgeWeightType.UNDEFINED;
|
---|
| 295 | alternateFormat = true;
|
---|
| 296 | } else
|
---|
| 297 | throw new InvalidDataException("Input file contains an unsupported edge weight format (only \"EUC_2D\" and \"GEO\" are supported).");
|
---|
| 298 | }
|
---|
| 299 |
|
---|
| 300 | private void ReadWeightFormat(string str) {
|
---|
| 301 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 302 | string format = tokens[tokens.Length - 1].Trim();
|
---|
| 303 |
|
---|
| 304 | if (alternateFormat && format.Equals("euc_2d", StringComparison.OrdinalIgnoreCase))
|
---|
| 305 | weightType = TSPLIBEdgeWeightType.EUC_2D;
|
---|
| 306 | else if (format.Equals("geo", StringComparison.OrdinalIgnoreCase))
|
---|
| 307 | weightType = TSPLIBEdgeWeightType.GEO;
|
---|
[4232] | 308 | else
|
---|
[4317] | 309 | throw new InvalidDataException("Input file contains an unsupported edge weight format.");
|
---|
[4232] | 310 | }
|
---|
| 311 |
|
---|
| 312 | private void CheckNodeType(string str) {
|
---|
| 313 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 314 | string type = tokens[tokens.Length - 1].Trim();
|
---|
| 315 |
|
---|
| 316 | if (!type.Equals("twod_coords", StringComparison.OrdinalIgnoreCase))
|
---|
[4317] | 317 | throw new InvalidDataException("Input file contains an unsupported node coordinates format (only \"TWOD_COORDS\" is supported).");
|
---|
[4232] | 318 | }
|
---|
| 319 |
|
---|
| 320 | private void ReadVertices() {
|
---|
| 321 | if (vertices == null)
|
---|
| 322 | throw new InvalidDataException("Input file does not contain dimension information.");
|
---|
| 323 |
|
---|
| 324 | for (int i = 0; i < (vertices.Length / 2); i++) {
|
---|
[4317] | 325 | if (!(alternateFormat && i == 0)) {
|
---|
| 326 | string str = source.ReadLine();
|
---|
| 327 | string[] tokens = str.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
|
---|
[4232] | 328 |
|
---|
[4317] | 329 | if (tokens.Length != 3)
|
---|
| 330 | throw new InvalidDataException("Input file contains invalid node coordinates.");
|
---|
[4232] | 331 |
|
---|
[4317] | 332 | vertices[i, 0] = double.Parse(tokens[1], culture.NumberFormat);
|
---|
| 333 | vertices[i, 1] = double.Parse(tokens[2], culture.NumberFormat);
|
---|
| 334 | }
|
---|
[4232] | 335 | }
|
---|
| 336 | }
|
---|
| 337 |
|
---|
| 338 | private void ReadCapacity(string str) {
|
---|
| 339 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
[4317] | 340 | capacity = double.Parse(tokens[tokens.Length - 1].Trim(), culture.NumberFormat);
|
---|
[4232] | 341 | }
|
---|
| 342 |
|
---|
[4317] | 343 | private void ReadDistance(string str) {
|
---|
| 344 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 345 | distance = double.Parse(tokens[tokens.Length - 1].Trim(), culture.NumberFormat);
|
---|
| 346 | }
|
---|
| 347 |
|
---|
| 348 | private void ReadVehicles(string str) {
|
---|
| 349 | string[] tokens = str.Split(new string[] { ":" }, StringSplitOptions.None);
|
---|
| 350 | vehicles = int.Parse(tokens[tokens.Length - 1].Trim());
|
---|
| 351 | }
|
---|
| 352 |
|
---|
[4232] | 353 | private void ReadDepot() {
|
---|
[4317] | 354 | if (alternateFormat) {
|
---|
| 355 | string[] tokens;
|
---|
| 356 | do {
|
---|
| 357 | string str = source.ReadLine();
|
---|
| 358 | tokens = str.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
|
---|
[4232] | 359 |
|
---|
[4317] | 360 | if (tokens.Length == 2) {
|
---|
| 361 | vertices[0, 0] = double.Parse(tokens[0], culture.NumberFormat);
|
---|
| 362 | vertices[0, 1] = double.Parse(tokens[1], culture.NumberFormat);
|
---|
| 363 | depot = 1;
|
---|
| 364 | }
|
---|
| 365 | } while(tokens.Length == 2);
|
---|
| 366 | } else {
|
---|
| 367 | int read;
|
---|
| 368 | do {
|
---|
| 369 | string str = source.ReadLine();
|
---|
| 370 | read = int.Parse(str);
|
---|
| 371 | if (read != -1)
|
---|
| 372 | depot = read;
|
---|
| 373 | } while (read != -1);
|
---|
| 374 | }
|
---|
[4232] | 375 | }
|
---|
| 376 |
|
---|
| 377 | private void ReadDemands() {
|
---|
| 378 | if (demands == null)
|
---|
| 379 | throw new InvalidDataException("Input file does not contain dimension information.");
|
---|
| 380 |
|
---|
| 381 | for (int i = 0; i < demands.Length; i++) {
|
---|
[4317] | 382 | if (!(alternateFormat && i == 0)) {
|
---|
| 383 | string str = source.ReadLine();
|
---|
| 384 | string[] tokens = str.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
|
---|
[4232] | 385 |
|
---|
[4317] | 386 | if (tokens.Length != 2)
|
---|
| 387 | throw new InvalidDataException("Input file contains invalid demands.");
|
---|
[4232] | 388 |
|
---|
[4317] | 389 | int index = int.Parse(tokens[0]);
|
---|
| 390 | double value = double.Parse(tokens[1]);
|
---|
[4232] | 391 |
|
---|
[4317] | 392 | if (alternateFormat)
|
---|
| 393 | demands[index] = value;
|
---|
| 394 | else
|
---|
| 395 | demands[index - 1] = value;
|
---|
| 396 | } else {
|
---|
| 397 | demands[0] = 0;
|
---|
| 398 | }
|
---|
[4232] | 399 | }
|
---|
| 400 | }
|
---|
| 401 | }
|
---|
| 402 | }
|
---|