From what I understand, in Prolog you capture features while parsing like so:
foo(feature(X)) --> [X], bar.
Is this common when designing DCGs ?
foo(featureA(X), featureB(Y)) --> [X], [Y], bar.
|
feedback
|
|
DCGs describe relations between lists and the nonterminals' arguments. However, these arguments are just terms. They can be used to represent features but do not represent them directly. To see the difference, imagine you want to associate a feature numerus to each node. In DCGs you have now to decide, case by case, how to represent that feature. In one node it is | |||||
feedback
|
|
It's perfectly valid, and quite useful. As an example, consider this rule, taken from the classic (and now free!) book PNLA, which uses two arguments to capture the inflection and the "meaning" (the logical form,
A verb can then be defined as
| |||||
feedback
|