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.Problems.DataAnalysis.Symbolic/3.4/Symbols/Integral.cs

    r16453 r16462  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    26   [StorableClass]
     26  [StorableType("217049E2-47B0-430A-808B-F667D5EEAE39")]
    2727  [Item("Integral", "Represents the integral over the specified subtree.")]
    2828  public sealed class Integral : LaggedSymbol {
     
    3838
    3939    [StorableConstructor]
    40     private Integral(bool deserializing) : base(deserializing) { }
     40    private Integral(StorableConstructorFlag _) : base(_) { }
    4141    private Integral(Integral original, Cloner cloner) : base(original, cloner) { }
    4242    public override IDeepCloneable Clone(Cloner cloner) { return new Integral(this, cloner); }
Note: See TracChangeset for help on using the changeset viewer.