-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRefinement.lean
More file actions
60 lines (54 loc) · 2.62 KB
/
Refinement.lean
File metadata and controls
60 lines (54 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/-
Copyright (c) 2026 Xinze Li. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Xinze Li
-/
import CombArg.Refinement.CoverConstruction
import CombArg.Refinement.Disjointness
import CombArg.Refinement.Induction
import CombArg.Refinement.InitialCover
import CombArg.Refinement.Assembly
import CombArg.Refinement.PartialRefinement
import CombArg.Refinement.SpacedIntervals
/-!
# Step 1: Interval refinement construction — facade
Re-exports the seven submodules under `CombArg.Refinement.*`.
Downstream consumers can `import CombArg.Refinement` to access the
complete Step 1 API.
From the witness hypothesis (a `LocalWitness` at every
`1/N`-near-critical parameter), this module constructs a
`FiniteCoverWithWitnesses unitInterval f m₀ (1/N) (1/(4N))`: a finite
family of pieces covering the near-critical set with `twoFold` overlap
control and a `1/(4N)` saving floor. The construction follows DLT §3.2
Step 1 (De Lellis–Tasnady 2013,
*The existence of embedded minimal hypersurfaces*).
## Module layout
* [`Refinement.SpacedIntervals`](Refinement/SpacedIntervals.lean) —
`openInterval` helper plus the abstract `SkippedSpacedIntervals`
structure with its `chain_spacing`, `disjoint_of_even_gap`,
`closure_disjoint_of_even_gap`, and `not_three_overlap` lemmas
(pure 1D geometry, independent of witnesses).
* [`Refinement.InitialCover`](Refinement/InitialCover.lean) —
`nearCritical`, `InitialCover` structure, `InitialCover.I`,
`toSkippedSpacedIntervals` projection,
`exists_closedBall_subset_of_open`.
* [`Refinement.CoverConstruction`](Refinement/CoverConstruction.lean) —
`exists_initialCover` via a grid + Lebesgue-number construction.
* [`Refinement.PartialRefinement`](Refinement/PartialRefinement.lean) —
`PartialRefinement` mid-induction state and the base case `step_zero`.
* [`Refinement.Induction`](Refinement/Induction.lean) —
`ExtendResult`, `step_succ_at`, and
`exists_terminal_refinement` (bounded iteration on
`remaining.card`).
* [`Refinement.Disjointness`](Refinement/Disjointness.lean) — the
`InitialCover.*` chain-spacing and parity-rescue lemmas
(`chain_spacing`, `disjoint_of_even_gap`,
`closure_disjoint_of_even_gap`, `not_three_overlap`).
* [`Refinement.Assembly`](Refinement/Assembly.lean) —
`terminal_twoFold`, `saving_bound_closure`, and the top-level
assembly `exists_refinement`.
See also [`docs/design-notes.md`](../docs/design-notes.md) for the
design rationale, especially §4 (specialization to `unitInterval`),
§9 (witness threshold `1/(4N)`), §10 (`intervalCenter` /
`witnessCenter` split), and §11 (parity rescue for TwoFold).
-/