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.Problems.ExternalEvaluation/3.4/EvaluationCache.cs

    r16453 r16462  
    3636using HeuristicLab.Data;
    3737using HeuristicLab.Parameters;
    38 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     38using HEAL.Fossil;
    3939
    4040namespace HeuristicLab.Problems.ExternalEvaluation {
    4141
    4242  [Item("EvaluationCache", "Cache for external evaluation values")]
    43   [StorableClass]
     43  [StorableType("FDB10541-FA1C-4CF9-8175-83A55700C052")]
    4444  public class EvaluationCache : ParameterizedNamedItem {
    4545
     
    199199    #region Construction & Cloning
    200200    [StorableConstructor]
    201     protected EvaluationCache(bool deserializing) : base(deserializing) { }
     201    protected EvaluationCache(StorableConstructorFlag _) : base(_) { }
    202202    protected EvaluationCache(EvaluationCache original, Cloner cloner)
    203203        : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.