structure
definition
def or abbrev
JCostMinimalCycle
show as:
view Lean formalization →
formal statement (Lean)
84structure JCostMinimalCycle (L : DefectBoundedSubLedger) where
85 /-- The events in the cycle -/
86 cycle_events : List RecognitionEvent
87 /-- The cycle generates a cohomology class (its topological charge) -/
88 cycle_class : CohomologyClass L
89 /-- Zero-defect condition: the cycle's J-cost sums to zero
90 (every debit is matched by a credit — double-entry structure) -/
91 zero_defect : cycle_class.z_charge = 0 ∨
92 -- Or: z_charge ≤ 1 (near-zero, within one recognition tick)
93 cycle_class.z_charge ≤ 1
94
95/-! ## Part 2: One Direction — Algebraic ⟹ Hodge -/
96
97/-- Every JCostMinimalCycle is a CoarseGrainingStableClass.
98 This is the easy direction: cost minima always survive coarse-graining,
99 because zooming out can only reduce (not increase) the defect budget. -/
used by (21)
-
CoarseGrainingStableClass -
HodgeCert -
hodge_implies_zero_charge -
j_cost_minimal_is_cgstable -
j_cost_minimal_is_cgstable' -
RSHodgeConjecture -
HodgeHardCert -
hodge_hard_direction_case_A -
hodge_hard_direction_case_B -
hodge_hard_direction_summary -
rs_hodge_holds_for_trivial_ledgers -
rs_hodge_holds_for_unit_defect -
globally_minimal_gives_cycle -
hard_direction_for_zero_limit_ledger -
hard_direction_via_defect_budget -
HarmonicFormsCert -
harmonic_form_theorem_minimal_ledger -
harmonic_form_theorem_zero_charge -
HodgeDecomposition -
hodge_decomposition_exists -
IsGloballyMinimal