summaryrefslogtreecommitdiff
path: root/transfer/examples/aggregation/English.gf
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2005-12-05 16:45:11 +0000
committerbringert <bringert@cs.chalmers.se>2005-12-05 16:45:11 +0000
commit7c24fcb38faeaada097d2797e9cb0f305dbc637e (patch)
tree5bee5bf8b09793d72ba4b8c60d90f3a72f6f7bec /transfer/examples/aggregation/English.gf
parent747271941a9e4f698e985d6cb58efe2994e60d61 (diff)
Added aggregation example.
Diffstat (limited to 'transfer/examples/aggregation/English.gf')
-rw-r--r--transfer/examples/aggregation/English.gf18
1 files changed, 18 insertions, 0 deletions
diff --git a/transfer/examples/aggregation/English.gf b/transfer/examples/aggregation/English.gf
new file mode 100644
index 000000000..21da16b23
--- /dev/null
+++ b/transfer/examples/aggregation/English.gf
@@ -0,0 +1,18 @@
+concrete English of Abstract = {
+
+pattern
+ Pred np vp = np ++ vp ;
+ ConjS c A B = A ++ c ++ B ;
+ ConjVP c A B = A ++ c ++ B ;
+ ConjNP c A B = A ++ c ++ B ;
+
+ John = "John" ;
+ Mary = "Mary" ;
+ Bill = "Bill" ;
+ Walk = "walks" ;
+ Run = "runs" ;
+ Swim = "swims" ;
+
+ And = "and" ;
+ Or = "or" ;
+}