1
0
forked from GitHub/gf-core

restoring the discontinuous Ger NP parts in some linearizations

This commit is contained in:
aarne
2015-07-27 09:14:10 +00:00
parent 0941e98a00
commit 6519a3b72e
6 changed files with 10 additions and 11 deletions

View File

@@ -13,7 +13,7 @@ concrete PhraseGer of Phrase = CatGer ** open Prelude, ResGer in {
UttIP ip = {s = ip.s ! Nom} ; --- Acc also
UttIAdv iadv = iadv ;
UttNP np = {s = np.s ! NPC Nom} ;
UttNP np = {s = np.s ! NPC Nom ++ bigNP np} ;
UttVP vp = {s = useInfVP True vp} ; -- without zu
UttAdv adv = adv ;
UttCN n = {s = n.s ! Strong ! Sg ! Nom} ;
@@ -25,6 +25,6 @@ concrete PhraseGer of Phrase = CatGer ** open Prelude, ResGer in {
PConjConj conj = ss (conj.s2) ;
NoVoc = {s = []} ;
VocNP np = {s = "," ++ np.s ! NPC Nom} ;
VocNP np = {s = "," ++ np.s ! NPC Nom ++ bigNP np} ;
}