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/Evolutionary/OSGA.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.Evolutionary {
    3434  [Item("OSGA (GQAP)", "The algorithm implements a strict offspring selection genetic algorithm (OSGA).")]
    3535  [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms)]
    36   [StorableClass]
     36  [StorableType("3BCF54DD-CECB-4027-AF2F-1764E6318B78")]
    3737  public sealed class OSGA : StochasticAlgorithm<OSGAContext, IntegerVectorEncoding> {
    3838
     
    7171
    7272    [StorableConstructor]
    73     private OSGA(bool deserializing) : base(deserializing) { }
     73    private OSGA(StorableConstructorFlag _) : base(_) { }
    7474    private OSGA(OSGA original, Cloner cloner)
    7575      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.