While this submission is a draft, it cannot be used by other submissions.

Worst-case running time of the construction program

Lax235315.ConstructionRuntime · concepts/Lax235315/ConstructionRuntime.lean · lax-235315

open

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Natural Language Statement

    Theorem

    For all sufficiently large resource constants K, every run of the fixed construction program on an admissible graph input halts within K(|x|+1)(ceil(log₂ n)+1) steps, including unsuccessful random tapes.

    Concept map
    12 concepts
    100%
    Open claimDefinitionThis conceptRelated conceptA → B: B builds on A
    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

    1import Lax235315.ConstructionContracts
    2
    3/-!
    4---
    5title: Worst-case running time of the construction program
    6type: theorem
    7---
    8For all sufficiently large resource constants K, every run of the fixed
    9construction program on an admissible graph input halts within
    10K(|x|+1)(ceil(log₂ n)+1) steps, including unsuccessful random tapes.
    11
    12# Formalization notes
    13
    14This is an open implementation obligation for the explicit program.
    15It includes input reading, finite-bit sampling, the guarded arithmetic,
    16partition refinement, near-twin checking and reconstruction. Source-level
    17cost estimates alone do not discharge the registered word-RAM step bound.
    18-/
    19
    20namespace Lax235315.ConstructionRuntime
    21open Lax235315.ConstructionContracts
    22
    23/-- A constant suffices for the time bound on every admissible run. -/
    24axiom eventually_hasRunningTimeBound :
    25 ∃ K₀ : ℕ, 1 ≤ K₀ ∧ ∀ K : ℕ, K₀ ≤ K → HasRunningTimeBound K
    26
    27end Lax235315.ConstructionRuntime
    28
    Formalization notes

    This is an open implementation obligation for the explicit program. It includes input reading, finite-bit sampling, the guarded arithmetic, partition refinement, near-twin checking and reconstruction. Source-level cost estimates alone do not discharge the registered word-RAM step bound.

    Builds on
    Used by

    none

    From Mathlib

    none

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…