- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP/CVRPData.cs
r14185 r14927 25 25 /// Describes instances of the Capacitated Vehicle Routing Problem (CVRP). 26 26 /// </summary> 27 public class CVRPData : VRPData {27 public class CVRPData : VRPData { 28 28 /// <summary> 29 29 /// The capacity of the vehicles, which is the same for all (homogeneous fleet). -
branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP/CVRPTWData.cs
r14185 r14927 25 25 /// Describes instances of the Capacitated Vehicle Routing Problem with Time Windows (CVRPTW). 26 26 /// </summary> 27 public class CVRPTWData : CVRPData {27 public class CVRPTWData : CVRPData { 28 28 /// <summary> 29 29 /// The ready times of the customers and the depot -
branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP/MDCVRPData.cs
r14185 r14927 25 25 /// Describes instances of the Multi-Depot Capacitated Vehicle Routing Problem (MDCVRP). 26 26 /// </summary> 27 public class MDCVRPData : VRPData {27 public class MDCVRPData : VRPData { 28 28 /// <summary> 29 29 /// The number of depots -
branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP/MDCVRPTWData.cs
r14185 r14927 25 25 /// Describes instances of the Multi-Depot Capacitated Vehicle Routing Problem (MDCVRP). 26 26 /// </summary> 27 public class MDCVRPTWData : MDCVRPData {27 public class MDCVRPTWData : MDCVRPData { 28 28 /// <summary> 29 29 /// The ready times of the customers and the depot -
branches/PersistenceReintegration/HeuristicLab.Problems.Instances/3.3/Types/VRP/PDPTWData.cs
r14185 r14927 25 25 /// Describes instances of the Pickup and Delivery Problem with Time Windows (PDPTW). 26 26 /// </summary> 27 public class PDPTWData : CVRPTWData {27 public class PDPTWData : CVRPTWData { 28 28 /// <summary> 29 29 /// The pickup and delivery locations of the requests
Note: See TracChangeset
for help on using the changeset viewer.