Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/28/18 16:10:48 (5 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.Algorithms.RAPGA/3.3/ProgressiveOffspringPreserver.cs

    r16453 r16462  
    2727using HeuristicLab.Optimization;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Algorithms.RAPGA {
     
    3737  /// </remarks>
    3838  [Item("ProgressiveOffspringPreserver", "An operator that progressively selects offspring by adding it to a scope list. The operator also performs duplication control.")]
    39   [StorableClass]
     39  [StorableType("36A99B15-7DF3-481A-8D76-24BF4ED7B6F8")]
    4040  public sealed class ProgressiveOffspringPreserver : SingleSuccessorOperator {
    4141    #region Parameter Properties
     
    7373
    7474    [StorableConstructor]
    75     private ProgressiveOffspringPreserver(bool deserializing) : base(deserializing) { }
     75    private ProgressiveOffspringPreserver(StorableConstructorFlag _) : base(_) { }
    7676    private ProgressiveOffspringPreserver(ProgressiveOffspringPreserver original, Cloner cloner) : base(original, cloner) { }
    7777    public ProgressiveOffspringPreserver()
Note: See TracChangeset for help on using the changeset viewer.