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.ScatterSearch/3.3/OffspringProcessor.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.
     
    2424using HeuristicLab.Operators;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Attic;
    2727
    2828namespace HeuristicLab.Algorithms.ScatterSearch {
     
    3131  /// </summary>
    3232  [Item("OffspringProcessor", "An operator that creates a subscope with subscopes for every variable in the current scope.")]
    33   [StorableClass]
     33  [StorableType("A89D522A-CAFF-4899-A24D-5EB463EEB03F")]
    3434  public sealed class OffspringProcessor : SingleSuccessorOperator {
    3535    #region Parameter properties
     
    4646
    4747    [StorableConstructor]
    48     private OffspringProcessor(bool deserializing) : base(deserializing) { }
     48    private OffspringProcessor(StorableConstructorFlag _) : base(_) { }
    4949    private OffspringProcessor(OffspringProcessor original, Cloner cloner) : base(original, cloner) { }
    5050    public OffspringProcessor()
Note: See TracChangeset for help on using the changeset viewer.