prep_PP_modifier

  1. {
  2. %% a PP may post modify another PP to form a range: de X à Y, de X en Y
  3. %% the construction should not be iterated
  4. %% and should be restricted to component of same nature
  5. %% we only assume both parts of the range are of the same category
  6. %% other soft constraints (such as a same lemma, entities, ...) may be
  7. %% checked at disamb time
  8. %% it seems to exists some similarities with coordinations (de chex X à chez Y )
  9. PP < Foot;
  10. node(Root).cat = value(PP);
  11. node(Anchor).bot.pcas = value(de);
  12. node(Foot).bot.pcas = value(à|en|vers);
  13. node(Foot).bot.real = node(PP).bot.real;
  14. desc.dependency = value(range);
  15. }

Ajouter un commentaire

Connectez-vous ou inscrivez-vous pour publier un commentaire

Class Graph View