Exemple #1
0
 public Category(string cat, ExcludedWords excluded)
 {
     m_Phrases  = new SortedDictionary <string, PhraseCount>();
     m_Excluded = excluded;
     m_Name     = cat;
 }
Exemple #2
0
 public Classifier()
 {
     m_Categories    = new SortedDictionary <string, ICategory>();
     m_ExcludedWords = new ExcludedWords();
     m_ExcludedWords.InitDefault();
 }
Exemple #3
0
 public EnumerableCategory(string Cat, ExcludedWords Excluded) : base(Cat, Excluded)
 {
 }