Ejemplo n.º 1
0
 public HyphenationTree()
 {
     stoplist = new Dictionary<string,List<object>>(23);    // usually a small table
     classmap = new TernaryTree();
     vspace = new ByteVector();
     vspace.Alloc(1);    // this reserves index 0, which we don't use
 }
Ejemplo n.º 2
0
 public HyphenationTree() {
     stoplist = new Hashtable(23);    // usually a small table
     classmap = new TernaryTree();
     vspace = new ByteVector();
     vspace.Alloc(1);    // this reserves index 0, which we don't use
 }