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.CMAEvolutionStrategy/3.4/CMAAnalyzer.cs

    r16453 r16462  
    3030using HeuristicLab.Optimization;
    3131using HeuristicLab.Parameters;
    32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     32using HEAL.Fossil;
    3333
    3434namespace HeuristicLab.Algorithms.CMAEvolutionStrategy {
    3535  [Item("CMAAnalyzer", "Analyzes the development of strategy parameters and visualizes the performance of CMA-ES.")]
    36   [StorableClass]
     36  [StorableType("7E36BAC4-D2A5-405D-B46F-FF91BC592D43")]
    3737  public sealed class CMAAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator {
    3838
     
    6060
    6161    [StorableConstructor]
    62     private CMAAnalyzer(bool deserializing) : base(deserializing) { }
     62    private CMAAnalyzer(StorableConstructorFlag _) : base(_) { }
    6363    private CMAAnalyzer(CMAAnalyzer original, Cloner cloner) : base(original, cloner) { }
    6464    public CMAAnalyzer()
Note: See TracChangeset for help on using the changeset viewer.