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/PopulationContext.cs

    r15616 r16712  
    2525using HeuristicLab.Core;
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms {
    2930  [Item("Population Context", "A context for population-based algorithms.")]
    30   [StorableClass]
     31  [StorableType("328AF409-9ECE-4E59-A842-ABBD98CBE386")]
    3132  public abstract class PopulationContext<TSolutionScope> : StochasticContext
    3233    where TSolutionScope: class, IScope {
     
    5657
    5758    [StorableConstructor]
    58     protected PopulationContext(bool deserializing) : base(deserializing) { }
     59    protected PopulationContext(StorableConstructorFlag _) : base(_) { }
    5960    protected PopulationContext(PopulationContext<TSolutionScope> original, Cloner cloner)
    6061      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.