mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
30 lines
359 B
Plaintext
30 lines
359 B
Plaintext
abstract Intro = {
|
|
|
|
cat
|
|
S ;
|
|
NP ;
|
|
VP ;
|
|
CN ;
|
|
AP ;
|
|
Det ;
|
|
Pron ;
|
|
N ;
|
|
A ;
|
|
V2 ;
|
|
|
|
fun
|
|
PredVP : NP -> VP -> S ;
|
|
ComplV2 : V2 -> NP -> VP ;
|
|
DetCN : Det -> CN -> NP ;
|
|
AdjCN : AP -> CN -> CN ;
|
|
UseN : N -> CN ;
|
|
UseA : A -> AP ;
|
|
UsePron : Pron -> NP ;
|
|
|
|
the_Det : Det ;
|
|
black_A : A ;
|
|
cat_N : N ;
|
|
see_V2 : V2 ;
|
|
we_Pron : Pron ;
|
|
|
|
} |