* @param cutoff The number of times an n-gram needs to occur to be saved.
*/
public MutableDictionary(int cutoff) {
super();
this.cutoff = cutoff;
wordMap = new CountedNumberedSet();
nGramFactory = new NGramFactory(wordMap);
gramSet = new CountedSet();
wordCounts = new ArrayList();
}