This article relies largely or entirely on a single source. Relevant discussion may be found on the talk page. Please help improve this article by introducing citations to additional sources. Find sources: "Left corner" – news · newspapers · books · scholar · JSTOR (April 2024) |
In formal language theory, the left corner of a production rule in a context-free grammar is the left-most symbol on the right side of the rule.
For example, in the rule A→Xα, X is the left corner.
The left corner table associates to a symbol all possible left corners for that symbol, and the left corners of those symbols, etc.
Given the grammar
- S → VP
- S → NP VP
- VP → V NP
- NP → DET N
the left corner table is as follows.
Symbol | Left corner(s) |
---|---|
S | VP, NP, V, DET |
NP | DET |
VP | V |
Left corners are used to add bottom-up filtering to a top-down parser, or top-down filtering to a bottom-up parser.
References
- 9.3 Using Left-corner Tables, Patrick Blackburn and Kristina Striegnitz, Natural Language Processing Techniques in Prolog
This computer science article is a stub. You can help Misplaced Pages by expanding it. |