Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/31/19 14:40:15 (6 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/LocalSolverNet/GQAPListSolver.cs

    r15890 r16728  
    2222using System;
    2323using System.Threading;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    2728using HeuristicLab.Encodings.IntegerVectorEncoding;
    2829using HeuristicLab.Optimization;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3030using localsolver;
    3131
    3232namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSolverNet {
    3333  [Item("LocalSolver List (GQAP)", "LocalSolver algorithm solving the GQAP using list decision variables")]
    34   [StorableClass]
     34  [StorableType("BBB27FAA-DCFD-4DB4-A465-4A02E1A0EDA9")]
    3535  [Creatable(CreatableAttribute.Categories.Algorithms)]
    3636  public sealed class GQAPListSolver : ContextAlgorithm<LocalSolverContext, IntegerVectorEncoding> {
     
    5555
    5656    [StorableConstructor]
    57     private GQAPListSolver(bool deserializing) : base(deserializing) { }
     57    private GQAPListSolver(StorableConstructorFlag _) : base(_) { }
    5858    private GQAPListSolver(GQAPListSolver original, Cloner cloner)
    5959    : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.