Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/RandomWalk.cs
- Timestamp:
- 03/31/19 14:40:15 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/RandomWalk.cs
r13583 r16728 20 20 #endregion 21 21 22 using System.Linq; 23 using HEAL.Attic; 22 24 using HeuristicLab.Common; 23 25 using HeuristicLab.Core; 24 26 using HeuristicLab.Data; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 27 using HeuristicLab.Selection; 27 using System.Linq;28 28 29 29 namespace HeuristicLab.Analysis.FitnessLandscape { 30 30 [Item("Random Walk", "A random walk applies a certain manipulation operation over and over.")] 31 [Storable Class]31 [StorableType("3B3955F3-A7BA-423E-9796-41ABF77629B0")] 32 32 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 301)] 33 33 public sealed class RandomWalk : LocalAnalysis<RandomSelector> { 34 34 35 35 [StorableConstructor] 36 private RandomWalk( bool deserializing) : base(deserializing) { }36 private RandomWalk(StorableConstructorFlag _) : base(_) { } 37 37 private RandomWalk(RandomWalk original, Cloner cloner) : base(original, cloner) { } 38 38 public RandomWalk()
Note: See TracChangeset
for help on using the changeset viewer.