Changeset 17010 for branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated
- Timestamp:
- 06/14/19 15:47:37 (6 years ago)
- Location:
- branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursAnalyzer.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic 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)] -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestAverageWorstCapacitatedVRPToursCalculator.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic 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() { -
branches/2707_HeuristicLab.VRPEnhancements/HeuristicLab.Problems.VehicleRouting/3.4/Analyzer/BestAverageWorstTours/Capacitated/BestCapacitatedVRPToursMemorizer.cs
r14185 r17010 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 6Heuristic 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() {
Note: See TracChangeset
for help on using the changeset viewer.