Changeset 14712 for branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated
- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedOperator.cs
r12012 r14712 22 22 23 23 namespace HeuristicLab.Problems.VehicleRouting.Variants { 24 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("8A476C99-D041-40B5-A4CC-30082253EDBF")] 24 25 public interface IHeterogenousCapacitatedOperator : IHomogenousCapacitatedOperator { 25 26 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Heterogenous/IHeterogenousCapacitatedProblemInstance.cs
r12012 r14712 23 23 24 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("C77C1F3B-4394-4FA6-AB05-8A8961F6CA26")] 25 26 public interface IHeterogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 27 DoubleArray Capacity { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedOperator.cs
r12012 r14712 22 22 23 23 namespace HeuristicLab.Problems.VehicleRouting.Variants { 24 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("8CD87FFF-439F-481A-90ED-BA4B407080B3")] 24 25 public interface IHomogenousCapacitatedOperator : ICapacitatedOperator { 25 26 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/Homogenous/IHomogenousCapacitatedProblemInstance.cs
r12012 r14712 23 23 24 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("52CDFAE8-14F7-4F50-8135-1E41E8D2A94F")] 25 26 public interface IHomogenousCapacitatedProblemInstance : ICapacitatedProblemInstance { 26 27 DoubleValue Capacity { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedOperator.cs
r12012 r14712 23 23 24 24 namespace HeuristicLab.Problems.VehicleRouting.Variants { 25 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("CB47FBA3-83DF-4B58-8538-510A0DC6BA13")] 25 26 public interface ICapacitatedOperator : IVRPOperator { 26 27 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Variants/Capacitated/ICapacitatedProblemInstance.cs
r12488 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Variants { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("B041234E-D173-4B69-8AA7-504C0B651DCE")] 26 27 public interface ICapacitatedProblemInstance : IVRPProblemInstance { 27 28 DoubleValue OverloadPenalty { get; }
Note: See TracChangeset
for help on using the changeset viewer.