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.Optimization.Operators/3.3/SASEGASAReunificator.cs

    r16453 r16462  
    2727using HeuristicLab.Operators;
    2828using HeuristicLab.Parameters;
    29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     29using HEAL.Fossil;
    3030
    3131namespace HeuristicLab.Optimization.Operators {
     
    3535  /// </summary>
    3636  [Item("SASEGASAReunificator", "This operator merges the villages (sub-scopes) and redistributes the individuals. It is implemented as described in Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications, CRC Press.")]
    37   [StorableClass]
     37  [StorableType("09433AE4-A51B-40F5-967D-3A2A83EE8814")]
    3838  public class SASEGASAReunificator : SingleSuccessorOperator {
    3939
     
    4343
    4444    [StorableConstructor]
    45     protected SASEGASAReunificator(bool deserializing) : base(deserializing) { }
     45    protected SASEGASAReunificator(StorableConstructorFlag _) : base(_) { }
    4646    protected SASEGASAReunificator(SASEGASAReunificator original, Cloner cloner) : base(original, cloner) { }
    4747    public SASEGASAReunificator()
Note: See TracChangeset for help on using the changeset viewer.