#region License Information /* HeuristicLab * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; namespace HeuristicLab.Problems.Instances { /// /// Describes instances of the Traveling Salesman Problem (TSP). /// public class TSPData { /// /// The name of the instance /// public string Name { get; set; } /// /// Optional! The description of the instance /// public string Description { get; set; } /// /// The number of cities. /// public int Dimension { get; set; } /// /// Specifies the distance measure that is to be used. /// public DistanceMeasure DistanceMeasure { get; set; } /// /// Optional! The distances are given in form of a distance matrix. /// /// /// Either this property or needs to be specified. /// public double[,] Distances { get; set; } /// /// Optional! A a matrix of dimension [N, 2] matrix where each row is one of the cities /// and the colmns represent x and y coordinates respectively. /// /// /// Either this property or needs to be specified. /// /// If no distance matrix is given, the distances have to be calculated by the /// specified distance measure. If a distance matrix is given in addtion to the /// coordinates, the distance matrix takes precedence and the coordinates are /// for display only. /// public double[,] Coordinates { get; set; } /// /// Optional! The best-known tour in path-encoding. /// public int[] BestKnownTour { get; set; } /// /// Optional! The quality of the best-known tour. /// public double? BestKnownQuality { get; set; } /// /// If only the coordinates are given, can calculate the distance matrix. /// /// A full distance matrix between all cities. public double[,] GetDistanceMatrix() { return DistanceHelper.GetDistanceMatrix(DistanceMeasure, Coordinates, Distances, Dimension); } } }