Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/25/19 17:26:02 (5 years ago)
Author:
gkronber
Message:

#2936: adapted branch to new persistence (works with HL trunk r16711)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/SingleSolutionContext.cs

    r15616 r16712  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms {
    2728  [Item("Single Solution Context", "A context for single solution algorithms.")]
    28   [StorableClass]
     29  [StorableType("C894BD11-05CE-44E2-B25D-606071B78757")]
    2930  public abstract class SingleSolutionContext<TSolutionScope> : StochasticContext
    3031    where TSolutionScope: class, IScope {
     
    4445
    4546    [StorableConstructor]
    46     protected SingleSolutionContext(bool deserializing) : base(deserializing) { }
     47    protected SingleSolutionContext(StorableConstructorFlag _) : base(_) { }
    4748    protected SingleSolutionContext(SingleSolutionContext<TSolutionScope> original, Cloner cloner)
    4849      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.