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

    r13583 r16958  
    2020#endregion
    2121
     22using HEAL.Attic;
    2223using HeuristicLab.Common;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Data;
    2526using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727
    2828namespace HeuristicLab.Analysis.FitnessLandscape {
    2929  [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   [StorableClass]
     30  [StorableType("81877EC4-294E-474A-8E48-6E37D0B702BC")]
    3131  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis + CreatableAttribute.Categories.SplitToken + "1" + CreatableAttribute.Categories.OrderToken + "FLA", Priority = 302)]
    3232  public sealed class UpDownWalk : LocalAnalysis<UpDownSelector> {
     
    3737
    3838    [StorableConstructor]
    39     private UpDownWalk(bool deserializing) : base(deserializing) { }
     39    private UpDownWalk(StorableConstructorFlag _) : base(_) { }
    4040    private UpDownWalk(UpDownWalk original, Cloner cloner) : base(original, cloner) { }
    4141    public UpDownWalk()
Note: See TracChangeset for help on using the changeset viewer.