Esempio n. 1
0
        public TokenizerTest()
        {
            SimpleDictionary dict = new SimpleDictionary();
            dict.Add("testing");

            tokenizer = new Tokenizer(dict);
        }
Esempio n. 2
0
 public Checker(Dictionary dictionary, int contextSize)
 {
     this.tokenizer = new Tokenizer(dictionary);
 }