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

    r15700 r16728  
    2323using System.Linq;
    2424using System.Threading;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
     
    2930using HeuristicLab.Optimization;
    3031using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3232
    3333namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LAHC {
    3434  [Item("LAHC (GQAP)", "Late-acceptance hill climber for the GQAP.")]
    3535  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms)]
    36   [StorableClass]
     36  [StorableType("41FABEE1-506A-45FE-A6D3-57932036AEC8")]
    3737  public sealed class LAHC : StochasticAlgorithm<LAHCContext, IntegerVectorEncoding> {
    3838
     
    6262
    6363    [StorableConstructor]
    64     private LAHC(bool deserializing) : base(deserializing) { }
     64    private LAHC(StorableConstructorFlag _) : base(_) { }
    6565    private LAHC(LAHC original, Cloner cloner)
    6666      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.