summaryrefslogtreecommitdiff
path: root/grammars/dep/Dep.gf
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-08-14 07:58:04 +0000
committerbjorn <bjorn@bringert.net>2008-08-14 07:58:04 +0000
commit77270a010a0b453e9a84c3e62db7cfd22e49d55d (patch)
treed17682a545d6ac1e68ff49b8c20964182794baf7 /grammars/dep/Dep.gf
parent0bbb906141711767678f82b15a7b43e65e0b5bd6 (diff)
Remove the grammars directory. It was full of old grammars that don't compile these days. See the old source distributions if you want them.
Diffstat (limited to 'grammars/dep/Dep.gf')
-rw-r--r--grammars/dep/Dep.gf42
1 files changed, 0 insertions, 42 deletions
diff --git a/grammars/dep/Dep.gf b/grammars/dep/Dep.gf
deleted file mode 100644
index 76753547a..000000000
--- a/grammars/dep/Dep.gf
+++ /dev/null
@@ -1,42 +0,0 @@
-abstract Dep = {
- cat
- NType ;
- VType ;
- CType ;
- SG NType ;
- NG NType ;
- VG VType ;
- CG VType ;
-
- Slash ;
-
- fun
- NtS, NtQ : NType ;
- CtN, CtV, CtS, CtQ, CtA : CType ;
- Vt, VtN : CType -> VType ;
- Vt_ : VType ;
-
- MkSG : (n : NType) -> (v : VType) -> NG n -> VG v -> CG v -> SG n ;
-
- CG_ : CG Vt_ ;
- CGN : NG NtS -> CG (Vt CtN) ;
- CGS : SG NtS -> CG (Vt CtS) ;
- CGQ : SG NtQ -> CG (Vt CtQ) ;
-
- CGN_ : (c : CType) -> NG NtS -> CG (Vt c) -> CG (VtN c) ;
-
- MkSlash3 : NG NtS -> VG (VtN CtN) -> CG (Vt CtN) -> Slash ;
- MkSlash2 : (c : CType) -> NG NtS -> VG (VtN c) -> CG (Vt c) -> Slash ;
- MkSlash1 : NG NtS -> VG (Vt CtN) -> Slash ;
- SlashQ : NG NtQ -> Slash -> SG NtQ ;
-
- John : NG NtS ;
- Who : NG NtQ ;
-
- Walk : VG Vt_ ;
- Love : VG (Vt CtN) ;
- Know : VG (Vt CtS) ;
- Give : VG (VtN CtN) ;
- Tell : VG (VtN CtS) ;
- Ask : VG (VtN CtQ) ;
-}