mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-27 17:08:54 -06:00
(Ara) Add a field to VP: whether to use negative copula for negation
This commit is contained in:
@@ -450,6 +450,7 @@ oper
|
||||
|
||||
VP : Type = BaseVP ** {
|
||||
s : PerGenNum => VPForm => Str ;
|
||||
isPoss : Bool; -- special case for have_V2, to get negation right /IL
|
||||
} ;
|
||||
|
||||
uttVP : VPForm -> VP -> (Gender=>Str) = \vpf,vp ->
|
||||
@@ -470,7 +471,7 @@ oper
|
||||
obj = emptyObj ;
|
||||
s2 = [];
|
||||
pred = {s = \\_,_ => []} ;
|
||||
isPred = False
|
||||
isPred,isPoss = False
|
||||
};
|
||||
|
||||
passPredV : Verb -> VP = \v ->
|
||||
@@ -614,7 +615,8 @@ oper
|
||||
lam = "لَمْ" ; -- neg. past
|
||||
alla = "أَلَّا" ; -- neg. subjunctive
|
||||
lan = "لَنْ" ; -- neg. future
|
||||
in case <vp.isPred,tn,pl,o> of {
|
||||
in case <vp.isPred,tn,pl,o,vp.isPoss> of {
|
||||
<False, Pres, Neg, _, True> => laysa ! Per3 Masc Sg ++ yaktubu ; -- special case for have_V2
|
||||
<False, Pres, Pos, _> => yaktubu ;
|
||||
<False, Pres, Neg, _> => la ++ yaktubu ;
|
||||
<True, Pres, Pos, _> => [] ; --no verb "to be" in present
|
||||
@@ -647,7 +649,12 @@ oper
|
||||
} ;
|
||||
|
||||
slashV2 : Verb2 -> VPSlash = \v ->
|
||||
predV v ** {c2 = v.c2 ; agrObj = \\_ => []} ;
|
||||
predV v ** {
|
||||
c2 = v.c2 ; agrObj = \\_ => [] ;
|
||||
isPoss = case v.c2.c of {
|
||||
Nom => True ; -- for have_V2
|
||||
_ => False } ;
|
||||
} ;
|
||||
|
||||
-- Add subject string, fix agreement to the subject,
|
||||
-- but keep the structure as VP, because later on
|
||||
|
||||
Reference in New Issue
Block a user