Changeset 5618 for branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Timestamp:
- 03/07/11 14:23:26 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/IDataAnalysisAlgorithm.cs
r5617 r5618 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using HeuristicLab.Core;25 22 using HeuristicLab.Optimization; 26 23 using HeuristicLab.Problems.DataAnalysis; … … 31 28 /// </summary> 32 29 public interface IDataAnalysisAlgorithm<T> : IAlgorithm where T : class, IDataAnalysisProblem { 33 T Problem { get; }30 new T Problem { get; } 34 31 } 35 32 }
Note: See TracChangeset
for help on using the changeset viewer.