namespace HeuristicLab.Problems.Instances { /// /// Describes instances of the Probabilistic Traveling Salesman Problem (PTSP). /// public class PTSPData : TSPData { /// /// The probabilities for each of the cities to appear in a route. /// public double[] Probabilities { get; set; } } }