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/CovarianceFunctions/CovarianceLinearArd.cs

    r16453 r16462  
    2727using HeuristicLab.Data;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Algorithms.DataAnalysis {
    32   [StorableClass]
     32  [StorableType("A704FDF2-0566-4AB5-B752-D713831B016C")]
    3333  [Item(Name = "CovarianceLinearArd",
    3434    Description = "Linear covariance function with automatic relevance determination for Gaussian processes.")]
     
    4242
    4343    [StorableConstructor]
    44     private CovarianceLinearArd(bool deserializing) : base(deserializing) { }
     44    private CovarianceLinearArd(StorableConstructorFlag _) : base(_) { }
    4545    private CovarianceLinearArd(CovarianceLinearArd original, Cloner cloner)
    4646      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.