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

Location:
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment

  • branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPSolution.cs

    r15553 r16728  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System.ComponentModel;
     23using HEAL.Attic;
    2324using HeuristicLab.Common;
    2425using HeuristicLab.Core;
    2526using HeuristicLab.Encodings.IntegerVectorEncoding;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Attic;
    2728
    2829namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    2930  [Item("GQAPSolution", "A solution to the Generalized Quadratic Assignment Problem.")]
    30   [StorableClass]
     31  [StorableType("D4CC7924-87BF-4499-9149-D18000AD8151")]
    3132  public class GQAPSolution : Item, INotifyPropertyChanged {
    3233
     
    5455
    5556    [StorableConstructor]
    56     protected GQAPSolution(bool deserializing) : base(deserializing) { }
     57    protected GQAPSolution(StorableConstructorFlag _) : base(_) { }
    5758    protected GQAPSolution(GQAPSolution original, Cloner cloner)
    5859      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.