Exemplo n.º 1
0
 /**
  * Constructs a constituent tree using the specific root node.
  *
  * @param root the root node of this tree.
  */
 public CTTree(CTNode root) {
   n_root = root;
   initTerminals();
   linkEmtpyCategories();
 }