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.Analysis/3.3/ValueAnalysis/MinAverageMaxValueAnalyzer.cs

    r16453 r16462  
    2828using HeuristicLab.Optimization.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Fossil;
    3131
    3232namespace HeuristicLab.Analysis {
     
    3535  /// </summary>
    3636  [Item("MinAverageMaxValueAnalyzer", "An operator which analyzes the minimum, average and maximum of a value in the scope tree.")]
    37   [StorableClass]
     37  [StorableType("D305BB40-F613-4DB5-8778-C0278551CAA3")]
    3838  public sealed class MinAverageMaxValueAnalyzer : AlgorithmOperator, IAnalyzer {
    3939    #region Parameter properties
     
    9090    #region Storing & Cloning
    9191    [StorableConstructor]
    92     private MinAverageMaxValueAnalyzer(bool deserializing) : base(deserializing) { }
     92    private MinAverageMaxValueAnalyzer(StorableConstructorFlag _) : base(_) { }
    9393    private MinAverageMaxValueAnalyzer(MinAverageMaxValueAnalyzer original, Cloner cloner)
    9494      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.