Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.ALPS/3.3/Analyzers/AgeDistributionAnalyzer.cs

    r16453 r16462  
    2828using HeuristicLab.Optimization;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Algorithms.ALPS {
    3333  // Based on QualityDistributionAnalyzer
    3434  [Item("AgeDistributionAnalyzer", "Analyzes the distribution of the ages in that it adds a Histogram of them into the result collection.")]
    35   [StorableClass]
     35  [StorableType("714CE0E4-A88F-44A1-A2D0-92F4D8252C0C")]
    3636  public sealed class AgeDistributionAnalyzer : SingleSuccessorOperator, IAnalyzer, IIterationBasedOperator {
    3737
     
    6969
    7070    [StorableConstructor]
    71     private AgeDistributionAnalyzer(bool deserializing)
    72       : base(deserializing) { }
     71    private AgeDistributionAnalyzer(StorableConstructorFlag _) : base(_) { }
    7372    private AgeDistributionAnalyzer(AgeDistributionAnalyzer original, Cloner cloner)
    7473      : base(original, cloner) { }
Note: See TracChangeset for help on using the changeset viewer.