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/MeanProduct.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("27D33B4E-6100-419E-B4EA-6D5EFDBFF823")]
    3030  [Item(Name = "MeanProduct", Description = "Product of mean functions for Gaussian processes.")]
    3131  public sealed class MeanProduct : Item, IMeanFunction {
     
    4141
    4242    [StorableConstructor]
    43     private MeanProduct(bool deserializing)
    44       : base(deserializing) {
     43    private MeanProduct(StorableConstructorFlag _) : base(_) {
    4544    }
    4645
Note: See TracChangeset for help on using the changeset viewer.