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/AdaptiveWalk.cs

    r13583 r16728  
    2020#endregion
    2121
     22using System.Linq;
     23using HEAL.Attic;
    2224using HeuristicLab.Common;
    2325using HeuristicLab.Core;
    2426using HeuristicLab.Data;
    2527using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2728using HeuristicLab.Selection;
    28 using System.Linq;
    2929
    3030namespace HeuristicLab.Analysis.FitnessLandscape {
    3131  [Item("Adaptive Walk", "An adaptive walk applies a certain manipulation operation always taking the best of the sample.")]
    32   [StorableClass]
     32  [StorableType("33CED2EA-C779-4109-976C-CF1F9E6D2826")]
    3333  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 303)]
    3434  public sealed class AdaptiveWalk : LocalAnalysis<BestSelector> {
     
    3939
    4040    [StorableConstructor]
    41     private AdaptiveWalk(bool deserializing) : base(deserializing) { }
     41    private AdaptiveWalk(StorableConstructorFlag _) : base(_) { }
    4242    private AdaptiveWalk(AdaptiveWalk original, Cloner cloner) : base(original, cloner) { }
    4343    public AdaptiveWalk()
Note: See TracChangeset for help on using the changeset viewer.