Changeset 12105 for branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.DataPreprocessing/3.4
- Timestamp:
- 03/03/15 11:18:07 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12037,12041,12057,12059-12060,12067,12069-12070,12072,12074,12076-12078,12085,12087-12091,12093,12095-12096,12100-12104
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.DataPreprocessing/3.4/Implementations/FilteredPreprocessingData.cs
r11156 r12105 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 -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.DataPreprocessing/3.4/Interfaces/IPreprocessingData.cs
r12031 r12105 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.