cf exper on res

This commit is contained in:
aarne
2005-11-15 16:54:56 +00:00
parent f2357e1bfd
commit a557898c2d
9 changed files with 222 additions and 25 deletions

View File

@@ -0,0 +1,28 @@
PredV0. S ::= "it" V0 ;
UseV. VP ::= V ;
ComplV2. VP ::= V2 NP ;
ComplV3. VP ::= V3 NP NP ;
ComplVV. VP ::= VV "to" VP ;
VP ::= Cop Comp ;
Comp ::= AP | NP | Adv ;
-- partial saturation
-- in the lexicon, we must give up verb agreement
V0 ::= "rain" | "rains" ;
V ::= "sleeps" | "sleep" ;
V2 ::= "loves" | "love" ;
V3 ::= "sends" | "send" ;
VV ::= "wants" | "want" ;
-- these may be eliminated
Cop ::= "is" | "are" | "isn't" | "aren't" | "be" ;
Do ::= "do" | "does" | "doesn't" | "don't" ;