Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Optimization;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    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.