Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (6 years ago)
Author:
jkarder
Message:

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2520_PersistenceReintegration/HeuristicLab.Random/3.3/NormalRandomizer.cs

    r16453 r16462  
    2525using HeuristicLab.Operators;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Random {
     
    3131  /// Normally distributed random number generator.
    3232  /// </summary>
    33   [StorableClass]
     33  [StorableType("0EAF4184-6C98-4C9D-80A1-09A42E03450E")]
    3434  [Item("NormalRandomizer", "Initializes the value of variable 'Value' to a random value normally distributed with parameters 'Mu' and 'Sigma'")]
    3535  public class NormalRandomizer : SingleSuccessorOperator {
     
    6161
    6262    [StorableConstructor]
    63     protected NormalRandomizer(bool deserializing) : base(deserializing) { }
     63    protected NormalRandomizer(StorableConstructorFlag _) : base(_) { }
    6464    protected NormalRandomizer(NormalRandomizer original, Cloner cloner) : base(original, cloner) { }
    6565    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.