1
0
forked from GitHub/gf-core

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

25
grammars/dep/Dep.gf Normal file
View File

@@ -0,0 +1,25 @@
abstract Dep = {
cat
NType ;
VType ;
SG NType ;
NG NType ;
VG VType ;
CG VType ;
fun
NtS, NtQ : NType ;
Vt1, Vt2, VtS : VType ;
MkSG : (n : NType) -> (v : VType) -> NG n -> VG v -> CG v -> SG n ;
CG1 : CG Vt1 ;
CG2 : NG NtS -> CG Vt2 ;
John : NG NtS ;
Who : NG NtQ ;
Walk : VG Vt1 ;
Love : VG Vt2 ;
}