mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
19 lines
358 B
CFEngine3
19 lines
358 B
CFEngine3
Utt ::= S Punct ;
|
|
S ::= NP VP ;
|
|
VP ::= Cop NP ;
|
|
NP ::= PN ;
|
|
NP ::= Det CN ;
|
|
NP ::= CN ;
|
|
CN ::= CN PP ;
|
|
CN ::= AP CN ;
|
|
CN ::= N ;
|
|
AP ::= A ;
|
|
PP ::= Prep NP ;
|
|
Punct ::= "." ;
|
|
Cop ::= "is" ;
|
|
Det ::= "a" ;
|
|
Prep ::= "for" | "of" | "across" ;
|
|
PN ::= "UD" ;
|
|
N ::= "framework" | "annotation" | "grammar" | "languages" ;
|
|
A ::= "consistent" | "different" | "human" ;
|