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.DataAnalysis/3.4/Nca/NcaClassificationSolution.cs

    r16453 r16462  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Fossil;
    2525using HeuristicLab.Problems.DataAnalysis;
    2626
    2727namespace HeuristicLab.Algorithms.DataAnalysis {
    2828  [Item("NCA Classification Solution", "")]
    29   [StorableClass]
     29  [StorableType("3FE3A37F-2926-43EB-AC77-3C80654D93AA")]
    3030  public class NcaClassificationSolution : ClassificationSolution, INcaClassificationSolution {
    3131
     
    3636
    3737    [StorableConstructor]
    38     protected NcaClassificationSolution(bool deserializing) : base(deserializing) { }
     38    protected NcaClassificationSolution(StorableConstructorFlag _) : base(_) { }
    3939    protected NcaClassificationSolution(NcaClassificationSolution original, Cloner cloner)
    4040      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.