Changeset 12505 for branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.VehicleRouting/3.4/Variants
- Timestamp:
- 06/25/15 11:26:25 (9 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12442-12443,12445,12455-12458,12461,12463-12465,12470-12476,12478-12482,12485,12488,12490-12494,12496-12497,12504 -
Property
svn:global-ignores
set to
*.nuget
packages
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting merged: 12488,12504
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r12031 r12505 25 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 26 public interface ICapacitatedProblemInstance : IVRPProblemInstance { 27 DoubleValue OverloadPenalty { get; set; } 27 DoubleValue OverloadPenalty { get; } 28 DoubleValue CurrentOverloadPenalty { get; set; } 28 29 } 29 30 } -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.VehicleRouting/3.4/Variants/PickupAndDelivery/IPickupAndDeliveryProblemInstance.cs
r12031 r12505 26 26 public interface IPickupAndDeliveryProblemInstance : IVRPProblemInstance { 27 27 IntArray PickupDeliveryLocation { get; } 28 DoubleValue PickupViolationPenalty { get; set; } 28 DoubleValue PickupViolationPenalty { get; } 29 DoubleValue CurrentPickupViolationPenalty { get; set; } 29 30 30 31 int GetPickupDeliveryLocation(int city); -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.VehicleRouting/3.4/Variants/TimeWindowed/ITimeWindowedProblemInstance.cs
r12031 r12505 29 29 DoubleArray ServiceTime { get; } 30 30 DoubleValue TimeFactor { get; } 31 DoubleValue TardinessPenalty { get; set; } 31 DoubleValue TardinessPenalty { get; } 32 DoubleValue CurrentTardinessPenalty { get; set; } 32 33 } 33 34 }
Note: See TracChangeset
for help on using the changeset viewer.