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/LocalSearch/IteratedLS.cs

    r15700 r16728  
    2222using System;
    2323using System.Threading;
     24using HEAL.Attic;
    2425using HeuristicLab.Common;
    2526using HeuristicLab.Core;
     
    2829using HeuristicLab.Optimization;
    2930using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3131
    3232namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSearch {
    3333  [Item("Iterated Local Search (GQAP)", "Iterated local search for the GQAP.")]
    3434  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms)]
    35   [StorableClass]
     35  [StorableType("2C8EE433-B133-4382-8B4F-4EFFA536D759")]
    3636  public sealed class IteratedLS : StochasticAlgorithm<LocalSearchContext, IntegerVectorEncoding> {
    3737
     
    6161
    6262    [StorableConstructor]
    63     private IteratedLS(bool deserializing) : base(deserializing) { }
     63    private IteratedLS(StorableConstructorFlag _) : base(_) { }
    6464    private IteratedLS(IteratedLS original, Cloner cloner)
    6565      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.