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/UniformRandomizer.cs

    r16453 r16462  
    2525using HeuristicLab.Operators;
    2626using HeuristicLab.Parameters;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HEAL.Fossil;
    2828
    2929namespace HeuristicLab.Random {
     
    3131  /// Uniformly distributed random number generator.
    3232  /// </summary>
    33   [StorableClass]
     33  [StorableType("427A6E3A-EC49-4513-9773-768E78F583BF")]
    3434  [Item("UniformRandomizer", "Initializes the value of variable 'Value' to a random value uniformly distributed between 'Min' and 'Max'")]
    3535  public class UniformRandomizer : SingleSuccessorOperator {
     
    6161
    6262    [StorableConstructor]
    63     protected UniformRandomizer(bool deserializing) : base(deserializing) { }
     63    protected UniformRandomizer(StorableConstructorFlag _) : base(_) { }
    6464    protected UniformRandomizer(UniformRandomizer original, Cloner cloner) : base(original, cloner) { }
    6565    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.