summaryrefslogtreecommitdiff
path: root/grammars/dep/App.gf
diff options
context:
space:
mode:
Diffstat (limited to 'grammars/dep/App.gf')
-rw-r--r--grammars/dep/App.gf18
1 files changed, 0 insertions, 18 deletions
diff --git a/grammars/dep/App.gf b/grammars/dep/App.gf
deleted file mode 100644
index 769cab02e..000000000
--- a/grammars/dep/App.gf
+++ /dev/null
@@ -1,18 +0,0 @@
-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 ;
-}