Changeset 15470 for branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs
- Timestamp:
- 11/10/17 12:56:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs
r15430 r15470 28 28 namespace HeuristicLab.Algorithms.DataAnalysis { 29 29 [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 { 31 31 #region Properties 32 32 public override Type ProblemType { … … 34 34 } 35 35 public new T Problem { 36 get { return (T) base.Problem; }36 get { return (T) base.Problem; } 37 37 set { base.Problem = value; } 38 38 } 39 39 #endregion 40 40 41 public override bool SupportsPause { get { return false; } } 41 public override bool SupportsPause { 42 get { return false; } 43 } 42 44 43 45 [StorableConstructor] … … 45 47 protected FixedDataAnalysisAlgorithm(FixedDataAnalysisAlgorithm<T> original, Cloner cloner) : base(original, cloner) { } 46 48 public FixedDataAnalysisAlgorithm() : base() { } 47 48 49 } 49 50 }
Note: See TracChangeset
for help on using the changeset viewer.