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, 18 insertions, 0 deletions
diff --git a/grammars/dep/App.gf b/grammars/dep/App.gf
new file mode 100644
index 000000000..769cab02e
--- /dev/null
+++ b/grammars/dep/App.gf
@@ -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 ;
+}