Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/19 14:40:15 (6 years ago)
Author:
abeham
Message:

#1614: updated to new persistence and .NET 4.6.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1614_GeneralizedQAP/HeuristicLab.Analysis.FitnessLandscape/3.3/Algorithms/RandomWalk.cs

    r13583 r16728  
    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("3B3955F3-A7BA-423E-9796-41ABF77629B0")]
    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.