Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPEvaluator.cs
r16453 r16462 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 using HeuristicLab.Problems.VehicleRouting.Interfaces; 28 28 using HeuristicLab.Problems.VehicleRouting.Variants; … … 30 30 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 31 31 [Item("MDCVRPEvaluator", "Represents a multi depot CVRP evaluator.")] 32 [Storable Class]32 [StorableType("E59F6449-7DA3-4842-A0D8-C5BECC965642")] 33 33 public class MDCVRPEvaluator : VRPEvaluator { 34 34 public ILookupParameter<DoubleValue> OverloadParameter { … … 135 135 136 136 [StorableConstructor] 137 protected MDCVRPEvaluator( bool deserializing) : base(deserializing) { }137 protected MDCVRPEvaluator(StorableConstructorFlag _) : base(_) { } 138 138 139 139 public MDCVRPEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("MDCVRPProblemInstance", "Represents a multi depot CVRP instance.")] 37 [Storable Class]37 [StorableType("19F824AB-6C66-4FB6-88D5-3C163BF789E6")] 38 38 public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance { 39 39 protected IValueParameter<DoubleArray> CapacityParameter { … … 85 85 86 86 [StorableConstructor] 87 protected MDCVRPProblemInstance( bool deserializing) : base(deserializing) { }87 protected MDCVRPProblemInstance(StorableConstructorFlag _) : base(_) { } 88 88 89 89 public MDCVRPProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWEvaluator.cs
r16453 r16462 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Problems.VehicleRouting.Variants; … … 32 32 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 33 33 [Item("MDCVRPPDTWEvaluator", "Represents a multi depot CVRPPDTW evaluator.")] 34 [Storable Class]34 [StorableType("4C4D6FA1-A16B-47B5-99D8-7F3D7C3D286A")] 35 35 public class MDCVRPPDTWEvaluator : MDCVRPTWEvaluator { 36 36 public ILookupParameter<IntValue> PickupViolationsParameter { … … 324 324 325 325 [StorableConstructor] 326 protected MDCVRPPDTWEvaluator( bool deserializing) : base(deserializing) { }326 protected MDCVRPPDTWEvaluator(StorableConstructorFlag _) : base(_) { } 327 327 328 328 public MDCVRPPDTWEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("MDCVRPPDTWProblemInstance", "Represents a multi depot CVRPPDTW instance.")] 37 [Storable Class]37 [StorableType("A77F180E-8DE5-43E2-B9A4-313B5E2C5A06")] 38 38 public class MDCVRPPDTWProblemInstance : MDCVRPTWProblemInstance, IPickupAndDeliveryProblemInstance { 39 39 protected IValueParameter<IntArray> PickupDeliveryLocationParameter { … … 91 91 92 92 [StorableConstructor] 93 protected MDCVRPPDTWProblemInstance( bool deserializing) : base(deserializing) { }93 protected MDCVRPPDTWProblemInstance(StorableConstructorFlag _) : base(_) { } 94 94 95 95 public MDCVRPPDTWProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWEvaluator.cs
r16453 r16462 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 29 using HeuristicLab.Problems.VehicleRouting.Variants; … … 31 31 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 32 32 [Item("MDCVRPTWEvaluator", "Represents a multi depot CVRPTW evaluator.")] 33 [Storable Class]33 [StorableType("D3E40FC1-17FA-4C0E-AD1A-10C98ACCE27D")] 34 34 public class MDCVRPTWEvaluator : MDCVRPEvaluator { 35 35 public ILookupParameter<DoubleValue> TardinessParameter { … … 275 275 276 276 [StorableConstructor] 277 protected MDCVRPTWEvaluator( bool deserializing) : base(deserializing) { }277 protected MDCVRPTWEvaluator(StorableConstructorFlag _) : base(_) { } 278 278 279 279 public MDCVRPTWEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("MDCVRPTWProblemInstance", "Represents a multi depot CVRPTW instance.")] 37 [Storable Class]37 [StorableType("ADC41AA7-EFA6-46FB-BBA7-DC08AE0A26F0")] 38 38 public class MDCVRPTWProblemInstance : MDCVRPProblemInstance, ITimeWindowedProblemInstance { 39 39 protected IValueParameter<DoubleArray> ReadyTimeParameter { … … 107 107 108 108 [StorableConstructor] 109 protected MDCVRPTWProblemInstance( bool deserializing) : base(deserializing) { }109 protected MDCVRPTWProblemInstance(StorableConstructorFlag _) : base(_) { } 110 110 111 111 public MDCVRPTWProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPEvaluator.cs
r16453 r16462 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Fossil; 25 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 26 … … 28 28 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 29 29 [Item("SingleDepotVRPEvaluator", "Represents a single depot VRP evaluator.")] 30 [Storable Class]30 [StorableType("AFC33483-2E8A-4469-8216-1F4FEE0AEB51")] 31 31 public class MultiDepotVRPEvaluator : VRPEvaluator { 32 32 protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) { … … 80 80 81 81 [StorableConstructor] 82 protected MultiDepotVRPEvaluator( bool deserializing) : base(deserializing) { }82 protected MultiDepotVRPEvaluator(StorableConstructorFlag _) : base(_) { } 83 83 84 84 public MultiDepotVRPEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("MultiDepotVRPProblemInstance", "Represents a multi depot VRP instance.")] 37 [Storable Class]37 [StorableType("20788CA4-8AA0-4A57-8118-0D7C3FEF1AA4")] 38 38 public class MultiDepotVRPProblemInstance : VRPProblemInstance, IMultiDepotProblemInstance { 39 39 protected IValueParameter<IntValue> DepotsParameter { … … 174 174 175 175 [StorableConstructor] 176 protected MultiDepotVRPProblemInstance( bool deserializing) : base(deserializing) { }176 protected MultiDepotVRPProblemInstance(StorableConstructorFlag _) : base(_) { } 177 177 protected MultiDepotVRPProblemInstance(MultiDepotVRPProblemInstance original, Cloner cloner) 178 178 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.cs
r16453 r16462 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 using HeuristicLab.Problems.VehicleRouting.Interfaces; 28 28 using HeuristicLab.Problems.VehicleRouting.Variants; … … 30 30 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 31 31 [Item("CVRPEvaluator", "Represents a single depot CVRP evaluator.")] 32 [Storable Class]32 [StorableType("7253D8EC-5F91-4E5F-99E0-45AF10AEA9AF")] 33 33 public class CVRPEvaluator : VRPEvaluator { 34 34 public ILookupParameter<DoubleValue> OverloadParameter { … … 140 140 141 141 [StorableConstructor] 142 protected CVRPEvaluator( bool deserializing) : base(deserializing) { }142 protected CVRPEvaluator(StorableConstructorFlag _) : base(_) { } 143 143 144 144 public CVRPEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("CVRPProblemInstance", "Represents a single depot CVRP instance.")] 37 [Storable Class]37 [StorableType("CBE1D39B-9BBE-4119-801B-32739D1E8DEE")] 38 38 public class CVRPProblemInstance : SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance { 39 39 protected IValueParameter<DoubleValue> CapacityParameter { … … 85 85 86 86 [StorableConstructor] 87 protected CVRPProblemInstance( bool deserializing) : base(deserializing) { }87 protected CVRPProblemInstance(StorableConstructorFlag _) : base(_) { } 88 88 89 89 public CVRPProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluator.cs
r16453 r16462 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 using HeuristicLab.Problems.VehicleRouting.Interfaces; 30 30 using HeuristicLab.Problems.VehicleRouting.Variants; … … 32 32 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 33 33 [Item("CVRPPDTWEvaluator", "Represents a single depot CVRPPDTW evaluator.")] 34 [Storable Class]34 [StorableType("6324F32C-727E-4593-BB21-4625755F844A")] 35 35 public class CVRPPDTWEvaluator : CVRPTWEvaluator { 36 36 public ILookupParameter<IntValue> PickupViolationsParameter { … … 306 306 307 307 [StorableConstructor] 308 protected CVRPPDTWEvaluator( bool deserializing) : base(deserializing) { }308 protected CVRPPDTWEvaluator(StorableConstructorFlag _) : base(_) { } 309 309 310 310 public CVRPPDTWEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("CVRPPDTWProblemInstance", "Represents a single depot CVRPPDTW instance.")] 37 [Storable Class]37 [StorableType("6DC3F907-9CDC-4CDA-8C84-AC9ED248DB3B")] 38 38 public class CVRPPDTWProblemInstance : CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance { 39 39 protected IValueParameter<IntArray> PickupDeliveryLocationParameter { … … 91 91 92 92 [StorableConstructor] 93 protected CVRPPDTWProblemInstance( bool deserializing) : base(deserializing) { }93 protected CVRPPDTWProblemInstance(StorableConstructorFlag _) : base(_) { } 94 94 95 95 public CVRPPDTWProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluator.cs
r16453 r16462 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 29 using HeuristicLab.Problems.VehicleRouting.Variants; … … 31 31 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 32 32 [Item("CVRPTWEvaluator", "Represents a single depot CVRPTW evaluator.")] 33 [Storable Class]33 [StorableType("BB258008-7ECC-488A-BB2A-B38AE0023CFD")] 34 34 public class CVRPTWEvaluator : CVRPEvaluator { 35 35 public ILookupParameter<DoubleValue> TardinessParameter { … … 259 259 260 260 [StorableConstructor] 261 protected CVRPTWEvaluator( bool deserializing) : base(deserializing) { }261 protected CVRPTWEvaluator(StorableConstructorFlag _) : base(_) { } 262 262 263 263 public CVRPTWEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.PluginInfrastructure; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 35 35 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 36 36 [Item("CVRPTWProblemInstance", "Represents a single depot CVRPTW instance.")] 37 [Storable Class]37 [StorableType("2138BE6C-058E-4003-8578-55E8DE3706C7")] 38 38 public class CVRPTWProblemInstance : CVRPProblemInstance, ITimeWindowedProblemInstance { 39 39 protected IValueParameter<DoubleArray> ReadyTimeParameter { … … 107 107 108 108 [StorableConstructor] 109 protected CVRPTWProblemInstance( bool deserializing) : base(deserializing) { }109 protected CVRPTWProblemInstance(StorableConstructorFlag _) : base(_) { } 110 110 111 111 public CVRPTWProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPEvaluator.cs
r16453 r16462 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Fossil; 25 25 using HeuristicLab.Problems.VehicleRouting.Interfaces; 26 26 … … 28 28 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 29 29 [Item("SingleDepotVRPEvaluator", "Represents a single depot VRP evaluator.")] 30 [Storable Class]30 [StorableType("1E0DECD9-54BF-4F69-A743-228C481749A0")] 31 31 public class SingleDepotVRPEvaluator : VRPEvaluator { 32 32 protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) { … … 84 84 85 85 [StorableConstructor] 86 protected SingleDepotVRPEvaluator( bool deserializing) : base(deserializing) { }86 protected SingleDepotVRPEvaluator(StorableConstructorFlag _) : base(_) { } 87 87 88 88 public SingleDepotVRPEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPProblemInstance.cs
r16453 r16462 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Optimization; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 using HeuristicLab.PluginInfrastructure; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 33 33 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 34 34 [Item("SingleDepotVRPProblemInstance", "Represents a single depot VRP instance.")] 35 [Storable Class]35 [StorableType("A45435DD-F615-45C6-8456-5A49EE5D3C8E")] 36 36 public class SingleDepotVRPProblemInstance : VRPProblemInstance, ISingleDepotProblemInstance { 37 37 protected override IEnumerable<IOperator> GetOperators() { … … 64 64 65 65 [StorableConstructor] 66 protected SingleDepotVRPProblemInstance( bool deserializing) : base(deserializing) { }66 protected SingleDepotVRPProblemInstance(StorableConstructorFlag _) : base(_) { } 67 67 68 68 public SingleDepotVRPProblemInstance() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.cs
r16453 r16462 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 using HeuristicLab.Problems.VehicleRouting.Encodings; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 30 30 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 31 31 [Item("VRPEvaluator", "Represents a VRP evaluator.")] 32 [Storable Class]32 [StorableType("164315D4-BCCF-4A79-B75B-11A49C56C5E1")] 33 33 public abstract class VRPEvaluator : VRPOperator, IVRPEvaluator { 34 34 public ILookupParameter<IVRPEncoding> VRPToursParameter { … … 54 54 55 55 [StorableConstructor] 56 protected VRPEvaluator( bool deserializing) : base(deserializing) { }56 protected VRPEvaluator(StorableConstructorFlag _) : base(_) { } 57 57 58 58 public VRPEvaluator() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs
r16453 r16462 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 31 31 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 33 33 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 34 34 [Item("VRPProblemInstance", "Represents a VRP instance.")] 35 [Storable Class]35 [StorableType("9A6CCE89-A4B6-4FA3-A150-181FC315B713")] 36 36 public abstract class VRPProblemInstance : ParameterizedNamedItem, IVRPProblemInstance, IStatefulItem { 37 37 IVRPEvaluator moveEvaluator; … … 250 250 251 251 [StorableConstructor] 252 protected VRPProblemInstance( bool deserializing) : base(deserializing) { }252 protected VRPProblemInstance(StorableConstructorFlag _) : base(_) { } 253 253 254 254 public VRPProblemInstance()
Note: See TracChangeset
for help on using the changeset viewer.