%% Verbs
node v: [];
v = Anchor;
node Infl:[cat:Infl, adjleft: atmostone]; Infl >> v;
node V1: [cat:V1]; V1 >> Infl;
node V:[cat:V, adjleft: atmostone]; V >> VMod;
node VMod: [cat: VMod, id:vmod, bot: [position: post]]; node(VMod).top = node(VMod).bot;
VMod >> V1;
%% - VMod::vagreement; VMod = VMod::V;
%% this class used by aux, v and adj
%% clr may inluence aux_req
%% node(v).top.aux_req = node(Infl).bot.aux_req;
%% node(v).top.diathesis = node(Infl).bot.diathesis;
node(V1).bot.mode = node(V1).top.mode;
node(V1).bot.tense = node(V1).top.tense;
node(V1).bot.person = node(V1).top.person;
node(V1).bot.gender = node(V1).top.gender;
node(V1).bot.number = node(V1).top.number;
node(V1).bot.inv = node(V1).top.inv;
node(Infl).top.inv = node(V1).bot.inv;
node(V1).top.inv = node(V).bot.inv;
node(V).top.inv = node(S).bot.inv;
node(V).bot.person = node(V).top.person;
node(V).bot.gender = node(V).top.gender;
node(V).bot.number = node(V).top.number;
node(V).bot.inv = node(V).top.inv;
node(Infl).bot.inv = node(Infl).top.inv;
node(v).top = node(v).bot;
desc.extraction = value(-|rel|wh|cleft|adjx|topic|estceaux);
%% participle verbs with aux_req=être agree with aux verbs
%% special cases for polite vous and 'on'
v +
node(Infl).bot.number = node(Infl).top.number,
node(Infl).bot.gender = node(Infl).top.gender
|
node(Infl).bot.mode = value(participle),
node(Infl).bot.aux_req = value(être),
( desc.dummy.clr = value(-),
(
node(Infl).top.number = value(pl),
node(Infl).top.person = value(2),
node(Infl).bot.number = value(sg)
|
node(Infl).top.number = value(sg),
node(Infl).top.person = value(3),
node(Infl).top.gender = value(on)
)
|
desc.dummy.clr = value(+)
)
|
node(Infl).bot.mode = value(participle),
node(Infl).bot.aux_req = value(~être)
;
%% clitic inverted subject
node(Infl).bot.inv = value(-|cl|+);
node(V1).bot.vlex = node(v).lex;
node(V1).bot.vlex = node(V1).top.vlex;
}
Ajouter un commentaire