Question primarily for @sweaglesw – but I’m interested in input from all formalism mavens.
We have a grammar from the customization system that the LKB (correctly) won’t compile, because the feature LOCAL is ‘declared’ for two types. The offending type addendum statement looks like this:
head-adj-int-phrase :+ [ LOCAL.CAT.VAL [ SUBJ clist,
COMPS clist ] ].
Where head-adj-int-phrase is a subtype of phrase and so should have at least SYNSEM (and not LOCAL) at the start of that path, if not HEAD-DTR.SYNSEM. (Either one of those would be well-formed, according to the feature geometry.)
I thought it might have to do with type addenda being processed separately, but if I add that constraint to the definition of head-adj-int-phrase it still happily compiles it.
Practically speaking, I think it’s problematic for ace not to catch this because it makes the grammar behavior unpredictable (is that constraint not recorded at all? just not effective?). For Grammar Matrix purposes, the immediate problem is that this means our regression testing system (which relies on ace) is missing some errors.
Is this in fact the desired behavior?
Thank you!