Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/10 00:01:24 (14 years ago)
Author:
swagner
Message:

Implemented !IStorableContent separately for each algorithm (#1193)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.3/SupportVectorMachine.cs

    r4068 r4437  
    3939  [Creatable("Data Analysis")]
    4040  [StorableClass]
    41   public sealed class SupportVectorMachine : EngineAlgorithm {
     41  public sealed class SupportVectorMachine : EngineAlgorithm, IStorableContent {
    4242    private const string TrainingSamplesStartParameterName = "Training start";
    4343    private const string TrainingSamplesEndParameterName = "Training end";
     
    4949    private const string GammaParameterName = "Gamma";
    5050    private const string EpsilonParameterName = "Epsilon";
    51 
    5251    private const string ModelParameterName = "SupportVectorMachineModel";
     52
     53    public string Filename { get; set; }
     54
    5355    #region Problem Properties
    5456    public override Type ProblemType {
Note: See TracChangeset for help on using the changeset viewer.