Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Optimization.Operators/3.3/ChildrenCreator.cs

    r15584 r17097  
    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.Operators;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2929
    3030namespace HeuristicLab.Optimization.Operators {
     
    3838  /// </remarks>
    3939  [Item("ChildrenCreator", "An operator which is used to prepare crossover. The sub-scopes of the current scope the operator is applied on represent the parents. The operator creates new and empty scopes for each child, adds the scopes that represent the child's parents as sub-scopes to the child and adds the child as sub-scope to the current scope.")]
    40   [StorableClass]
     40  [StorableType("C9D3181F-B3ED-4953-B0B4-1A307069F11D")]
    4141  public sealed class ChildrenCreator : SingleSuccessorOperator {
    4242    private ScopeParameter CurrentScopeParameter {
     
    5555
    5656    [StorableConstructor]
    57     private ChildrenCreator(bool deserializing) : base(deserializing) { }
     57    private ChildrenCreator(StorableConstructorFlag _) : base(_) { }
    5858    private ChildrenCreator(ChildrenCreator original, Cloner cloner) : base(original, cloner) { }
    5959    public ChildrenCreator()
Note: See TracChangeset for help on using the changeset viewer.