- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/BestAverageWorstVRPToursAnalyzer.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. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; … … 38 38 /// </summary> 39 39 [Item("BestAverageWorstVRPToursAnalyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [Storable Class]40 [StorableType("5DF1280C-5FEB-451E-8132-168E515CF47D")] 41 41 public sealed class BestAverageWorstVRPToursAnalyzer : AlgorithmOperator, IAnalyzer, IGeneralVRPOperator { 42 42 #region Parameter properties … … 179 179 } 180 180 [StorableConstructor] 181 private BestAverageWorstVRPToursAnalyzer( bool deserializing) : base() { }181 private BestAverageWorstVRPToursAnalyzer(StorableConstructorFlag _) : base(_) { } 182 182 183 183 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/BestAverageWorstVRPToursCalculator.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.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting { 30 30 [Item("BestAverageWorstVRPToursCalculator", "An operator which calculates the current best, average and worst properties of VRP tours in the scope tree.")] 31 [Storable Class]31 [StorableType("22DF27FC-17D0-4220-9B5D-C326DF47175C")] 32 32 public sealed class BestAverageWorstVRPToursCalculator : SingleSuccessorOperator { 33 33 public ScopeTreeLookupParameter<DoubleValue> DistanceParameter { … … 71 71 72 72 [StorableConstructor] 73 private BestAverageWorstVRPToursCalculator( bool deserializing) : base(deserializing) { }73 private BestAverageWorstVRPToursCalculator(StorableConstructorFlag _) : base(_) { } 74 74 75 75 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/BestVRPToursMemorizer.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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [Item("BestVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")] 32 [Storable Class]32 [StorableType("3E5AF7DC-B85A-453B-8502-DC4FF45EE637")] 33 33 public class BestVRPToursMemorizer : SingleSuccessorOperator { 34 34 public ScopeTreeLookupParameter<DoubleValue> DistanceParameter { … … 57 57 58 58 [StorableConstructor] 59 protected BestVRPToursMemorizer( bool deserializing) : base(deserializing) { }59 protected BestVRPToursMemorizer(StorableConstructorFlag _) : base(_) { } 60 60 61 61 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursAnalyzer.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. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; … … 38 38 /// </summary> 39 39 [Item("BestAverageWorstCapaciatatedVRPToursAnalyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [Storable Class]40 [StorableType("20B56A45-8112-4D41-9C1D-EC563D0FDF75")] 41 41 public sealed class BestAverageWorstCapaciatatedVRPToursAnalyzer : AlgorithmOperator, IAnalyzer, IHomogenousCapacitatedOperator { 42 42 #region Parameter properties … … 132 132 } 133 133 [StorableConstructor] 134 private BestAverageWorstCapaciatatedVRPToursAnalyzer( bool deserializing) : base() { }134 private BestAverageWorstCapaciatatedVRPToursAnalyzer(StorableConstructorFlag _) : base(_) { } 135 135 136 136 [StorableHook(HookType.AfterDeserialization)] -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursCalculator.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.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting { 30 30 [Item("BestAverageWorstCapacitatedVRPToursCalculator", "An operator which calculates the current best, average and worst properties of VRP tours in the scope tree.")] 31 [Storable Class]31 [StorableType("CAF65472-0C4E-4564-B750-61F6924AA284")] 32 32 public sealed class BestAverageWorstCapacitatedVRPToursCalculator : SingleSuccessorOperator { 33 33 public ScopeTreeLookupParameter<DoubleValue> OverloadParameter { … … 61 61 62 62 [StorableConstructor] 63 private BestAverageWorstCapacitatedVRPToursCalculator( bool deserializing) : base(deserializing) { }63 private BestAverageWorstCapacitatedVRPToursCalculator(StorableConstructorFlag _) : base(_) { } 64 64 65 65 private void UpdateOverloads() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestCapacitatedVRPToursMemorizer.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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [Item("BestCapacitatedVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")] 32 [Storable Class]32 [StorableType("888B45AA-2037-49EB-ACD9-36F7D593D320")] 33 33 public class BestCapacitatedVRPToursMemorizer : SingleSuccessorOperator { 34 34 public ScopeTreeLookupParameter<DoubleValue> OverloadParameter { … … 56 56 57 57 [StorableConstructor] 58 protected BestCapacitatedVRPToursMemorizer( bool deserializing) : base(deserializing) { }58 protected BestCapacitatedVRPToursMemorizer(StorableConstructorFlag _) : base(_) { } 59 59 60 60 public override IOperation Apply() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/PickupAndDelivery/BestAverageWorstPickupAndDeliveryVRPToursAnalyzer.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. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; … … 38 38 /// </summary> 39 39 [Item("BestAverageWorstPickupAndDeliveryVRPToursAnalyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [Storable Class]40 [StorableType("B2B231AD-3B1A-4BD0-B6C3-F249A858BAE9")] 41 41 public sealed class BestAverageWorstPickupAndDeliveryVRPToursAnalyzer : AlgorithmOperator, IAnalyzer, IPickupAndDeliveryOperator { 42 42 #region Parameter properties … … 132 132 } 133 133 [StorableConstructor] 134 private BestAverageWorstPickupAndDeliveryVRPToursAnalyzer( bool deserializing) : base() { }134 private BestAverageWorstPickupAndDeliveryVRPToursAnalyzer(StorableConstructorFlag _) : base(_) { } 135 135 136 136 [StorableHook(HookType.AfterDeserialization)] -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/PickupAndDelivery/BestAverageWorstPickupAndDeliveryVRPToursCalculator.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.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting { 30 30 [Item("BestAverageWorstPickupAndDeliveryVRPToursCalculator", "An operator which calculates the current best, average and worst properties of VRP tours in the scope tree.")] 31 [Storable Class]31 [StorableType("C6F8ED53-EF3E-49E5-9D29-227E870AF3D8")] 32 32 public sealed class BestAverageWorstPickupAndDeliveryVRPToursCalculator : SingleSuccessorOperator { 33 33 public ScopeTreeLookupParameter<IntValue> PickupViolationsParameter { … … 61 61 62 62 [StorableConstructor] 63 private BestAverageWorstPickupAndDeliveryVRPToursCalculator( bool deserializing) : base(deserializing) { }63 private BestAverageWorstPickupAndDeliveryVRPToursCalculator(StorableConstructorFlag _) : base(_) { } 64 64 65 65 private void UpdatePickupViolations() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/PickupAndDelivery/BestPickupAndDeliveryVRPToursMemorizer.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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [Item("BestPickupAndDeliveryVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")] 32 [Storable Class]32 [StorableType("F9371738-574B-4658-BB10-12F29C951F72")] 33 33 public class BestPickupAndDeliveryVRPToursMemorizer : SingleSuccessorOperator { 34 34 public ScopeTreeLookupParameter<IntValue> PickupViolationsParameter { … … 56 56 57 57 [StorableConstructor] 58 protected BestPickupAndDeliveryVRPToursMemorizer( bool deserializing) : base(deserializing) { }58 protected BestPickupAndDeliveryVRPToursMemorizer(StorableConstructorFlag _) : base(_) { } 59 59 60 60 public override IOperation Apply() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/TimeWindowed/BestAverageWorstTimeWindowedVRPToursAnalyzer.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. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; … … 38 38 /// </summary> 39 39 [Item("BestAverageWorstTimeWindowedVRPToursAnalyzer", "An operator which analyzes the best, average and worst properties of the VRP tours in the scope tree.")] 40 [Storable Class]40 [StorableType("EBEDE5FC-0AA9-4F99-986A-5499A8C8C506")] 41 41 public sealed class BestAverageWorstTimeWindowedVRPToursAnalyzer : AlgorithmOperator, IAnalyzer, ITimeWindowedOperator { 42 42 #region Parameter properties … … 179 179 } 180 180 [StorableConstructor] 181 private BestAverageWorstTimeWindowedVRPToursAnalyzer( bool deserializing) : base() { }181 private BestAverageWorstTimeWindowedVRPToursAnalyzer(StorableConstructorFlag _) : base(_) { } 182 182 183 183 [StorableHook(HookType.AfterDeserialization)] -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/TimeWindowed/BestAverageWorstTimeWindowedVRPToursCalculator.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.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.VehicleRouting { 30 30 [Item("BestAverageWorstTimeWindowedVRPToursCalculator", "An operator which calculates the current best, average and worst properties of VRP tours in the scope tree.")] 31 [Storable Class]31 [StorableType("2B7EA9C1-4036-497F-861D-771679ADAAE7")] 32 32 public sealed class BestAverageWorstTimeWindowedVRPToursCalculator : SingleSuccessorOperator { 33 33 public ScopeTreeLookupParameter<DoubleValue> TardinessParameter { … … 71 71 72 72 [StorableConstructor] 73 private BestAverageWorstTimeWindowedVRPToursCalculator( bool deserializing) : base(deserializing) { }73 private BestAverageWorstTimeWindowedVRPToursCalculator(StorableConstructorFlag _) : base(_) { } 74 74 75 75 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/TimeWindowed/BestTimeWindowedVRPToursMemorizer.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.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [Item("BestTimeWindowedVRPToursMemorizer", "An operator that updates the best VRP tour found so far in the scope three.")] 32 [Storable Class]32 [StorableType("74E88AF0-67A4-41FC-8235-4B72253C95BE")] 33 33 public class BestTimeWindowedVRPToursMemorizer : SingleSuccessorOperator { 34 34 public ScopeTreeLookupParameter<DoubleValue> TardinessParameter { … … 72 72 73 73 [StorableConstructor] 74 protected BestTimeWindowedVRPToursMemorizer( bool deserializing) : base(deserializing) { }74 protected BestTimeWindowedVRPToursMemorizer(StorableConstructorFlag _) : base(_) { } 75 75 76 76 public override IDeepCloneable Clone(Cloner cloner) { -
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() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/Capacitated/CapacityRelaxationVRPAnalyzer.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.Optimization; 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; … … 35 35 /// </summary> 36 36 [Item("CapacityRelaxationVRPAnalyzer", "An operator for adaptively relaxing the capacity constraints.")] 37 [Storable Class]37 [StorableType("02E519CA-7B71-4BBE-89A5-E630D1FEFC58")] 38 38 public class CapacityRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, ICapacitatedOperator, ISingleObjectiveOperator { 39 39 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 73 73 74 74 [StorableConstructor] 75 protected CapacityRelaxationVRPAnalyzer( bool deserializing) : base(deserializing) { }75 protected CapacityRelaxationVRPAnalyzer(StorableConstructorFlag _) : base(_) { } 76 76 77 77 public CapacityRelaxationVRPAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/PickupAndDelivery/PickupViolationsRelaxationVRPAnalyzer.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.Optimization; 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; … … 35 35 /// </summary> 36 36 [Item("PickupViolationsRelaxationVRPAnalyzer", "An operator for adaptively relaxing the pickup constraints.")] 37 [Storable Class]37 [StorableType("86D541AB-5E65-432B-A8C4-F012A6B46275")] 38 38 public class PickupViolationsRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, IPickupAndDeliveryOperator, ISingleObjectiveOperator { 39 39 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 73 73 74 74 [StorableConstructor] 75 protected PickupViolationsRelaxationVRPAnalyzer( bool deserializing) : base(deserializing) { }75 protected PickupViolationsRelaxationVRPAnalyzer(StorableConstructorFlag _) : base(_) { } 76 76 77 77 public PickupViolationsRelaxationVRPAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/ConstraintRelaxation/TimeWindowed/TimeWindowRelaxationVRPAnalyzer.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.Optimization; 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; … … 35 35 /// </summary> 36 36 [Item("TimeWindowRelaxationVRPAnalyzer", "An operator for adaptively relaxing the time window constraints.")] 37 [Storable Class]37 [StorableType("2CF57A00-547B-46E8-8B55-D626EB2D61DD")] 38 38 public class TimeWindowRelaxationVRPAnalyzer : SingleSuccessorOperator, IAnalyzer, ITimeWindowedOperator, ISingleObjectiveOperator { 39 39 public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { … … 73 73 74 74 [StorableConstructor] 75 protected TimeWindowRelaxationVRPAnalyzer( bool deserializing) : base(deserializing) { }75 protected TimeWindowRelaxationVRPAnalyzer(StorableConstructorFlag _) : base(_) { } 76 76 77 77 public TimeWindowRelaxationVRPAnalyzer() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/VRPSolution.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.Core; 26 26 using HeuristicLab.Data; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Problems.VehicleRouting.Interfaces; 29 29 … … 33 33 /// </summary> 34 34 [Item("VRPSolution", "Represents a VRP solution which can be visualized in the GUI.")] 35 [Storable Class]35 [StorableType("74CBBEDB-DE6E-4122-AC38-F49DC2B85730")] 36 36 public sealed class VRPSolution : Item { 37 37 public static new Image StaticItemImage { … … 90 90 } 91 91 [StorableConstructor] 92 private VRPSolution( bool deserializing) : base(deserializing) { }92 private VRPSolution(StorableConstructorFlag _) : base(_) { } 93 93 94 94 [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset
for help on using the changeset viewer.