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.Problems.NK/3.3/WeightInitializers/ExponentialWeightsInitializer.cs

    r16453 r16462  
    2424using HeuristicLab.Common;
    2525using HeuristicLab.Core;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Problems.NK {
    2929  [Item("ExponentialWeightsInitializer", "Assigns exponentially increasing weights.")]
    30   [StorableClass]
     30  [StorableType("6F927828-8292-49E6-95CB-F4CFA97018CA")]
    3131  public sealed class ExponentialWeightsInitializer : ParameterizedNamedItem, IWeightsInitializer {
    3232    [StorableConstructor]
    33     private ExponentialWeightsInitializer(bool deserializing) : base(deserializing) { }
     33    private ExponentialWeightsInitializer(StorableConstructorFlag _) : base(_) { }
    3434    private ExponentialWeightsInitializer(ExponentialWeightsInitializer original, Cloner cloner)
    3535      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.