Changeset 16728 for branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/AdaptiveWalk.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/AdaptiveWalk.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 27 using HeuristicLab.Parameters; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 28 using HeuristicLab.Selection; 28 using System.Linq;29 29 30 30 namespace HeuristicLab.Analysis.FitnessLandscape { 31 31 [Item("Adaptive Walk", "An adaptive walk applies a certain manipulation operation always taking the best of the sample.")] 32 [Storable Class]32 [StorableType("33CED2EA-C779-4109-976C-CF1F9E6D2826")] 33 33 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 303)] 34 34 public sealed class AdaptiveWalk : LocalAnalysis<BestSelector> { … … 39 39 40 40 [StorableConstructor] 41 private AdaptiveWalk( bool deserializing) : base(deserializing) { }41 private AdaptiveWalk(StorableConstructorFlag _) : base(_) { } 42 42 private AdaptiveWalk(AdaptiveWalk original, Cloner cloner) : base(original, cloner) { } 43 43 public AdaptiveWalk()
Note: See TracChangeset
for help on using the changeset viewer.