(May) No verbal prefixes in relative clauses

This commit is contained in:
Inari Listenmaa
2020-08-19 15:15:45 +02:00
parent 6d781d3d02
commit eaf401eda7
6 changed files with 23 additions and 13 deletions
+9 -3
View File
@@ -154,11 +154,17 @@ oper
--------------------------------------------------------------------------------
-- Cl, S
Clause : Type = {subj, pred : Str} ;
Clause : Type = {
subj : Str ;
pred : VForm => Str -- Cl may become relative clause, need to keep open
} ;
RClause : Type = {
subj : Str ;
pred : Person => Str} ;
pred : Person => Str
} ;
RS : Type = {s : Person => Str} ;
ClSlash : Type = Clause ** {c2 : Preposition} ;
@@ -166,7 +172,7 @@ oper
predVP : NounPhrase -> VerbPhrase -> Clause = \np,vp -> {
subj = np.s ;
pred = vp.s ! Active ; -- TODO
pred = vp.s
} ;
predVPSlash : NounPhrase -> VPSlash -> ClSlash = \np,vps ->