From 806d9f41271c6cc279c174766e93433c6120fba7 Mon Sep 17 00:00:00 2001 From: aarne Date: Mon, 28 May 2012 12:51:08 +0000 Subject: [PATCH] plural articles in ResourceDemo --- lib/src/demo/ResourceDemo.gf | 2 +- lib/src/demo/ResourceDemoEng.gf | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/src/demo/ResourceDemo.gf b/lib/src/demo/ResourceDemo.gf index 6e1f88b2d..d4ac7c53e 100644 --- a/lib/src/demo/ResourceDemo.gf +++ b/lib/src/demo/ResourceDemo.gf @@ -127,7 +127,7 @@ fun ConjS : Conj -> S -> S -> S ; ConjAP : Conj -> AP -> AP -> AP ; ConjNP : Conj -> NP -> NP -> NP ; - a_Det, the_Det : Det ; + a_Det, the_Det, aPl_Det, thePl_Det : Det ; this_Det, these_Det : Det ; that_Det, those_Det : Det ; possDet : Pron -> Det ; diff --git a/lib/src/demo/ResourceDemoEng.gf b/lib/src/demo/ResourceDemoEng.gf index 052b69360..dd1367a4c 100644 --- a/lib/src/demo/ResourceDemoEng.gf +++ b/lib/src/demo/ResourceDemoEng.gf @@ -131,6 +131,8 @@ lin ConjNP co x y = mkNP co x y ; a_Det = mkDet a_Quant ; the_Det = mkDet the_Quant ; + aPl_Det = mkDet a_Quant plNum ; + thePl_Det = mkDet the_Quant plNum ; this_Det = S.this_Det ; these_Det = S.these_Det ; that_Det = S.that_Det ;