1
0
forked from GitHub/gf-rgl

double negation in EmbedVP, ImpVP and UttVP

This commit is contained in:
Krasimir Angelov
2018-07-10 11:21:45 +02:00
parent 326d9edb22
commit 112aea1efc
2 changed files with 6 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ concrete PhraseBul of Phrase = CatBul ** open Prelude, ResBul in {
UttIP ip = {s = ip.s ! RSubj ! QDir} ; UttIP ip = {s = ip.s ! RSubj ! QDir} ;
UttIAdv iadv = {s = iadv.s ! QDir} ; UttIAdv iadv = {s = iadv.s ! QDir} ;
UttNP np = {s = np.s ! RSubj} ; UttNP np = {s = np.s ! RSubj} ;
UttVP vp = {s = daComplex Simul Pos vp ! Perf ! agrP3 (GSg Neut)} ; UttVP vp = {s = daComplex Simul vp.p vp ! Perf ! agrP3 (GSg Neut)} ;
UttAdv adv = adv ; UttAdv adv = adv ;
UttCN n = {s = n.s ! NF Sg Indef} ; UttCN n = {s = n.s ! NF Sg Indef} ;
UttCard n = {s = n.s ! CFNeut Indef} ; UttCard n = {s = n.s ! CFNeut Indef} ;

View File

@@ -25,8 +25,10 @@ concrete SentenceBul of Sentence = CatBul ** open Prelude, ResBul in {
VPhrasal Dat => personalClitics agr ! Dat++vp.clitics; VPhrasal Dat => personalClitics agr ! Dat++vp.clitics;
VPhrasal c => vp.clitics++personalClitics agr ! c VPhrasal c => vp.clitics++personalClitics agr ! c
} }
in case p of {Pos => vp.ad.s ++ verb Perf ++ clitic ; in case orPol p vp.p of {
Neg => "íå" ++ vp.ad.s ++ clitic ++ verb Imperf} ++ compl ; Pos => vp.ad.s ++ verb Perf ++ clitic ;
Neg => "íå" ++ vp.ad.s ++ clitic ++ verb Imperf
} ++ compl ;
} ; } ;
SlashVP np slash = { SlashVP np slash = {
@@ -55,7 +57,7 @@ concrete SentenceBul of Sentence = CatBul ** open Prelude, ResBul in {
EmbedS s = {s = \\_ => "֌" ++ s.s} ; EmbedS s = {s = \\_ => "֌" ++ s.s} ;
EmbedQS qs = {s = \\_ => qs.s ! QIndir} ; EmbedQS qs = {s = \\_ => qs.s ! QIndir} ;
EmbedVP vp = {s = \\agr => daComplex Simul Pos vp ! Perf ! agr} ; EmbedVP vp = {s = \\agr => daComplex Simul vp.p vp ! Perf ! agr} ;
UseCl t p cl = { UseCl t p cl = {
s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! Main s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! Main