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.TabuSearch/3.3/TabuSelector.cs

    r16453 r16462  
    2626using HeuristicLab.Data;
    2727using HeuristicLab.Parameters;
    28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Fossil;
    2929using HeuristicLab.Selection;
    3030
     
    3737  /// </remarks>
    3838  [Item("TabuSelector", "An operator that selects the best move that is either not tabu or satisfies the aspiration criterion. It expects the move subscopes to be sorted by the qualities of the moves (the best move is first).")]
    39   [StorableClass]
     39  [StorableType("63A67432-6076-4BDE-B6D5-C9919FAA48DE")]
    4040  public class TabuSelector : Selector {
    4141    /// <summary>
     
    8282
    8383    [StorableConstructor]
    84     protected TabuSelector(bool deserializing) : base(deserializing) { }
     84    protected TabuSelector(StorableConstructorFlag _) : base(_) { }
    8585    protected TabuSelector(TabuSelector original, Cloner cloner)
    8686      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.