Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/18 16:54:35 (6 years ago)
Author:
fholzing
Message:

#2864: Added "documentation" for FSSPData.cs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/FSSPData.cs

    r16008 r16012  
    2323namespace HeuristicLab.Problems.Instances {
    2424  public class FSSPData {
     25    /// <summary>
     26    /// The name of the instance.
     27    /// </summary>
    2528    public string Name { get; set; }
     29    /// <summary>
     30    /// The description of the instance.
     31    /// </summary>
    2632    public string Description { get; set; }
     33    /// <summary>
     34    /// The count of jobs.
     35    /// </summary>
    2736    public int Jobs { get; set; }
     37    /// <summary>
     38    /// The count of machines.
     39    /// </summary>
    2840    public int Machines { get; set; }
     41    /// <summary>
     42    /// The processing times for each combination of machine/job.
     43    /// </summary>
    2944    public double[,] ProcessingTimes { get; set; }
     45    /// <summary>
     46    /// The best-known schedule.
     47    /// </summary>
    3048    public int[] BestKnownSchedule { get; set; }
     49    /// <summary>
     50    /// The quality of the best-known schedule.
     51    /// </summary>
    3152    public double? BestKnownQuality { get; set; }
    3253  }
Note: See TracChangeset for help on using the changeset viewer.