Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/Creators
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Orienteering/3.3/Creators/GreedyOrienteeringTourCreator.cs
r16453 r16462 27 27 using HeuristicLab.Encodings.IntegerVectorEncoding; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Problems.Orienteering { … … 39 39 /// </summary> 40 40 [Item("GreedyOrienteeringTourCreator", @"Implements the solution creation 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.")] 41 [Storable Class]41 [StorableType("FB68525D-DD53-4BE7-A6B4-EC54E6FD0E64")] 42 42 public sealed class GreedyOrienteeringTourCreator : IntegerVectorCreator, IOrienteeringSolutionCreator { 43 43 public override bool CanChangeName { get { return false; } } … … 65 65 66 66 [StorableConstructor] 67 private GreedyOrienteeringTourCreator(bool deserializing) 68 : base(deserializing) { } 67 private GreedyOrienteeringTourCreator(StorableConstructorFlag _) : base(_) { } 69 68 private GreedyOrienteeringTourCreator(GreedyOrienteeringTourCreator original, Cloner cloner) 70 69 : base(original, cloner) { }
Note: See TracChangeset
for help on using the changeset viewer.