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/3.3/Run.cs

    r16453 r16462  
    2727using HeuristicLab.Common;
    2828using HeuristicLab.Core;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Optimization {
     
    3434  /// </summary>
    3535  [Item("Run", "The parameters and results of an algorithm run.")]
    36   [StorableClass]
     36  [StorableType("C06974F6-2516-492F-9AE9-517AED845260")]
    3737  public sealed class Run : NamedItem, IRun, IStorableContent {
    3838    public string Filename { get; set; }
    3939
    4040    [StorableConstructor]
    41     private Run(bool deserializing) : base(deserializing) { }
     41    private Run(StorableConstructorFlag _) : base(_) { }
    4242    private Run(Run original, Cloner cloner)
    4343      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.