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/LinearRegression.cs

    r4068 r4437  
    4141  [Creatable("Data Analysis")]
    4242  [StorableClass]
    43   public sealed class LinearRegression : EngineAlgorithm {
     43  public sealed class LinearRegression : EngineAlgorithm, IStorableContent {
    4444    private const string TrainingSamplesStartParameterName = "Training start";
    4545    private const string TrainingSamplesEndParameterName = "Training end";
     
    4747    private const string ModelInterpreterParameterName = "Model interpreter";
    4848
     49    public string Filename { get; set; }
    4950
    5051    #region Problem Properties
Note: See TracChangeset for help on using the changeset viewer.