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

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