pub struct E7AugmentationShape<const COMPONENT_LABEL_BYTES: usize>;Expand description
E₇-via-augmentation composition shape — the unary augmentation
construction on the Atlas image inside E₈ per wiki [ADR-059]’s
categorical-operation vocabulary.
E₇ is the rank-7 exceptional Lie algebra reached from the Atlas by
the S₄-orbit augmentation (96 vertices + 30 S₄ orbits → 126 roots).
As a categorical operation, E₇ is an augmentation of one Atlas
structure with S₄-orbit data — the shape is unary, with
SITE_COUNT = COMPONENT_LABEL_BYTES per wiki [ADR-061] §(2). The
S₄ augmentation is canonical-form-internal: the operand is
normalized to its S₄-orbit canonical representative; no additional
bytes are prepended to the canonical form. The augmentation data
is part of the realization’s canonicalize verb, internal to the
canonicalize function, not an additional operand position.
The composed κ-label respects the augmentation’s S₄-orbit structure.
§See also
crate::std_typesfor the family contract and IRI namespace.G2ProductShape/F4QuotientShape/E6FiltrationShape/E8EmbeddingShapefor the other four categorical operations on the Atlas.crate::convergencefor the convergence-tower vocabulary ADR-059 commits.- Wiki: 05 Building Block View § Whitebox
prism - Wiki: 09 Architecture Decisions § ADR-059
- Wiki: 09 Architecture Decisions § ADR-061
- AGENTS.md § 11
§Constraints
- TC-01 — admission is compile-time.
- TC-04 — bilateral compile-time enforcement.
- ADR-013 — closure under
uor-foundation. - ADR-017 — content-addressed identity via the IRI.
- ADR-058 — κ-derivation produces the composed κ-label.
- ADR-059 — codomain factors through the Atlas image inside E₈.
- ADR-061 — operational composition surface for κ-labels.
§Behavior
use prism::pipeline::ConstrainedTypeShape;
use prism::std_types::E7AugmentationShape;
// Given a unary E₇ augmentation over one sha256 κ-label (71 bytes),
type E7 = E7AugmentationShape<71>;
// When SITE_COUNT is queried,
// Then it equals the operand width — E₇'s augmentation is unary.
assert_eq!(<E7 as ConstrainedTypeShape>::SITE_COUNT, 71);
assert_eq!(
<E7 as ConstrainedTypeShape>::IRI,
"https://uor.foundation/type/ConstrainedType",
);
assert!(<E7 as ConstrainedTypeShape>::CONSTRAINTS.is_empty());Trait Implementations§
Source§impl<const COMPONENT_LABEL_BYTES: usize> ConstrainedTypeShape for E7AugmentationShape<COMPONENT_LABEL_BYTES>
impl<const COMPONENT_LABEL_BYTES: usize> ConstrainedTypeShape for E7AugmentationShape<COMPONENT_LABEL_BYTES>
Source§const IRI: &'static str = "https://uor.foundation/type/ConstrainedType"
const IRI: &'static str = "https://uor.foundation/type/ConstrainedType"
type:ConstrainedType instance this shape represents.Source§const SITE_COUNT: usize = COMPONENT_LABEL_BYTES
const SITE_COUNT: usize = COMPONENT_LABEL_BYTES
Source§const CONSTRAINTS: &'static [ConstraintRef]
const CONSTRAINTS: &'static [ConstraintRef]
Source§const CYCLE_SIZE: u64
const CYCLE_SIZE: u64
prism_model! macro to lower first_admit
(closure-body grammar G16) to the correct descent measure.
Conventions: Read moreSource§const SITE_BUDGET: usize = Self::SITE_COUNT
const SITE_BUDGET: usize = Self::SITE_COUNT
siteBudget: count of data sites only,
excluding bookkeeping introduced by composition (coproduct tag
sites, etc.). Equals SITE_COUNT for leaf shapes and for
shapes whose composition introduces no bookkeeping (products,
cartesian products). Strictly less than SITE_COUNT for coproduct
shapes and any shape whose SITE_COUNT includes inherited
bookkeeping. Introduced by the Product/Coproduct Completion
Amendment §4a; defaults to SITE_COUNT so pre-amendment
shape impls remain valid without edits.