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.Optimization/3.3/MetaOptimizers/BatchRun.cs

    r16453 r16462  
    2929using HeuristicLab.Core;
    3030using HeuristicLab.Data;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Fossil;
    3232
    3333namespace HeuristicLab.Optimization {
     
    3939  [Item("Batch Run", "A run in which an optimizer is executed a given number of times.")]
    4040  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 110)]
    41   [StorableClass]
     41  [StorableType("E85407E0-18EC-4198-8321-9CF030FDF6D7")]
    4242  public sealed class BatchRun : NamedItem, IOptimizer, IStorableContent {
    4343    public string Filename { get; set; }
     
    199199    }
    200200    [StorableConstructor]
    201     private BatchRun(bool deserializing) : base(deserializing) { }
     201    private BatchRun(StorableConstructorFlag _) : base(_) { }
    202202    [StorableHook(HookType.AfterDeserialization)]
    203203    private void AfterDeserialization() {
Note: See TracChangeset for help on using the changeset viewer.