extended cf syntax; Det experiment

This commit is contained in:
aarne
2005-11-15 10:43:32 +00:00
parent fdc6eaa6ee
commit 50044f7686
7 changed files with 616 additions and 17 deletions

25
lib/resource/exper/Det.cf Normal file
View File

@@ -0,0 +1,25 @@
NP ::= Det CN ;
Det ::= Predets Quants ;
Predets ::= ;
Predets ::= "only" | "just" ;
Quants ::= "this" | "my" | "one" | "the" | "a" | "every" | "some" ;
NP ::= Detp CNp ;
Detp ::= Predet Quant Num ;
Predet ::= ;
Quant ::= ;
Num ::= ;
Predet ::= "all" | "only" | "just" ;
Quant ::= "these" | "my" | "many" | "some" ;
Num ::= "four" ;
CNp ::= "sons" ;
CN ::= "son" ;
--