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.Algorithms.RAPGA/3.3/ScopeRestorer.cs

    r16453 r16462  
    2424using HeuristicLab.Operators;
    2525using HeuristicLab.Parameters;
    26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     26using HEAL.Fossil;
    2727
    2828namespace HeuristicLab.Algorithms.RAPGA {
     
    3434  /// </remarks>
    3535  [Item("ScopeRestorer", "An operator that restores created offspring from a scope list. It adds all scopes in the list as sub-scopes to the current scope.")]
    36   [StorableClass]
     36  [StorableType("3246BDED-5177-4681-A2EF-2E9892AAED09")]
    3737  public class ScopeRestorer : SingleSuccessorOperator {
    3838    #region Parameter Properties
     
    5555
    5656    [StorableConstructor]
    57     protected ScopeRestorer(bool deserializing) : base(deserializing) { }
     57    protected ScopeRestorer(StorableConstructorFlag _) : base(_) { }
    5858    protected ScopeRestorer(ScopeRestorer original, Cloner cloner) : base(original, cloner) { }
    5959    public ScopeRestorer()
Note: See TracChangeset for help on using the changeset viewer.