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

    r13920 r16728  
    2020#endregion
    2121
     22using System;
     23using System.Linq;
     24using HEAL.Attic;
    2225using HeuristicLab.Common;
    2326using HeuristicLab.Core;
     
    2730using HeuristicLab.Optimization.Operators;
    2831using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3032using HeuristicLab.Random;
    31 using System;
    32 using System.Linq;
    3333
    3434namespace HeuristicLab.Analysis.FitnessLandscape {
    3535  [Item("Local Analysis", "A local analysis algorithm.")]
    36   [StorableClass]
     36  [StorableType("F76A2278-93BC-4F35-A603-9E1E84C9651A")]
    3737  public abstract class LocalAnalysis<T> : HeuristicOptimizationEngineAlgorithm, IStorableContent where T : class, IOperator, new() {
    3838    public string Filename { get; set; }
     
    100100
    101101    [StorableConstructor]
    102     protected LocalAnalysis(bool deserializing) : base(deserializing) { }
     102    protected LocalAnalysis(StorableConstructorFlag _) : base(_) { }
    103103    protected LocalAnalysis(LocalAnalysis<T> original, Cloner cloner)
    104104      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.