Parsing Engine

Uses of Interface
danbikel.parser.HeadFinder

Packages that use HeadFinder
danbikel.parser Provides the core framework of this extensible statistical parsing engine. 
danbikel.parser.arabic Provides language-specific classes necessary to parse Arabic. 
danbikel.parser.constraints Provides interfaces and classes to allow constrain-parsing. 
danbikel.parser.english Provides language-specific classes necessary to parse English. 
danbikel.parser.lang Provides default abstract base classes for the required interfaces of a language package. 
 

Uses of HeadFinder in danbikel.parser
 

Methods in danbikel.parser that return HeadFinder
static HeadFinder Language.headFinder()
          Gets the HeadFinder object for the current language.
 

Uses of HeadFinder in danbikel.parser.arabic
 

Classes in danbikel.parser.arabic that implement HeadFinder
 class HeadFinder
          A class to find heads for context-free productions in Arabic syntax trees.
 

Uses of HeadFinder in danbikel.parser.constraints
 

Constructors in danbikel.parser.constraints with parameters of type HeadFinder
LexTreeConstraint(LexTreeConstraint parent, Sexp tree, IntCounter currWordIdx, HeadFinder headFinder)
          Constructs a tree of constraints that is isomorphic to the specified parse tree.
PartialLexTreeConstraint(PartialLexTreeConstraint parent, Sexp tree, IntCounter currWordIdx, HeadFinder headFinder)
          A helper constructor used by PartialLexTreeConstraint.PartialLexTreeConstraint(Sexp) to construct an entire tree of constraints.
 

Uses of HeadFinder in danbikel.parser.english
 

Classes in danbikel.parser.english that implement HeadFinder
 class BrokenHeadFinder
          Reads a series of heuristics to determine the distinguished head child of a context-free production (a parent and its ordered list of children in a syntax tree).
 

Uses of HeadFinder in danbikel.parser.lang
 

Classes in danbikel.parser.lang that implement HeadFinder
 class AbstractHeadFinder
          Provides a default abstract implementation of the HeadFinder interface.
 

Fields in danbikel.parser.lang declared as HeadFinder
protected  HeadFinder AbstractTraining.headFinder
          Holds the value of Language.headFinder().
 


Parsing Engine

Author: Dan Bikel.