- Timestamp:
- 09/06/11 14:57:26 (13 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r4376 r6711 29 29 namespace HeuristicLab.Problems.VehicleRouting.Variants { 30 30 public interface ICapacitatedProblemInstance: IVRPProblemInstance { 31 DoubleValue OverloadPenalty { get; }31 DoubleValue OverloadPenalty { get; set; } 32 32 } 33 33 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/PickupAndDelivery/IPickupAndDeliveryProblemInstance.cs
r6710 r6711 30 30 public interface IPickupAndDeliveryProblemInstance: IVRPProblemInstance { 31 31 IntArray PickupDeliveryLocation { get; } 32 DoubleValue PickupViolationPenalty { get; }32 DoubleValue PickupViolationPenalty { get; set; } 33 33 } 34 34 } -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedProblemInstance.cs
r4363 r6711 33 33 DoubleArray ServiceTime { get; } 34 34 DoubleValue TimeFactor { get; } 35 DoubleValue TardinessPenalty { get; }35 DoubleValue TardinessPenalty { get; set; } 36 36 } 37 37 }
Note: See TracChangeset
for help on using the changeset viewer.