You are looking at historical revision 34590 of this page. It may differ significantly from its current revision.
link grammar
Chicken bindings to the CMU link grammar parser.
Description
The link grammar parser is a syntactic parser of English, based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labeled links connecting pairs of words. The parser also produces a "constituent" representation of a sentence (showing noun phrases, verb phrases, etc.).
Author
David Ireland
API
System Initialization
Dictionary
[procedure] (lg:create-default-dictionary) -> dictionary*[procedure] (lg:create-dictionary-from-utf8 str)->dictionary*
[procedure] (lg:create-dictionary-with-language str) -> dictionary*
[procedure] (lg:delete-dictionary dictionary)
[procedure] (lg:get-dictionary-language dictionary) -> str
[procedure] (lg:set-dictionary-data-dir! str)
[procedure] (lg:get-dictionary-data-dir dictionary) -> str
Parse Options
[procedure] (lg:init-opts parse-options* int) -> parse-options*[procedure] (lg:set-max-parse-time! parse-options* int)
[procedure] (lg:set-linkage-limit! parse-options* int)
[procedure] (lg:set-short-length! parse-options* int)
[procedure] (lg:set-disjunct-cost! parse-options* int)
[procedure] (lg:set-min-null-count! parse-options* int)
[procedure] (lg:set-max-null-count! parse-options* int)
[procedure] (lg:reset-resources! parse-options*)
[procedure] (lg:resources-exhausted? parse-options*)
[procedure] (lg:memory-exhausted? parse-options*)
[procedure] (lg:timer-expired? parse-options*)
[procedure] (lg:set-max-parse-time! parse-options* int)
[procedure] (lg:set-islands-ok! parse-options* bool)
[procedure] (lg:set-verbosity! parse-options* int)
[procedure] (lg:get-verbosity parse-options*)
[procedure] (lg:delete-parse-options parse-options*)