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.ScatterSearch/3.3/PopulationRebuildMethod.cs

    r16453 r16462  
    2727using HeuristicLab.Optimization;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Algorithms.ScatterSearch {
     
    3434  /// </summary>
    3535  [Item("PopulationRebuildMethod", "An operator that updates the reference set and rebuilds the population.")]
    36   [StorableClass]
     36  [StorableType("B993B7E3-E510-4211-AD13-90517C810E34")]
    3737  public sealed class PopulationRebuildMethod : SingleSuccessorOperator, ISingleObjectiveOperator {
    3838    #region Parameter properties
     
    7676
    7777    [StorableConstructor]
    78     private PopulationRebuildMethod(bool deserializing) : base(deserializing) { }
     78    private PopulationRebuildMethod(StorableConstructorFlag _) : base(_) { }
    7979    private PopulationRebuildMethod(PopulationRebuildMethod original, Cloner cloner) : base(original, cloner) { }
    8080    public PopulationRebuildMethod()
Note: See TracChangeset for help on using the changeset viewer.