(Hun) Add number as a parameter to APs complement

This commit is contained in:
Inari Listenmaa
2020-04-26 14:15:31 +02:00
parent d7e10e843b
commit b723ae1a75
6 changed files with 16 additions and 16 deletions
+3 -4
View File
@@ -110,10 +110,9 @@ lin
-- : AP -> Comp ;
CompAP ap = UseCopula ** {
s = \\vf => case vf of {
VPres P3 n => ap.s ! n ! Nom ;
VPres _ n => ap.s ! n ! Nom ++ copula.s ! vf ;
_ => ap.s ! Sg ! Nom ++ copula.s ! vf}
++ ap.compar ;
VPres P3 n => ap.s ! n ! Nom ++ ap.compl ! n ;
VPres _ n => ap.s ! n ! Nom ++ copula.s ! vf ++ ap.compl ! n ;
_ => ap.s ! Sg ! Nom ++ copula.s ! vf ++ ap.compl ! Sg } ;
} ;
-- : CN -> Comp ;