You are looking at historical revision 34591 of this page. It may differ significantly from its current revision.

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 string) -> dictionary*
[procedure] (lg:create-dictionary-with-language string) -> dictionary*
[procedure] (lg:get-dictionary-language dictionary*) -> string
[procedure] (lg:get-dictionary-data-dir dictionary*) -> string
[procedure] (lg:set-dictionary-data-dir! string)
[procedure] (lg:delete-dictionary dictionary*)

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*)

Sentences

Linkages