mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-26 11:36:27 -06:00
fixed duplication of de in RelativeChi
This commit is contained in:
@@ -3,10 +3,13 @@ concrete RelativeChi of Relative = CatChi ** open ResChi, Prelude in {
|
||||
lin
|
||||
RelCl cl = {s = \\p,a => cl.s ! p ! a ++ relative_s} ; ---- ??
|
||||
RelVP rp vp = {
|
||||
s = \\p,a => vp.prePart ++ useVerb vp.verb ! p ! a ++ vp.compl ++ rp.s
|
||||
s = \\p,a => case vp.isAdj of {
|
||||
True => vp.prePart ++ vp.compl ++ rp.s ! True ; ---- FunRP also ?
|
||||
_ => vp.prePart ++ useVerb vp.verb ! p ! a ++ vp.compl ++ rp.s ! False
|
||||
} ;
|
||||
} ; ---- ??
|
||||
RelSlash rp slash = {s = \\p,a => slash.s ! p ! a ++ appPrep slash.c2 rp.s} ;
|
||||
FunRP p np rp = ss (appPrep p np.s ++ rp.s) ; ---- ??
|
||||
IdRP = ss relative_s ;
|
||||
RelSlash rp slash = {s = \\p,a => slash.s ! p ! a ++ appPrep slash.c2 (rp.s ! False)} ;
|
||||
FunRP p np rp = {s = \\a => appPrep p np.s ++ rp.s ! a} ; ---- ??
|
||||
IdRP = {s = table {True => [] ; False => relative_s}} ;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user