using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HeuristicLab.DataPreprocessing {
public interface ISearchLogic {
///
/// Return the indices of the missing values where the key
/// correspdonds to the variable name and the values to the row indices
///
///
IDictionary> GetMissingValueIndices();
///
/// Return the row indices of the cells which contain a missing value
///
///
IEnumerable GetMissingValueIndices(int columnIndex);
bool IsMissingValue(int columnIndex, int rowIndex);
}
}