Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/19 13:41:42 (5 years ago)
Author:
gkronber
Message:

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchMainLoop.cs

    r15583 r16565  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2626using HeuristicLab.Optimization.Operators;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929using HeuristicLab.Selection;
    3030
     
    3434  /// </summary>
    3535  [Item("LocalSearchMainLoop", "An operator which represents the main loop of a best improvement local search (if only a single move is generated in each iteration it is a first improvement local search).")]
    36   [StorableClass]
     36  [StorableType("629DEE28-5E94-44C2-AFDA-83F7F0128091")]
    3737  public sealed class LocalSearchMainLoop : AlgorithmOperator {
    3838    #region Parameter properties
     
    8282
    8383    [StorableConstructor]
    84     private LocalSearchMainLoop(bool deserializing) : base(deserializing) { }
     84    private LocalSearchMainLoop(StorableConstructorFlag _) : base(_) { }
    8585    public LocalSearchMainLoop()
    8686      : base() {
Note: See TracChangeset for help on using the changeset viewer.