- 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/Analyzer/BestSolution/BestVRPSolutionAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; 31 31 using HeuristicLab.Problems.VehicleRouting.ProblemInstances; … … 37 37 /// </summary> 38 38 [Item("BestVRPSolutionAnalyzer", "An operator for analyzing the best solution of Vehicle Routing Problems.")] 39 [Storable Class]39 [StorableType("42DFB4D7-0DDA-424A-9DB3-1EDAB917A26B")] 40 40 public sealed class BestVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, IGeneralVRPOperator, ISingleObjectiveOperator { 41 41 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 78 78 79 79 [StorableConstructor] 80 private BestVRPSolutionAnalyzer( bool deserializing) : base(deserializing) { }80 private BestVRPSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 81 81 82 82 public BestVRPSolutionAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/Capacitated/BestCapacitatedVRPSolutionAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; 31 31 using HeuristicLab.Problems.VehicleRouting.Variants; … … 37 37 /// </summary> 38 38 [Item("BestCapacitatedVRPSolutionAnalyzer", "An operator for analyzing the best solution of capacitated Vehicle Routing Problems.")] 39 [Storable Class]39 [StorableType("5E50BE52-E801-4F84-8070-298368FEC208")] 40 40 public sealed class BestCapacitatedVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, ICapacitatedOperator, ISingleObjectiveOperator { 41 41 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 65 65 66 66 [StorableConstructor] 67 private BestCapacitatedVRPSolutionAnalyzer( bool deserializing) : base(deserializing) { }67 private BestCapacitatedVRPSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 68 68 69 69 public BestCapacitatedVRPSolutionAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/PickupAndDelivery/BestPickupAndDeliveryVRPSolutionAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; 31 31 using HeuristicLab.Problems.VehicleRouting.Variants; … … 37 37 /// </summary> 38 38 [Item("BestPickupAndDeliveryVRPSolutionAnalyzer", "An operator for analyzing the best solution of Pickup and Delivery Routing Problems.")] 39 [Storable Class]39 [StorableType("81CA703F-038E-4D41-BB3F-25E04EC46AF9")] 40 40 public sealed class BestPickupAndDeliveryVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, IPickupAndDeliveryOperator, ISingleObjectiveOperator { 41 41 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 65 65 66 66 [StorableConstructor] 67 private BestPickupAndDeliveryVRPSolutionAnalyzer( bool deserializing) : base(deserializing) { }67 private BestPickupAndDeliveryVRPSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 68 68 69 69 public BestPickupAndDeliveryVRPSolutionAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestSolution/TimeWindowed/BestTimeWindowedVRPSolutionAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; 31 31 using HeuristicLab.Problems.VehicleRouting.Variants; … … 37 37 /// </summary> 38 38 [Item("BestTimeWindowedVRPSolutionAnalyzer", "An operator for analyzing the best solution of time windowed Vehicle Routing Problems.")] 39 [Storable Class]39 [StorableType("2804825D-064C-4AF5-970B-3F17796579D9")] 40 40 public sealed class BestTimeWindowedVRPSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer, ITimeWindowedOperator, ISingleObjectiveOperator { 41 41 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 68 68 69 69 [StorableConstructor] 70 private BestTimeWindowedVRPSolutionAnalyzer( bool deserializing) : base(deserializing) { }70 private BestTimeWindowedVRPSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 71 71 72 72 public BestTimeWindowedVRPSolutionAnalyzer()
Note: See TracChangeset
for help on using the changeset viewer.