1
0
forked from GitHub/gf-rgl

added CompoundN

This commit is contained in:
Krasimir Angelov
2024-06-14 17:02:04 +02:00
parent c2b8d98400
commit f36bbade45

View File

@@ -6,7 +6,8 @@ concrete ExtendDut of Extend =
VPS,
BaseVPS, ConsVPS,
MkVPS, ConjVPS, PredVPS,
PassVPSlash, PassAgentVPSlash
PassVPSlash, PassAgentVPSlash,
CompoundN
]
with
(Grammar = GrammarDut) **
@@ -121,4 +122,9 @@ lin
isPron = False
} ;
lin CompoundN n1 n2 = {
s = \\n => n1.s ! NF Sg Nom ++ BIND ++ n2.s ! n ;
g = n2.g
} ;
}