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/SymbolicExpressionTreeOperator.cs

    r16453 r16462  
    2525using HeuristicLab.Optimization;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
     
    3232  /// </summary>
    3333  [Item("SymbolicExpressionTreeOperator", "A base class for operators for symbolic expression trees.")]
    34   [StorableClass]
     34  [StorableType("09F2EC44-6249-4DDE-BA60-A4A3ACDF861B")]
    3535  public abstract class SymbolicExpressionTreeOperator : InstrumentedOperator, IStochasticOperator, ISymbolicExpressionTreeOperator {
    3636    private const string RandomParameterName = "Random";
     
    5151
    5252    [StorableConstructor]
    53     protected SymbolicExpressionTreeOperator(bool deserializing) : base(deserializing) { }
     53    protected SymbolicExpressionTreeOperator(StorableConstructorFlag _) : base(_) { }
    5454    protected SymbolicExpressionTreeOperator(SymbolicExpressionTreeOperator original, Cloner cloner) : base(original, cloner) { }
    5555    protected SymbolicExpressionTreeOperator()
Note: See TracChangeset for help on using the changeset viewer.