edu.stanford.nlp.parser.lexparser
Interface GrammarProjection


public interface GrammarProjection

Maps between the states of a more split and less split grammar. (Sort of a precursor to the idea of "coarse-to-fine" parsing.)

Author:
Dan Klein

Method Summary
 int project(int state)
           
 BinaryGrammar sourceBG()
           
 UnaryGrammar sourceUG()
           
 BinaryGrammar targetBG()
           
 UnaryGrammar targetUG()
           
 

Method Detail

project

int project(int state)

sourceUG

UnaryGrammar sourceUG()

sourceBG

BinaryGrammar sourceBG()

targetUG

UnaryGrammar targetUG()

targetBG

BinaryGrammar targetBG()


Stanford NLP Group