Package org.maltparserx.parser.history

Examples of org.maltparserx.parser.history.HistoryList


 
  public ParserState(Algorithm algorithm, AbstractParserFactory factory, int k) throws MaltChainedException {
    this.algorithm = algorithm;
    this.factory = factory;
    setSymboltables(algorithm.getManager().getSymbolTables());
    setHistoryStructure(new HistoryList());
    setTransitionSystem(factory.makeTransitionSystem());
    String decisionSettings = algorithm.getManager().getOptionValue("guide", "decision_settings").toString().trim();
    getTransitionSystem().initTableHandlers(decisionSettings, symboltables);
    setHistory(new History(decisionSettings, algorithm.getManager().getOptionValue("guide", "classitem_separator").toString(), getTransitionSystem().getTableHandlers()));
    getTransitionSystem().initTransitionSystem(history);
View Full Code Here

TOP

Related Classes of org.maltparserx.parser.history.HistoryList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.