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.GradientDescent/3.3/LbfgsAnalyzer.cs

    r16453 r16462  
    2929using HeuristicLab.Optimization;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Fossil;
    3232
    3333namespace HeuristicLab.Algorithms.GradientDescent {
    34   [StorableClass]
     34  [StorableType("7BE2AE6F-BC67-4F98-9C4F-9D077E9A4E3B")]
    3535  [Item(Name = "LBFGS Analyzer", Description = "Analyzer to collect results for the LM-BFGS algorithm.")]
    3636  public sealed class LbfgsAnalyzer : SingleSuccessorOperator, IAnalyzer {
     
    8989
    9090    [StorableConstructor]
    91     private LbfgsAnalyzer(bool deserializing) : base(deserializing) { }
     91    private LbfgsAnalyzer(StorableConstructorFlag _) : base(_) { }
    9292    private LbfgsAnalyzer(LbfgsAnalyzer original, Cloner cloner) : base(original, cloner) { }
    9393    public LbfgsAnalyzer()
Note: See TracChangeset for help on using the changeset viewer.