1
0
forked from GitHub/gf-rgl

corrected use of possess_Prep in Chi to avoid double "de"

This commit is contained in:
aarne
2014-03-20 06:56:44 +00:00
parent 5697f22ea3
commit 3e80f7f94d
5 changed files with 14 additions and 8 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ concrete NounChi of Noun = CatChi ** open ResChi, Prelude in {
PPartNP np v2 = mkNP ((predV v2 v2.part).verb.s ++ possessive_s ++ np.s) ; ---- ??
AdvNP np adv = mkNP (adv.s ++ possessive_s ++ np.s) ;
AdvNP np adv = mkNP (adv.s ++ possessiveIf adv.advType ++ np.s) ;
DetQuant quant num = {
s = case num.numType of {
@@ -79,7 +79,7 @@ concrete NounChi of Noun = CatChi ** open ResChi, Prelude in {
} ;
RelCN cn rs = {s = rs.s ++ cn.s ; c = cn.c} ;
AdvCN cn ad = {s = ad.s ++ possessive_s ++ cn.s ; c = cn.c} ;
AdvCN cn ad = {s = ad.s ++ possessiveIf ad.advType ++ cn.s ; c = cn.c} ;
SentCN cn cs = {s = cs.s ++ cn.s ; c = cn.c} ;
ApposCN cn np = {s = np.s ++ cn.s ; c = cn.c} ;