Local autosegmental configurations #
The named building blocks of autosegmental representations. AR.junction as bs links
every melody node of as to every timing slot of bs; its planar specializations —
single, bare, float, contour, spread — are the local configurations of
autosegmental tonology, and concat-products of them build every representation in the
current tone studies (Studies/Jardine2016Tone, Studies/Jardine2017,
Studies/Jardine2019). Building through them (rather than raw structure literals)
carries the in-bounds proof at arbitrary alphabets, where the studies' by decide
cannot go, and gives every configuration a simp kit.
The keystone is isPlanar_junction_iff: a junction is planar iff one side has at most
one node, so among complete many-to-many associations the No-Crossing Constraint
([Gol76]) admits exactly the one-to-many (spread), many-to-one (contour)
and degenerate configurations. (Formaliser's synthesis: the literature treats the NCC
as a filter on representations, not as a characterisation of local generators.)
concat is the coproduct, so builder products reach exactly the block-diagonal link
relations; connected shared-node configurations (e.g. a spread-fed contour, H→μ₁ with
L→μ₁μ₂) are planar but not products. TODO: a gluing operation dual to concat
(identify a shared boundary slot) reaching them, with the completeness target every
planar AR is a concat/glue expression over the builders; at that point junction
becomes primary and the five kits derive from its (the
SimpleGraph.completeBipartiteGraph move).
Main definitions #
AR.junction— complete many-to-many association of a melody onto a slot sequence.AR.single,AR.bare,AR.float,AR.contour,AR.spread— the planar local configurations: one-to-one, toneless slot, floating autosegment ([Leb73]; the tier-with-floats object isFloating.lean), several nodes on one slot, one node over several slots.
Main results #
AR.isPlanar_junction_iff— NCC-planarity of a junction: one side is at most a singleton.AR.linearize_junction— every slot of a junction carries the whole melody.- Per-builder simp kits: tier projections (at the
LabeledTuplelevel, so.len,.toList,.get?follow from theofListkit), reduced link sets, linearization, planarity, and OCP-cleanliness.
The junction in coordinates #
The complete association as a two-tier AR (Bool-indexed:
true the melody tier, false the timing tier), built by ofData; the
No-Crossing keystone in the foundational path form.
The two-tier alphabet: melody labels over true, timing labels over
false.
Equations
- Autosegmental.TwoTier α β b = bif b then α else β
Instances For
Complete many-to-many association of a melody onto a slot sequence, in coordinates.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Junction links are complete: every in-bounds melody–timing pair.
The No-Crossing Constraint selects the one-sided junctions: a complete
association is planar iff one side has at most one node — the one-to-many
spread, many-to-one contour, and degenerate cases.
The planar local configurations #
One-to-one association.
Equations
- Autosegmental.AR.single a b = Autosegmental.AR.junction [a] [b]
Instances For
A bare (unassociated) timing slot.
Equations
- Autosegmental.AR.bare b = Autosegmental.AR.junction [] [b]
Instances For
A floating autosegment ([Leb73]).
Equations
- Autosegmental.AR.float a = Autosegmental.AR.junction [a] []
Instances For
Several melody nodes on one slot.
Equations
- Autosegmental.AR.contour as b = Autosegmental.AR.junction as [b]
Instances For
One melody node over several slots.
Equations
- Autosegmental.AR.spread a bs = Autosegmental.AR.junction [a] bs
Instances For
Two-tier factor embedding is a search over two bounded offsets.
The data-level factor check: wsF/LF occurs in wsX/LX at some pair
of bounded offsets — list windows match and links transport shifted. The
decidable face of FactorEmbeds for ofData-presented forms.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Autosegmental.instDecidableDataEmbedsOfDecidableEq = id inferInstance
The spec: on ofData-presented two-tier forms, factor embedding is the
data-level check — the bridge that turns banned-subgraph verdicts into
kernel computations.
A timing slot surfaces with melody label a: some a-labelled melody
node links to it.
Equations
- X.surfacesWith a j = ∃ (k : ℕ), X.link true false k j ∧ (Autosegmental.AR.tierWord true)[k]? = some a