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.Encodings.SymbolicExpressionTreeEncoding/3.4/SymbolicExpressionTree.cs

    r16453 r16462  
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
    31   [StorableClass]
     31  [StorableType("E98BB36B-FBB5-4A6C-A2E5-D47E0BD0687B")]
    3232  [Item("SymbolicExpressionTree", "Represents a symbolic expression tree.")]
    3333  public class SymbolicExpressionTree : Item, ISymbolicExpressionTree {
     
    6565
    6666    [StorableConstructor]
    67     protected SymbolicExpressionTree(bool deserializing) : base(deserializing) { }
     67    protected SymbolicExpressionTree(StorableConstructorFlag _) : base(_) { }
    6868    protected SymbolicExpressionTree(SymbolicExpressionTree original, Cloner cloner)
    6969      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.