From 51da7e3c0f5e743f3508fa3e6b645f2ccacb81ab Mon Sep 17 00:00:00 2001 From: peb Date: Thu, 29 Apr 2004 08:11:20 +0000 Subject: 29/4-04, peb: added directory 'testConversions' with a simple grammar for testing grammar conversions --- grammars/testConversions/SimpleAbs.gf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 grammars/testConversions/SimpleAbs.gf (limited to 'grammars/testConversions/SimpleAbs.gf') diff --git a/grammars/testConversions/SimpleAbs.gf b/grammars/testConversions/SimpleAbs.gf new file mode 100644 index 000000000..0cd6d3a05 --- /dev/null +++ b/grammars/testConversions/SimpleAbs.gf @@ -0,0 +1,24 @@ + +abstract SimpleAbs = { + +cat +S; VP; NP; V; N; D; + +fun +cyclic : S -> S; +mkS : NP -> V -> S; +mkVP : V -> NP -> VP; +mkNP1 : D -> N -> NP; +mkNP2 : N -> NP; + +robin : NP; +dog : N; +child : N; +love : V; +hate : V; +one : D; +all : D; + +} + + -- cgit v1.2.3