mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-27 08:58:55 -06:00
(Ara) Don't use verbalAgr in a verbless construction
Eventual TODO: restructure the whole agreement system, there are other complications not present in the grammar currently and too much redundancy in NTable.
This commit is contained in:
@@ -577,9 +577,10 @@ oper
|
||||
predVP : NP -> VP -> Cl = \np,vp -> {
|
||||
s = \\t,p,o =>
|
||||
let pgn =
|
||||
case <o,np.a.isPron> of {
|
||||
<Verbal, False> => verbalAgr np.a.pgn;
|
||||
_ => np.a.pgn
|
||||
case <o,vp.vtype,np.a.isPron> of {
|
||||
<Verbal, Copula, False> => np.a.pgn;
|
||||
<Verbal, _, False> => verbalAgr np.a.pgn;
|
||||
_ => np.a.pgn
|
||||
};
|
||||
|
||||
-- very unsure about this /IL
|
||||
|
||||
Reference in New Issue
Block a user