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.Operators/3.3/StochasticMultiBranch.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.
     
    2828using HeuristicLab.Data;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131
    3232namespace HeuristicLab.Operators {
     
    3535  /// </summary>
    3636  [Item("StochasticMultiBranch", "Selects one of its branches (if there are any) given a list of relative probabilities.")]
    37   [StorableClass]
     37  [StorableType("9BD4C2C2-945F-4FAD-AE19-28C0D66BE476")]
    3838  public abstract class StochasticMultiBranch<T> : CheckedMultiOperator<T> where T : class, IOperator {
    3939    /// <summary>
     
    6262
    6363    [StorableConstructor]
    64     protected StochasticMultiBranch(bool deserializing) : base(deserializing) { }
     64    protected StochasticMultiBranch(StorableConstructorFlag _) : base(_) { }
    6565    protected StochasticMultiBranch(StochasticMultiBranch<T> original, Cloner cloner)
    6666      : base(original, cloner) {
     
    176176  /// </summary>
    177177  [Item("StochasticMultiBranch", "Selects one of its branches (if there are any) given a list of relative probabilities.")]
    178   [StorableClass]
     178  [StorableType("33C9B48B-10F7-4832-9F5F-1421A4467A87")]
    179179  public class StochasticMultiBranch : StochasticMultiBranch<IOperator> {
    180180    [StorableConstructor]
    181     protected StochasticMultiBranch(bool deserializing) : base(deserializing) { }
     181    protected StochasticMultiBranch(StorableConstructorFlag _) : base(_) { }
    182182    protected StochasticMultiBranch(StochasticMultiBranch original, Cloner cloner)
    183183      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.