![JAR search and dependency download from the Maven repository](/logo.png)
com.as.text_understanding.representation.tree.Tree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-understanding Show documentation
Show all versions of text-understanding Show documentation
Analyzing natural-language text, in particular predicate-argument structure.
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