Exemple #1
0
 /// <summary>
 /// Modifies the file in the inverted Index Table.
 /// </summary>
 /// <param name="doc">The document that was Modified.</param>
 public static Document ModifyFile(Document doc)
 {
     String[] words = Semanter.Splitwords(x.Extract(doc.Address).Text);
     return(invt.ModifyDocument(words, doc));
 }