public SearchResults VSMsearch(String query, int limit)
throws CorruptIndexException, IOException {
// Implements similarity with the Vector Space Model
DefaultSimilarityProvider provider = new DefaultSimilarityProvider();
this.setSimilarityProvider(provider);
return this.search(query, limit);
}