Changeset 11428 for trunk/sources/HeuristicLab.Problems.Instances
- Timestamp:
- 10/08/14 16:21:42 (10 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Instances/3.3/Types/VRP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances/3.3/Types/VRP/IVRPData.cs
r11171 r11428 31 31 double? BestKnownQuality { get; set; } 32 32 int[][] BestKnownTour { get; set; } 33 int[] BestKnownTourVehicleAssignment { get; set; } 33 34 } 34 35 } -
trunk/sources/HeuristicLab.Problems.Instances/3.3/Types/VRP/VRPData.cs
r11285 r11428 78 78 public int[][] BestKnownTour { get; set; } 79 79 /// <summary> 80 /// Optional! Specifies the used vehicle for a given tour. 81 /// </summary> 82 public int[] BestKnownTourVehicleAssignment { get; set; } 83 /// <summary> 80 84 /// Optional! The quality of the best-known solution. 81 85 /// </summary>
Note: See TracChangeset
for help on using the changeset viewer.