summaryrefslogtreecommitdiff
path: root/transfer/examples/reflexive/tree.tra
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-26 21:05:01 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-26 21:05:01 +0000
commitfb1d9b7d2c3c8261fc5a2ce3698e6749458b207a (patch)
tree466adc81f2c6ac803d20804863927c076e2b243a /transfer/examples/reflexive/tree.tra
parent33eb6d899fef48f2d38a92bc0fab66ff585be553 (diff)
removed transfer from gf3
Diffstat (limited to 'transfer/examples/reflexive/tree.tra')
-rw-r--r--transfer/examples/reflexive/tree.tra21
1 files changed, 0 insertions, 21 deletions
diff --git a/transfer/examples/reflexive/tree.tra b/transfer/examples/reflexive/tree.tra
deleted file mode 100644
index 7bef5e019..000000000
--- a/transfer/examples/reflexive/tree.tra
+++ /dev/null
@@ -1,21 +0,0 @@
-import prelude ;
-data Cat : Type where {
- Conj : Cat ;
- NP : Cat ;
- S : Cat ;
- V2 : Cat
-} ;
-data Tree : Cat -> Type where {
- And : Tree Conj ;
- Bill : Tree NP ;
- ConjNP : Tree Conj -> Tree NP -> Tree NP -> Tree NP ;
- John : Tree NP ;
- Mary : Tree NP ;
- Or : Tree Conj ;
- PredV2 : Tree V2 -> Tree NP -> Tree NP -> Tree S ;
- ReflV2 : Tree V2 -> Tree NP -> Tree S ;
- See : Tree V2 ;
- Whip : Tree V2
-} ;
-derive Eq Tree ;
-derive Compos Tree ;