Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/UpDownWalk.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/UpDownWalk.cs
r13583 r16728 20 20 #endregion 21 21 22 using HEAL.Attic; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Data; 25 26 using HeuristicLab.Parameters; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 27 28 28 namespace HeuristicLab.Analysis.FitnessLandscape { 29 29 [Item("Up/Down Walk", "An up/down walk attempts to take the best of the sample until no better can be found and then switch to take the worse until no worse can be found.")] 30 [Storable Class]30 [StorableType("BFDB7192-6743-4CD5-A6A2-FECF22619209")] 31 31 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 302)] 32 32 public sealed class UpDownWalk : LocalAnalysis<UpDownSelector> { … … 37 37 38 38 [StorableConstructor] 39 private UpDownWalk( bool deserializing) : base(deserializing) { }39 private UpDownWalk(StorableConstructorFlag _) : base(_) { } 40 40 private UpDownWalk(UpDownWalk original, Cloner cloner) : base(original, cloner) { } 41 41 public UpDownWalk()
Note: See TracChangeset
for help on using the changeset viewer.