Changeset 17097 for stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWEvaluator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 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() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPPDTW/MDCVRPPDTWProblemInstance.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 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() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWEvaluator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 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() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/MultiDepotVRP/MDCVRP/MDCVRPTW/MDCVRPTWProblemInstance.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 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() {
Note: See TracChangeset
for help on using the changeset viewer.