Changeset 17097 for stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/ShakingOperators
- Timestamp:
- 07/07/19 23:40:10 (6 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/ShakingOperators/VehicleRoutingShakingOperator.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.Common; 26 26 using HeuristicLab.Core; 27 using HeuristicLab.Data;28 27 using HeuristicLab.Optimization; 29 28 using HeuristicLab.Optimization.Operators; 30 29 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 32 31 using HeuristicLab.PluginInfrastructure; 33 32 using HeuristicLab.Problems.VehicleRouting.Encodings.General; … … 37 36 namespace HeuristicLab.Problems.VehicleRouting { 38 37 [Item("VRPShakingOperator", "A shaking operator for VNS that applies available mutation operators.")] 39 [Storable Class]38 [StorableType("1D7EAC11-693C-4CE0-A4BB-A2C67F364A95")] 40 39 public class VehicleRoutingShakingOperator : ShakingOperator<IVRPManipulator>, IVRPMultiNeighborhoodShakingOperator, IGeneralVRPOperator, IStochasticOperator { 41 40 #region Parameters … … 59 58 60 59 [StorableConstructor] 61 protected VehicleRoutingShakingOperator( bool deserializing) : base(deserializing) { }60 protected VehicleRoutingShakingOperator(StorableConstructorFlag _) : base(_) { } 62 61 protected VehicleRoutingShakingOperator(VehicleRoutingShakingOperator original, Cloner cloner) : base(original, cloner) { } 63 62 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.