Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/PTSPData.cs

Last change on this file was 13484, checked in by abeham, 8 years ago

#2221: integrated PTSP into trunk

File size: 373 bytes
Line 
1
2namespace HeuristicLab.Problems.Instances {
3  /// <summary>
4  /// Describes instances of the Probabilistic Traveling Salesman Problem (PTSP).
5  /// </summary>
6  public class PTSPData : TSPData {
7    /// <summary>
8    /// The probabilities for each of the cities to appear in a route.
9    /// </summary>
10    public double[] Probabilities { get; set; }
11  }
12}
Note: See TracBrowser for help on using the repository browser.