mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
21 lines
466 B
Plaintext
21 lines
466 B
Plaintext
abstract Agreement = {
|
|
cat
|
|
NP ;
|
|
CN ;
|
|
N ;
|
|
A ;
|
|
Det ;
|
|
|
|
fun
|
|
DetCN : Det -> CN -> NP ; -- this black cat
|
|
AdjCN : A -> N -> CN ; -- black cat
|
|
UseN : N -> CN ; -- cat
|
|
|
|
cat_N : N ;
|
|
house_N : N ;
|
|
black_A : A ;
|
|
big_A : A ;
|
|
-- simplification of pronouns just to make English interesting
|
|
this_Det : Det ;
|
|
these_Det : Det ;
|
|
} |