Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/19 14:52:20 (5 years ago)
Author:
abeham
Message:

#2457: adapted to trunk

Location:
branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape

  • branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/RandomWalk.cs

    r13583 r16958  
    2020#endregion
    2121
     22using System.Linq;
     23using HEAL.Attic;
    2224using HeuristicLab.Common;
    2325using HeuristicLab.Core;
    2426using HeuristicLab.Data;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2627using HeuristicLab.Selection;
    27 using System.Linq;
    2828
    2929namespace HeuristicLab.Analysis.FitnessLandscape {
    3030  [Item("Random Walk", "A random walk applies a certain manipulation operation over and over.")]
    31   [StorableClass]
     31  [StorableType("2997A654-7B98-4979-939D-D07A5D06D77C")]
    3232  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 301)]
    3333  public sealed class RandomWalk : LocalAnalysis<RandomSelector> {
    3434
    3535    [StorableConstructor]
    36     private RandomWalk(bool deserializing) : base(deserializing) { }
     36    private RandomWalk(StorableConstructorFlag _) : base(_) { }
    3737    private RandomWalk(RandomWalk original, Cloner cloner) : base(original, cloner) { }
    3838    public RandomWalk()
Note: See TracChangeset for help on using the changeset viewer.