All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.as.text_understanding.representation.tree.Tree Maven / Gradle / Ivy

The newest version!
package com.as.text_understanding.representation.tree;


/**
 * Represents a constituency parse-tree.
 *
 * 
* Date: Feb 24, 2016 * @author Asher Stern * */ public class Tree { public Tree(TreeNode root) { super(); this.root = root; } public TreeNode getRoot() { return root; } private final TreeNode root; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy