Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/10/17 12:56:36 (6 years ago)
Author:
bwerth
Message:

#2847 worked on M5Regression

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs

    r15430 r15470  
    2828namespace HeuristicLab.Algorithms.DataAnalysis {
    2929  [StorableClass]
    30   public abstract class FixedDataAnalysisAlgorithm<T> : BasicAlgorithm where T : class, IDataAnalysisProblem {
     30  public abstract class FixedDataAnalysisAlgorithm<T> : BasicAlgorithm, IDataAnalysisAlgorithm<T> where T : class, IDataAnalysisProblem {
    3131    #region Properties
    3232    public override Type ProblemType {
     
    3434    }
    3535    public new T Problem {
    36       get { return (T)base.Problem; }
     36      get { return (T) base.Problem; }
    3737      set { base.Problem = value; }
    3838    }
    3939    #endregion
    4040
    41     public override bool SupportsPause { get { return false; } }
     41    public override bool SupportsPause {
     42      get { return false; }
     43    }
    4244
    4345    [StorableConstructor]
     
    4547    protected FixedDataAnalysisAlgorithm(FixedDataAnalysisAlgorithm<T> original, Cloner cloner) : base(original, cloner) { }
    4648    public FixedDataAnalysisAlgorithm() : base() { }
    47 
    4849  }
    4950}
Note: See TracChangeset for help on using the changeset viewer.