Changeset 12062
- Timestamp:
- 02/23/15 17:30:50 (10 years ago)
- Location:
- branches/DataPreprocessingImprovements
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessingImprovements
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 12059
- Property svn:mergeinfo changed
-
branches/DataPreprocessingImprovements/HeuristicLab.DataPreprocessing/3.4/Implementations/FilteredPreprocessingData.cs
r11156 r12062 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/DataPreprocessingImprovements/HeuristicLab.DataPreprocessing/3.4/Interfaces/IPreprocessingData.cs
r12012 r12062 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.