Changeset 10367 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ISearchLogic.cs
- Timestamp:
- 01/22/14 14:13:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ISearchLogic.cs
r10236 r10367 17 17 /// </summary> 18 18 /// <returns></returns> 19 IEnumerable<int> GetMissingValueIndices( string variableName);19 IEnumerable<int> GetMissingValueIndices(int columnIndex); 20 20 21 bool IsMissingValue( string variableName, int rowIndex);21 bool IsMissingValue(int columnIndex, int rowIndex); 22 22 } 23 23 }
Note: See TracChangeset
for help on using the changeset viewer.