experiment with dep resource

This commit is contained in:
aarne
2005-08-31 20:43:38 +00:00
parent 62804db4fb
commit 78a8b4b2ce
4 changed files with 90 additions and 0 deletions

18
grammars/dep/App.gf Normal file
View File

@@ -0,0 +1,18 @@
abstract App = {
cat
S ; Q ;
NP ; QP ;
V ; V2 ;
fun
SPredV : NP -> V -> S ;
SPredV2 : NP -> V -> NP -> S ;
QPredV : QP -> V -> Q ;
QPredV2 : QP -> V -> NP -> Q ;
aJohn : NP ;
aWho : QP ;
aWalk : V ;
aLove : V2 ;
}