Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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/MinAverageMaxValueCalculator.cs

    r16453 r16462  
    2525using HeuristicLab.Operators;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Analysis {
     
    3232  /// </summary>
    3333  [Item("MinAverageMaxValueCalculator", "An operator which calculates the minimum, average and maximum of a value in the scope tree.")]
    34   [StorableClass]
     34  [StorableType("C10C55BB-737F-4A0A-BAB0-F3DAC28FBCB8")]
    3535  public sealed class MinAverageMaxValueCalculator : SingleSuccessorOperator {
    3636    public ScopeTreeLookupParameter<DoubleValue> ValueParameter {
     
    4949    #region Storing & Cloning
    5050    [StorableConstructor]
    51     private MinAverageMaxValueCalculator(bool deserializing) : base(deserializing) { }
     51    private MinAverageMaxValueCalculator(StorableConstructorFlag _) : base(_) { }
    5252    private MinAverageMaxValueCalculator(MinAverageMaxValueCalculator original, Cloner cloner) : base(original, cloner) { }
    5353    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.