Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/19 14:40:15 (5 years ago)
Author:
abeham
Message:

#1614: updated to new persistence and .NET 4.6.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Contexts/PopulationContext.cs

    r15616 r16728  
    2222using System.Collections.Generic;
    2323using System.Linq;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727
    2828namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms {
    2929  [Item("Population Context", "A context for population-based algorithms.")]
    30   [StorableClass]
     30  [StorableType("2FF3BB92-80E9-4463-B05A-5D36B76873A6")]
    3131  public abstract class PopulationContext<TSolutionScope> : StochasticContext
    3232    where TSolutionScope: class, IScope {
     
    5656
    5757    [StorableConstructor]
    58     protected PopulationContext(bool deserializing) : base(deserializing) { }
     58    protected PopulationContext(StorableConstructorFlag _) : base(_) { }
    5959    protected PopulationContext(PopulationContext<TSolutionScope> original, Cloner cloner)
    6060      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.