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.Clients.OKB/3.3/RunCreation/OKBProblem.cs

    r16453 r16462  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Optimization;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626using HeuristicLab.Persistence.Default.Xml;
    2727using System;
     
    3333namespace HeuristicLab.Clients.OKB.RunCreation {
    3434  [Item("OKB Problem", "A base class for problems which are stored in the OKB.")]
    35   [StorableClass]
     35  [StorableType("041DC8A8-2987-4045-B24A-CBA7EAD47316")]
    3636  public abstract class OKBProblem : Item, IHeuristicOptimizationProblem {
    3737    public virtual Type ProblemType {
     
    139139
    140140    [StorableConstructor]
    141     protected OKBProblem(bool deserializing) : base(deserializing) { }
     141    protected OKBProblem(StorableConstructorFlag _) : base(_) { }
    142142    protected OKBProblem(OKBProblem original, Cloner cloner)
    143143      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.