Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPEvaluator.cs
r14185 r14927 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 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("82780d31-ea4e-4e6c-ab81-3acd76982e5d")] 33 33 public class MDCVRPEvaluator : VRPEvaluator { 34 34 public ILookupParameter<DoubleValue> OverloadParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("286688c9-1471-49dc-b8e1-396bf9ea4dab")] 38 38 public class MDCVRPProblemInstance : MultiDepotVRPProblemInstance, IHeterogenousCapacitatedProblemInstance { 39 39 protected IValueParameter<DoubleArray> CapacityParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("0b28e0cd-c983-4511-b3db-3efdb2ca03b8")] 35 35 public class MDCVRPPDTWEvaluator : MDCVRPTWEvaluator { 36 36 public ILookupParameter<IntValue> PickupViolationsParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("63ed38c0-e9d1-46ba-8409-c7f48ddb5da1")] 38 38 public class MDCVRPPDTWProblemInstance : MDCVRPTWProblemInstance, IPickupAndDeliveryProblemInstance { 39 39 protected IValueParameter<IntArray> PickupDeliveryLocationParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWEvaluator.cs
r14185 r14927 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 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("fda9bb27-c9fc-44eb-afa0-37e16a13c654")] 34 34 public class MDCVRPTWEvaluator : MDCVRPEvaluator { 35 35 public ILookupParameter<DoubleValue> TardinessParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("e5e81aef-4b70-4e10-bd86-1083b6dde463")] 38 38 public class MDCVRPTWProblemInstance : MDCVRPProblemInstance, ITimeWindowedProblemInstance { 39 39 protected IValueParameter<DoubleArray> ReadyTimeParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPEvaluator.cs
r14185 r14927 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;24 using HeuristicLab.Persistence; 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("6f8648df-39f9-4b11-a687-4024d8ff21aa")] 31 31 public class MultiDepotVRPEvaluator : VRPEvaluator { 32 32 protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MultiDepotVRPProblemInstance.cs
r14185 r14927 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;29 using HeuristicLab.Persistence; 30 30 using HeuristicLab.PluginInfrastructure; 31 31 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 34 34 namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances { 35 35 [Item("MultiDepotVRPProblemInstance", "Represents a multi depot VRP instance.")] 36 [Storable Class]36 [StorableType("413c8bd9-fd3e-460d-b407-f8e7e208890b")] 37 37 public class MultiDepotVRPProblemInstance : VRPProblemInstance, IMultiDepotProblemInstance { 38 38 protected IValueParameter<IntValue> DepotsParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPEvaluator.cs
r14185 r14927 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 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("333179e7-fe10-4244-b9e5-cf83728ebbe0")] 33 33 public class CVRPEvaluator : VRPEvaluator { 34 34 public ILookupParameter<DoubleValue> OverloadParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("68e3803a-06e3-44c4-8f7e-60db9be7e317")] 38 38 public class CVRPProblemInstance : SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance { 39 39 protected IValueParameter<DoubleValue> CapacityParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWEvaluator.cs
r14185 r14927 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("7cf3ea94-c840-4589-9586-013a513b2677")] 35 35 public class CVRPPDTWEvaluator : CVRPTWEvaluator { 36 36 public ILookupParameter<IntValue> PickupViolationsParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPPDTW/CVRPPDTWProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("0212b313-736f-4061-a4e3-c257d86d6eec")] 38 38 public class CVRPPDTWProblemInstance : CVRPTWProblemInstance, IPickupAndDeliveryProblemInstance { 39 39 protected IValueParameter<IntArray> PickupDeliveryLocationParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWEvaluator.cs
r14185 r14927 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;27 using HeuristicLab.Persistence; 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("1e312cd8-273f-40a3-aecd-8399fdf545ea")] 34 34 public class CVRPTWEvaluator : CVRPEvaluator { 35 35 public ILookupParameter<DoubleValue> TardinessParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/CVRP/CVRPTW/CVRPTWProblemInstance.cs
r14185 r14927 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;30 using HeuristicLab.Persistence; 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("d965fbe2-bb42-4a5d-9fa2-9d37b2385757")] 38 38 public class CVRPTWProblemInstance : CVRPProblemInstance, ITimeWindowedProblemInstance { 39 39 protected IValueParameter<DoubleArray> ReadyTimeParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPEvaluator.cs
r14185 r14927 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;24 using HeuristicLab.Persistence; 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("4e485963-1979-4ae9-bf33-270c70fff625")] 31 31 public class SingleDepotVRPEvaluator : VRPEvaluator { 32 32 protected override void EvaluateTour(VRPEvaluation eval, IVRPProblemInstance instance, Tour tour, IVRPEncoding solution) { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/SingleDepotVRP/SingleDepotVRPProblemInstance.cs
r14185 r14927 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Optimization; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 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("a3b5e68a-cfc3-4084-8f70-af87546c7885")] 36 36 public class SingleDepotVRPProblemInstance : VRPProblemInstance, ISingleDepotProblemInstance { 37 37 protected override IEnumerable<IOperator> GetOperators() { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.cs
r14185 r14927 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.Parameters; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 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("1645703c-2585-4b9f-8c3e-cc0e9738c0ac")] 33 33 public abstract class VRPEvaluator : VRPOperator, IVRPEvaluator { 34 34 public ILookupParameter<IVRPEncoding> VRPToursParameter { -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPProblemInstance.cs
r14482 r14927 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;29 using HeuristicLab.Persistence; 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("3ad29012-6df5-4dba-8147-81f097272a6f")] 36 36 public abstract class VRPProblemInstance : ParameterizedNamedItem, IVRPProblemInstance, IStatefulItem { 37 37 IVRPEvaluator moveEvaluator;
Note: See TracChangeset
for help on using the changeset viewer.