Parsing Engine

Uses of Package
danbikel.lisp

Packages that use danbikel.lisp
danbikel.lisp Provides classes to create, read and manipulate symbolic expressions (S-expressions), including interned symbols. 
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.chinese Provides language-specific classes necessary to parse Chinese. 
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. 
danbikel.parser.util Utility classes for displaying and manipulating parse trees. 
 

Classes in danbikel.lisp used by danbikel.lisp
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpList
          Stores a list of Sexp objects, which are either symbols or themselves lists.
SexpTokenizer
          A class for tokenizing simple S-expressions, where there are only strings delimited by whitespace or parentheses (as implemented by WordTokenizer).
Symbol
          Symbol objects associate strings or integers with unique references.
WordTokenizer
          A simple tokenizer for words only (no numbers and no significant eol chars).
 

Classes in danbikel.lisp used by danbikel.parser
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpConvertible
          A simple interface to identify classes that have a method that converts instances to Sexp objects.
SexpList
          Stores a list of Sexp objects, which are either symbols or themselves lists.
SexpTokenizer
          A class for tokenizing simple S-expressions, where there are only strings delimited by whitespace or parentheses (as implemented by WordTokenizer).
Symbol
          Symbol objects associate strings or integers with unique references.
 

Classes in danbikel.lisp used by danbikel.parser.arabic
Symbol
          Symbol objects associate strings or integers with unique references.
 

Classes in danbikel.lisp used by danbikel.parser.chinese
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
 

Classes in danbikel.lisp used by danbikel.parser.constraints
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpConvertible
          A simple interface to identify classes that have a method that converts instances to Sexp objects.
Symbol
          Symbol objects associate strings or integers with unique references.
 

Classes in danbikel.lisp used by danbikel.parser.english
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpList
          Stores a list of Sexp objects, which are either symbols or themselves lists.
Symbol
          Symbol objects associate strings or integers with unique references.
 

Classes in danbikel.lisp used by danbikel.parser.lang
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpList
          Stores a list of Sexp objects, which are either symbols or themselves lists.
SexpTokenizer
          A class for tokenizing simple S-expressions, where there are only strings delimited by whitespace or parentheses (as implemented by WordTokenizer).
Symbol
          Symbol objects associate strings or integers with unique references.
 

Classes in danbikel.lisp used by danbikel.parser.util
Sexp
          This class provides the abstract base type for S-epxressions, which are either symbols or lists.
SexpList
          Stores a list of Sexp objects, which are either symbols or themselves lists.
SexpTokenizer
          A class for tokenizing simple S-expressions, where there are only strings delimited by whitespace or parentheses (as implemented by WordTokenizer).
Symbol
          Symbol objects associate strings or integers with unique references.
 


Parsing Engine

Author: Dan Bikel.