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.Optimization.Operators/3.3/ExponentialDiscreteDoubleValueModifier.cs

    r16453 r16462  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Fossil;
    2626
    2727namespace HeuristicLab.Optimization.Operators {
     
    3232@"Modifies the value by exponential fall (steep fall initially, slow fall to the end) or rise (slow rise initially, fast rise to the end).
    3333This uses a standard exponential distribution and yields a base which is implicitly derived by start and end indices and values.")]
    34   [StorableClass]
     34  [StorableType("9DEDC020-F9A5-4067-AC23-7A29B656E818")]
    3535  public class ExponentialDiscreteDoubleValueModifier : DiscreteDoubleValueModifier {
    3636    [StorableConstructor]
    37     protected ExponentialDiscreteDoubleValueModifier(bool deserializing) : base(deserializing) { }
     37    protected ExponentialDiscreteDoubleValueModifier(StorableConstructorFlag _) : base(_) { }
    3838    protected ExponentialDiscreteDoubleValueModifier(ExponentialDiscreteDoubleValueModifier original, Cloner cloner) : base(original, cloner) { }
    3939    public ExponentialDiscreteDoubleValueModifier() : base() { }
Note: See TracChangeset for help on using the changeset viewer.