1
0
forked from GitHub/gf-rgl

(May) Split VP negations into bukan and tidak

This commit is contained in:
Inari Listenmaa
2020-08-19 18:47:42 +02:00
parent bc0fb02f20
commit 61ffe8e9a4
7 changed files with 66 additions and 44 deletions

View File

@@ -9,16 +9,16 @@ lin
-- : RP -> VP -> RCl ;
RelVP rp vp = {
subj = rp.s ;
pred = \\_ => vp.s ! Root ;
pred = \\per => vp.s ! Root ;
} ;
-- : RP -> ClSlash -> RCl ; -- who I went with
RelSlash rp cls = {
subj = rp.s -- yang
++ cls.subj ; -- saya
pred =
\\p => cls.pred ! Root -- ikut sama
++ cls.c2.obj ! p -- dengan+nya (depends on the head, not known yet)
pred = \\per,pol =>
cls.pred ! Root ! pol -- ikut sama
++ cls.c2.obj ! per -- dengan+nya (depends on the head, not known yet)
} ;
-- : RP ;