1
0
forked from GitHub/gf-rgl

use SOFT_BIND in front of comma

This commit is contained in:
Krasimir Angelov
2023-10-10 09:32:56 +02:00
parent ca7d7d8fde
commit e22bb13eda
2 changed files with 3 additions and 3 deletions

View File

@@ -26,6 +26,6 @@ incomplete concrete PhraseRomance of Phrase =
PConjConj conj = {s = conj.s2} ;
NoVoc = {s = []} ;
VocNP np = {s = "," ++ (np.s ! Nom).ton} ;
VocNP np = {s = SOFT_BIND ++ "," ++ (np.s ! Nom).ton} ;
}

View File

@@ -175,12 +175,12 @@ incomplete concrete SentenceRomance of Sentence =
} ;
AdvS a s = {s = \\o => a.s ++ s.s ! o} ;
ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! o} ;
ExtAdvS a s = {s = \\o => a.s ++ SOFT_BIND ++ "," ++ s.s ! o} ;
SSubjS a s b = {s = \\m => a.s ! m ++ s.s ++ b.s ! s.m} ;
RelS s r = {
s = \\o => s.s ! o ++ "," ++ partQIndir ++ r.s ! Indic ! agrP3 Masc Sg
s = \\o => s.s ! o ++ SOFT_BIND ++ "," ++ partQIndir ++ r.s ! Indic ! agrP3 Masc Sg
} ;
}