From 098619ceeeeba9328204a459fa0bb82d5a78a05f 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 --- lib/src/chinese/NounChi.gf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/chinese/NounChi.gf b/lib/src/chinese/NounChi.gf index c4d379eb5..017cbb6b8 100644 --- a/lib/src/chinese/NounChi.gf +++ b/lib/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? }