The atoms of the translation #
An atom of a sentence over an expansion says one of three things about the points its variables hold: that a relation of the expanded vocabulary holds of them, that two of them are equal, or that one is below another. This file writes each of those as a sentence of the quantifier prefix, and proves it right.
All three follow one pattern. The corresponding sentence of the expansion –
DescriptiveComplexity.ExpExpansion.relSentence,
DescriptiveComplexity.SOBlock.eqAssignF,
DescriptiveComplexity.ExpExpansion.ordSentence – is indexed by a static
tuple of tags, because everywhere else in this development a tag is chosen at
formula-construction time. Here the tags are guessed, so the sentence appears
once per tuple of tags, guarded by the tag bits of the rounds involved
(DescriptiveComplexity.ExpExpansion.roundTagBitF). Finitely many tuples, so
the disjunction is a DescriptiveComplexity.listSup; exactly one bit per round
is set, so exactly one disjunct can fire.
Equality is the exception and is cheaper: rather than a disjunction over tag pairs it compares the tag bits round by round, which says the tags agree without naming them.
The rounds of the prefix that hold a given tuple of points.
Equations
- DescriptiveComplexity.ExpExpansion.roundAssign pts i = DescriptiveComplexity.SOBlock.tagAssign (↑(pts i)).1 (↑(pts i)).2
Instances For
Dependency graph
The structure the kernel of the translation is realized against.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dependency graph
The tag bits of a round #
The atom “round i carries the tag t”: the tag bit of the guessed point,
read at that round.
Equations
- X.roundTagBitF m i t = (DescriptiveComplexity.ExpExpansion.roundOneLHom i X).onSentence (X.B.tagBitF X.Tag t)
Instances For
Dependency graph
Dependency graph
The guard “round i holds a point of the expanded universe”, read at that
round: what a peeled quantifier carries.
Equations
Instances For
Dependency graph
Dependency graph
Equality of two points #
The atom “the points of rounds i₀ and i₁ are equal”: their tag bits
agree round by round, and their assignments hold of the same atoms.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dependency graph
Dependency graph
A relation of the expanded vocabulary #
The atom “the relation r holds of the points of the rounds idx”: one
disjunct per tuple of tags, guarded by the tag bits of those rounds.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dependency graph
Dependency graph
The order on two points #
The atom “the point of round i₀ is below that of round i₁”: one disjunct
per pair of tags, guarded by the two tag bits.
Equations
- One or more equations did not get rendered due to their size.