Changeset 17097 for stable/HeuristicLab.Problems.Orienteering/3.3/Shakers
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Orienteering/3.3/Shakers/OrienteeringShakingOperator.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; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Problems.Orienteering { … … 48 48 /// </summary> 49 49 [Item("OrienteeringShakingOperator", @"Implements the shaking procedure described in Schilde M., Doerner K.F., Hartl R.F., Kiechle G. 2009. Metaheuristics for the bi-objective orienteering problem. Swarm Intelligence, Volume 3, Issue 3, pp 179-201.")] 50 [Storable Class]50 [StorableType("D6654BD1-63CD-4057-89C8-36D1EE6EA7DF")] 51 51 public sealed class OrienteeringShakingOperator : SingleSuccessorOperator, IMultiNeighborhoodShakingOperator, IStochasticOperator { 52 52 … … 89 89 90 90 [StorableConstructor] 91 private OrienteeringShakingOperator( bool deserializing) : base(deserializing) { }91 private OrienteeringShakingOperator(StorableConstructorFlag _) : base(_) { } 92 92 private OrienteeringShakingOperator(OrienteeringShakingOperator original, Cloner cloner) 93 93 : base(original, cloner) { … … 241 241 } 242 242 243 [StorableType("8E380F4E-D9C2-4671-ABF8-A28E14B22BA2")] 243 244 private class SavingInfo { 244 245 public int Index;
Note: See TracChangeset
for help on using the changeset viewer.