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/Formatters/InfixExpressionFormatter.cs

    r16453 r16462  
    2121
    2222using System;
    23 using System.Collections.Generic;
    2423using System.Globalization;
    2524using System.Linq;
     
    2827using HeuristicLab.Core;
    2928using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3130
    3231namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
     
    3433  /// Formats mathematical expressions in infix form. E.g. x1 * (3.0 * x2 + x3)
    3534  /// </summary>
    36   [StorableClass]
     35  [StorableType("6FE2C83D-A594-4ABF-B101-5AEAEA6D3E3D")]
    3736  [Item("Infix Symbolic Expression Tree Formatter", "A string formatter that converts symbolic expression trees to infix expressions.")]
    3837
     
    4140
    4241    [StorableConstructor]
    43     private InfixExpressionFormatter(bool deserializing) : base(deserializing) { }
     42    private InfixExpressionFormatter(StorableConstructorFlag _) : base(_) { }
    4443    private InfixExpressionFormatter(InfixExpressionFormatter original, Cloner cloner) : base(original, cloner) { }
    4544    public InfixExpressionFormatter()
Note: See TracChangeset for help on using the changeset viewer.