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.DataAnalysis/3.4/GaussianProcess/MeanFunctions/MeanSum.cs

    r16453 r16462  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Algorithms.DataAnalysis {
    29   [StorableClass]
     29  [StorableType("E8BB7879-43C7-4B9A-B9AC-C9CC482BC0D7")]
    3030  [Item(Name = "MeanSum", Description = "Sum of mean functions for Gaussian processes.")]
    3131  public sealed class MeanSum : Item, IMeanFunction {
     
    4040
    4141    [StorableConstructor]
    42     private MeanSum(bool deserializing) : base(deserializing) { }
     42    private MeanSum(StorableConstructorFlag _) : base(_) { }
    4343    private MeanSum(MeanSum original, Cloner cloner)
    4444      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.