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.RAPGA/3.3/ProgressiveOffspringPreserver.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.
     
    2727using HeuristicLab.Optimization;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Attic;
    3030
    3131namespace HeuristicLab.Algorithms.RAPGA {
     
    3737  /// </remarks>
    3838  [Item("ProgressiveOffspringPreserver", "An operator that progressively selects offspring by adding it to a scope list. The operator also performs duplication control.")]
    39   [StorableClass]
     39  [StorableType("36A99B15-7DF3-481A-8D76-24BF4ED7B6F8")]
    4040  public sealed class ProgressiveOffspringPreserver : SingleSuccessorOperator {
    4141    #region Parameter Properties
     
    7373
    7474    [StorableConstructor]
    75     private ProgressiveOffspringPreserver(bool deserializing) : base(deserializing) { }
     75    private ProgressiveOffspringPreserver(StorableConstructorFlag _) : base(_) { }
    7676    private ProgressiveOffspringPreserver(ProgressiveOffspringPreserver original, Cloner cloner) : base(original, cloner) { }
    7777    public ProgressiveOffspringPreserver()
Note: See TracChangeset for help on using the changeset viewer.