Fission #
Fission lets one syntactic node be realized in several adjacent positions of exponence: a Vocabulary Item inserted at the node discharges only the features it spells out, and the remaining features fission off to a subsidiary position where insertion continues. The procedure here is strict scansion: the Vocabulary is scanned once, top to bottom; an item whose site one of the node's feature matrices contains is inserted and its features are discharged from that matrix; the residue stays available to the items below, and scansion halts at the bottom of the list — so no item is inserted twice, with no stipulation about elsewhere items.
A node may bear several matrices, one per argument it agrees with (the
Yucatec Agr3 agrees with both the ergative subject and the nominative
object), and the matrices are kept apart: an item's features must all come
from one of them. Features carry multiplicity (List.diff), so two
arguments' shared features are discharged one at a time.
Main definitions #
discharge: remove an item's features from the first matrix containing its site.scansion: the exponents a node's matrices receive under strict scansion with local Fission.
Main results #
scansion_sublist: the exponents are a subsequence of the Vocabulary's — each item at most once, in list order.scansion_nil: a node with no matrix receives nothing.head?_scansion_singleton: on a Vocabulary ordered by specificity, the first insertion at a single matrix is the Subset Principle's winner.
References #
Discharge the item's features from the first of the matrices containing
its site, in the environment env (whose focus is ignored); none when no
matrix does.
Equations
- One or more equations did not get rendered due to their size.
- DistributedMorphology.discharge i env [] = none
Instances For
Strict scansion with local Fission: the exponents received by a node
bearing the matrices ms in the environment env.
Equations
- DistributedMorphology.scansion items env x✝ = DistributedMorphology.scansion.go env items x✝
Instances For
Scan the remaining items against the remaining matrices.
Equations
- One or more equations did not get rendered due to their size.
- DistributedMorphology.scansion.go env [] a✝ = []
Instances For
A node with no matrix receives nothing.
Each item is inserted at most once, in Vocabulary order.
At a single matrix, an item discharges iff it applies there.
On a Vocabulary ordered by decreasing specificity, the first insertion at a single matrix is the Subset Principle's winner: scansion agrees with Elsewhere competition where both apply.