1
0
forked from GitHub/gf-rgl

Conjunction with and_Conj should always be in plural

This commit is contained in:
Krasimir Angelov
2023-11-04 19:01:19 +01:00
parent 93fbfe8d26
commit a9b5848a5f

View File

@@ -169,8 +169,10 @@ concrete ConjunctionRus of Conjunction =
-- : Conj -> ListNP -> NP ; -- she or we
ConjNP conj xs = {
s = \\c => conj.s1 ++ xs.s1 ! c ++ conj.s2 ++ xs.s2 ! c ;
--prep = \\c => conj.s1 ++ xs.prep1 ! c ++ conj.s2 ++ xs.prep2 ! c ;
a = xs.a ; -- TODO: dep. on conj as well?
a = case conj.n of {
Sg => xs.a ;
Pl => case xs.a of {Ag gn p => Ag GPl p}
} ;
pron = xs.pron ;
anim = xs.anim
} ;