public InvertedIndex(string path)
 {
     index = new SortedDictionary<string, List<int>>();
     docParser = new DocumentParser(path);
     FileName = @"\InvIndex.txt";
 }
 public IncidenceMatrix(string path)
 {
     docParser = new DocumentParser(path);
 }