verb_mod_extraction

  1. {
  2. %% extractions by adjunctions for non verb argument
  3. Root = S2;
  4. Foot = S;
  5. node(S2).cat = value(S);
  6. node(S).top.extraction = value(adjx|estceaux);
  7. node(S).top.xarg.case = value(-);
  8. S2 >> XGroup;
  9. XGroup < S;
  10. node(S).top.mode = value(~imperative|participle|gerundive);
  11. %% desc.extraction = value(rel|wh);
  12. desc.extraction = node(S2).top.extraction;
  13. %% Agreement between S2.top and S2.bot on all features
  14. node(S2).bot = node(S2).top;
  15. %% Agreement between S and S2 on almost all features
  16. node(S2).bot.gender = node(S).top.gender;
  17. node(S2).bot.number = node(S).top.number;
  18. node(S2).bot.person = node(S).top.person;
  19. node(S2).bot.mode = node(S).top.mode;
  20. node(S2).bot.tense = node(S).top.tense;
  21. node(S2).bot.neg = node(S).top.neg;
  22. node(S2).bot.wh = node(S).top.wh;
  23. node(S2).bot.sat = node(S).top.sat;
  24. node(S2).bot.inv = node(S).top.inv;
  25. }

Ajouter un commentaire

Connectez-vous ou inscrivez-vous pour publier un commentaire

Class Graph View