Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 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.Optimization.Operators/3.3/ExpressionCalculator.cs

    r16453 r16462  
    2626using HeuristicLab.Operators;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929
    3030namespace HeuristicLab.Optimization.Operators {
     
    3333  /// </summary>
    3434  [Item("ExpressionCalculator", "An operator that evaluates an expression.")]
    35   [StorableClass]
     35  [StorableType("04FAB284-D11A-4EFF-86C2-B13C1D3D22CE")]
    3636  public class ExpressionCalculator : ValuesCollector {
    3737    [Storable]
     
    5757
    5858    [StorableConstructor]
    59     protected ExpressionCalculator(bool deserializing) : base(deserializing) { }
     59    protected ExpressionCalculator(StorableConstructorFlag _) : base(_) { }
    6060    protected ExpressionCalculator(ExpressionCalculator original, Cloner cloner)
    6161      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.