Changeset 12121 for stable/HeuristicLab.DataPreprocessing
- Timestamp:
- 03/04/15 14:17:09 (10 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12057,12059-12060
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing/3.4/Implementations/FilteredPreprocessingData.cs
r11159 r12121 81 81 public string GetCellAsString(int columnIndex, int rowIndex) { 82 82 return ActiveData.GetCellAsString(columnIndex, rowIndex); 83 }84 85 public IList<T> GetValues<T>(string variableName, bool considerSelection) {86 return ActiveData.GetValues<T>(variableName, considerSelection);87 83 } 88 84 -
stable/HeuristicLab.DataPreprocessing/3.4/Interfaces/IPreprocessingData.cs
r12009 r12121 35 35 string GetCellAsString(int columnIndex, int rowIndex); 36 36 37 [Obsolete("use the index based variant, is faster")]38 IList<T> GetValues<T>(string variableName, bool considerSelection = false);39 37 IList<T> GetValues<T>(int columnIndex, bool considerSelection = false); 40 38
Note: See TracChangeset
for help on using the changeset viewer.