Salience classes #
[Luc94]'s classification of verbal roots by required transitiviser —
"salience" is his term for the default semantic values in a root that
influence overt case marking, which is why the classifier lives in the
argument-realization layer. Stated over the (kind signature × arity)
coordinates: agent salient (intransitive manner roots), agent-patient
salient (root transitives), patient salient (intransitive change-of-state
roots). The positional diagnostic (IsPositional) is deliberately
separate and arity-free — positional roots cross-cut the transitiviser
classes rather than forming a fourth case.
Originates with [Luc94] (Yucatec =t, =∅, =s); the Yucatec
instantiation with attested derivations is Studies/Lucy1994.lean, and
Studies/Coon2019.lean consumes the annotation-level hom
(Classification.salienceClass in Verb/Root/Classification.lean) for
the Chuj root classes.
Main declarations #
SalienceClassIsAgentSalient,IsPatientSalient,IsPositionalSalienceClass.ofKinds— the pair-level classifierSalienceClass.ofKinds_close— closure invariance on cause-free signatures
Lucy's "three large predicate root classes", named for the
argument(s) the underived root makes salient. Positional roots are
deliberately not a case: they fall outside the transitiviser cut
(IsPositional).
- agent : SalienceClass
- agentPatient : SalienceClass
- patient : SalienceClass
Instances For
Equations
- ArgumentStructure.instDecidableEqSalienceClass x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Agent salient: intransitive manner-of-action root ("actions or activities that some entity undertakes").
Equations
- ArgumentStructure.IsAgentSalient s v = (ArgumentStructure.ArgPosition.internal ∉ v ∧ Verb.LexKind.manner ∈ s ∧ Verb.LexKind.result ∉ s)
Instances For
Patient salient: intransitive change-of-state root ("state changes that some entity undergoes more or less spontaneously").
Equations
Instances For
Positional: pure stative configurational signature. Deliberately valency-free — a positional root may also zero-derive a transitive ([Luc94]'s čin 'bend'), so the positional class cross-cuts the transitiviser cut.
Equations
- ArgumentStructure.IsPositional s = (s = {Verb.LexKind.state})
Instances For
The transitiviser cut, over (kind signature × root valency). Agent-patient salience is root transitivity (the root introduces the internal argument), not a feature configuration; the two intransitive classes split by signature; intransitive signatures with neither manner nor result — pure statives included — are outside the cut.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Collocational closure does not move the transitiviser cut on cause-free signatures: the only available closure edge is result→state, which no arm of the classifier consults.
The cause-free hypothesis of ofKinds_close is necessary: a lone
cause atom is outside the cut at base but patient salient after
closure.
Stem valencies #
The underived stem's valency per salience class: the unergative agent stem realizes only Voice's external S, the unaccusative patient stem only the internal S, and the root-transitive stem both positions.
Equations
- ArgumentStructure.SalienceClass.agent.stemValency = {ArgumentStructure.ArgPosition.external}
- ArgumentStructure.SalienceClass.agentPatient.stemValency = {ArgumentStructure.ArgPosition.internal, ArgumentStructure.ArgPosition.external}
- ArgumentStructure.SalienceClass.patient.stemValency = {ArgumentStructure.ArgPosition.internal}
Instances For
Both intransitive classes surface a lone S; the agent-patient class
surfaces A and P (Valency.label's relational relabeling).