From 4848f6fb0b92751cc1001b9ea92df9c66e6601dd Mon Sep 17 00:00:00 2001 From: aarne Date: Tue, 22 Oct 2013 06:06:25 +0000 Subject: [PATCH] added missing PartNP and a classifier to CountNP in Chi --- src/chinese/NounChi.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/chinese/NounChi.gf b/src/chinese/NounChi.gf index c4d379eb5..017cbb6b8 100644 --- a/src/chinese/NounChi.gf +++ b/src/chinese/NounChi.gf @@ -86,7 +86,8 @@ concrete NounChi of Noun = CatChi ** open ResChi, Prelude in { RelNP np rs = mkNP (rs.s ++ np.s) ; PossNP cn np = {s = np.s ++ possessive_s ++ cn.s ; c = cn.c} ; + PartNP cn np = {s = np.s ++ possessive_s ++ cn.s ; c = cn.c} ; - CountNP det np = {s = det.s ++ possessive_s ++ np.s} ; ---- classifier? + CountNP det np = {s = det.s ++ ge_s ++ possessive_s ++ np.s} ; --- classifier from NP? }