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/SupportVectorMachine/SupportVectorClassification.cs

    r16453 r16462  
    2929using HeuristicLab.Optimization;
    3030using HeuristicLab.Parameters;
    31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     31using HEAL.Fossil;
    3232using HeuristicLab.Problems.DataAnalysis;
    3333using LibSVM;
     
    3939  [Item("Support Vector Classification (SVM)", "Support vector machine classification data analysis algorithm (wrapper for libSVM).")]
    4040  [Creatable(CreatableAttribute.Categories.DataAnalysisClassification, Priority = 110)]
    41   [StorableClass]
     41  [StorableType("F15289E4-B648-4A92-AB01-14D769A33967")]
    4242  public sealed class SupportVectorClassification : FixedDataAnalysisAlgorithm<IClassificationProblem> {
    4343    private const string SvmTypeParameterName = "SvmType";
     
    9999    #endregion
    100100    [StorableConstructor]
    101     private SupportVectorClassification(bool deserializing) : base(deserializing) { }
     101    private SupportVectorClassification(StorableConstructorFlag _) : base(_) { }
    102102    private SupportVectorClassification(SupportVectorClassification original, Cloner cloner)
    103103      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.