1
0
forked from GitHub/gf-core

added missing PartNP and a classifier to CountNP in Chi

This commit is contained in:
aarne
2013-10-22 06:06:25 +00:00
parent cf05e78712
commit 098619ceee

View File

@@ -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?
}