blob: 0ae9055f4c5db786baba2985e789d93d56c16401 [file] [log] [blame]
package joshua.decoder.segment_file;
public class ParseTreeInput extends Sentence {
public ParseTreeInput(String input, int id) {
super(input, id);
}
// looks_like_parse_tree = sentence.sentence().matches("^\\(+[A-Z]+ .*");
// private SyntaxTree syntax_tree;
// ParseTreeInput() {
// SyntaxTree syntax_tree = new ArraySyntaxTree(sentence.sentence(), Vocabulary);
// }
// public int[] int_sentence() {
// return syntax_tree.getTerminals();
// }
}