Changeset 16012
- Timestamp:
- 07/24/18 16:54:35 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/FSSPData.cs
r16008 r16012 23 23 namespace HeuristicLab.Problems.Instances { 24 24 public class FSSPData { 25 /// <summary> 26 /// The name of the instance. 27 /// </summary> 25 28 public string Name { get; set; } 29 /// <summary> 30 /// The description of the instance. 31 /// </summary> 26 32 public string Description { get; set; } 33 /// <summary> 34 /// The count of jobs. 35 /// </summary> 27 36 public int Jobs { get; set; } 37 /// <summary> 38 /// The count of machines. 39 /// </summary> 28 40 public int Machines { get; set; } 41 /// <summary> 42 /// The processing times for each combination of machine/job. 43 /// </summary> 29 44 public double[,] ProcessingTimes { get; set; } 45 /// <summary> 46 /// The best-known schedule. 47 /// </summary> 30 48 public int[] BestKnownSchedule { get; set; } 49 /// <summary> 50 /// The quality of the best-known schedule. 51 /// </summary> 31 52 public double? BestKnownQuality { get; set; } 32 53 }
Note: See TracChangeset
for help on using the changeset viewer.