Correct outputs of the construction program
Lax235315.ConstructionCorrectness · concepts/Lax235315/ConstructionCorrectness.lean · lax-235315
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
For all sufficiently large resource constants K, an admissible execution that reaches the final halt with the success flag set outputs every graph vertex exactly once, in an order crossed at most 12c² ceil(log₂ n)² times by every open neighborhood.
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
No proof in the archive yet — this claim is open.
Lean source view on GitHub
| 1 | import Lax235315.ConstructionContracts |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Correct outputs of the construction program |
| 6 | type: theorem |
| 7 | --- |
| 8 | For all sufficiently large resource constants K, an admissible execution |
| 9 | that reaches the final halt with the success flag set outputs every graph |
| 10 | vertex exactly once, in an order crossed at most |
| 11 | 12c² ceil(log₂ n)² times by every open neighborhood. |
| 12 | |
| 13 | # Formalization notes |
| 14 | |
| 15 | This is an open bridge from concrete machine execution to the deterministic |
| 16 | contraction and reconstruction argument. No probability conclusion is assumed |
| 17 | or asserted. Empty and singleton graphs are included in the contract. |
| 18 | -/ |
| 19 | |
| 20 | namespace Lax235315.ConstructionCorrectness |
| 21 | open Lax235315.ConstructionContracts |
| 22 | |
| 23 | /-- Successful machine executions satisfy the exact registered output relation. -/ |
| 24 | axiom eventually_hasCorrectOutput : |
| 25 | ∃ K₀ : ℕ, 1 ≤ K₀ ∧ ∀ K : ℕ, K₀ ≤ K → HasCorrectOutput K |
| 26 | |
| 27 | end Lax235315.ConstructionCorrectness |
| 28 |
Formalization notes
This is an open bridge from concrete machine execution to the deterministic contraction and reconstruction argument. No probability conclusion is assumed or asserted. Empty and singleton graphs are included in the contract.
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments