2026-06-09 18:36:43 -07:00
|
|
|
|
import Mathlib.Order.Lattice
|
|
|
|
|
|
import Mathlib.Order.RelSeries
|
|
|
|
|
|
|
|
|
|
|
|
namespace Spa
|
|
|
|
|
|
|
|
|
|
|
|
def Monotone₂ {α β γ : Type*} [Preorder α] [Preorder β] [Preorder γ]
|
|
|
|
|
|
(f : α → β → γ) : Prop :=
|
2026-06-22 18:33:48 -05:00
|
|
|
|
(∀ b, Monotone (f · b)) ∧ (∀ a, Monotone (f a ·))
|
2026-06-09 18:36:43 -07:00
|
|
|
|
|
|
|
|
|
|
section Folds
|
|
|
|
|
|
|
|
|
|
|
|
variable {α β : Type*} [Preorder α] [Preorder β]
|
|
|
|
|
|
|
|
|
|
|
|
theorem foldr_mono {l₁ l₂ : List α} (f : α → β → β) {b₁ b₂ : β}
|
|
|
|
|
|
(hl : List.Forall₂ (· ≤ ·) l₁ l₂) (hb : b₁ ≤ b₂)
|
|
|
|
|
|
(hf₁ : ∀ b, Monotone fun a => f a b) (hf₂ : ∀ a, Monotone (f a)) :
|
|
|
|
|
|
l₁.foldr f b₁ ≤ l₂.foldr f b₂ := by
|
|
|
|
|
|
induction hl with
|
|
|
|
|
|
| nil => exact hb
|
|
|
|
|
|
| cons hxy _ ih =>
|
|
|
|
|
|
exact le_trans (hf₁ _ hxy) (hf₂ _ ih)
|
|
|
|
|
|
|
|
|
|
|
|
theorem foldl_mono {l₁ l₂ : List α} (f : β → α → β) {b₁ b₂ : β}
|
|
|
|
|
|
(hl : List.Forall₂ (· ≤ ·) l₁ l₂) (hb : b₁ ≤ b₂)
|
|
|
|
|
|
(hf₁ : ∀ a, Monotone fun b => f b a) (hf₂ : ∀ b, Monotone (f b)) :
|
|
|
|
|
|
l₁.foldl f b₁ ≤ l₂.foldl f b₂ := by
|
|
|
|
|
|
induction hl generalizing b₁ b₂ with
|
|
|
|
|
|
| nil => exact hb
|
|
|
|
|
|
| cons hxy _ ih =>
|
|
|
|
|
|
exact ih (le_trans (hf₁ _ hb) (hf₂ _ hxy))
|
|
|
|
|
|
|
|
|
|
|
|
omit [Preorder α] in
|
|
|
|
|
|
theorem foldr_mono' (l : List α) (f : α → β → β)
|
2026-06-22 18:33:48 -05:00
|
|
|
|
(hf : ∀ a, Monotone (f a ·)) : Monotone fun b => l.foldr f b := by
|
2026-06-09 18:36:43 -07:00
|
|
|
|
intro b₁ b₂ hb
|
|
|
|
|
|
induction l with
|
|
|
|
|
|
| nil => exact hb
|
|
|
|
|
|
| cons x xs ih => exact hf x ih
|
|
|
|
|
|
|
|
|
|
|
|
omit [Preorder α] in
|
|
|
|
|
|
theorem foldl_mono' (l : List α) (f : β → α → β)
|
2026-06-22 18:33:48 -05:00
|
|
|
|
(hf : ∀ a, Monotone (f · a)) : Monotone fun b => l.foldl f b := by
|
2026-06-09 18:36:43 -07:00
|
|
|
|
intro b₁ b₂ hb
|
|
|
|
|
|
induction l generalizing b₁ b₂ with
|
|
|
|
|
|
| nil => exact hb
|
|
|
|
|
|
| cons x xs ih => exact ih (hf x hb)
|
|
|
|
|
|
|
|
|
|
|
|
end Folds
|
|
|
|
|
|
|
|
|
|
|
|
def BoundedChains (α : Type*) [Preorder α] (n : ℕ) : Prop :=
|
|
|
|
|
|
∀ c : LTSeries α, c.length ≤ n
|
|
|
|
|
|
|
2026-06-22 18:33:48 -05:00
|
|
|
|
structure PointedLTSeries (α : Type*) (f t : α)(n : ℕ) [Preorder α] where
|
|
|
|
|
|
series : LTSeries α
|
|
|
|
|
|
head_series : series.head = f
|
|
|
|
|
|
last_series : series.last = t
|
|
|
|
|
|
length_series : series.length = n
|
|
|
|
|
|
|
2026-06-09 18:36:43 -07:00
|
|
|
|
theorem BoundedChains.no_longer {α : Type*} [Preorder α] {n : ℕ}
|
|
|
|
|
|
(h : BoundedChains α n) (c : LTSeries α) : c.length ≠ n + 1 :=
|
|
|
|
|
|
fun hc => absurd (h c) (by omega)
|
|
|
|
|
|
|
2026-06-22 18:33:48 -05:00
|
|
|
|
class FiniteHeightLattice (α : Type*) [Lattice α] extends Bot α, Top α where
|
2026-06-09 18:36:43 -07:00
|
|
|
|
height : ℕ
|
2026-06-22 18:33:48 -05:00
|
|
|
|
longest_chain : PointedLTSeries α ⊥ ⊤ height
|
|
|
|
|
|
chains_bounded : BoundedChains α height
|
2026-06-09 18:36:43 -07:00
|
|
|
|
|
|
|
|
|
|
namespace FixedHeight
|
|
|
|
|
|
|
|
|
|
|
|
variable {α : Type*} [Lattice α] {h : ℕ}
|
|
|
|
|
|
|
2026-06-22 18:33:48 -05:00
|
|
|
|
theorem bot_le [FiniteHeightLattice α] : ∀ (a : α), ⊥ ≤ a := by
|
2026-06-09 18:36:43 -07:00
|
|
|
|
intro a
|
2026-06-22 18:33:48 -05:00
|
|
|
|
by_cases heq : ⊥ ⊓ a = ⊥
|
2026-06-09 18:36:43 -07:00
|
|
|
|
· exact inf_eq_left.mp heq
|
|
|
|
|
|
· exfalso
|
2026-06-22 18:33:48 -05:00
|
|
|
|
have lc := FiniteHeightLattice.longest_chain (α := α)
|
|
|
|
|
|
have hlt : ⊥ ⊓ a < lc.series.head := by
|
|
|
|
|
|
rw [lc.head_series]
|
|
|
|
|
|
exact lt_of_le_of_ne inf_le_left heq
|
|
|
|
|
|
exact FiniteHeightLattice.chains_bounded.no_longer
|
|
|
|
|
|
(lc.series.cons (⊥ ⊓ a) hlt)
|
|
|
|
|
|
(by simp [RelSeries.cons_length, lc.length_series])
|
2026-06-09 18:36:43 -07:00
|
|
|
|
|
|
|
|
|
|
end FixedHeight
|
|
|
|
|
|
|
Lean migration: typeclass-based parameter passing, as in the Agda original
The port had flattened Agda's instance arguments ({{flA}}, {{evaluator}},
{{latticeInterpretation}}, {{validEvaluator}}) into explicitly threaded
values (fhL, E, I, hE). Restore them as typeclasses:
- Spa.FiniteHeightLattice: now actually used — Fixedpoint takes the
instance instead of a FixedHeight value; FiniteMap gets the missing
instance (height = ks.length * height B), so varsFixedHeight /
statesFixedHeight / signFixedHeight / constFixedHeight plumbing
disappears (instance bottoms are defeq to the old ones)
- Spa.Analysis.Forward.Evaluation: StmtEvaluator/ExprEvaluator become
classes; the Valid* Props become Prop-classes, as in Agda
- Spa.Analysis.Forward.Adapters: the expr→stmt adapter and its validity
are instances (Agda: the ExprToStmtAdapter instances)
- LatticeInterpretation is a class; sign/const interpretations,
evaluators and validity proofs are instances; use sites read like the
Agda module applications: result SignLattice prog
Proof simplifications (same theorems, proofs factored):
- Spa.Lattice.AboveBelow.monotone₂_of_strict: any ⊥-strict/⊤-dominated
operation on a flat lattice is monotone — replaces the four near-
identical case bashes per analysis (postulates in Agda)
- Spa.Lattice.AboveBelow.interp_sup_of/interp_inf_of: the shared flat-
lattice interpretation case analysis, making interpSign_sup/inf and
interpConst_sup/inf one-liners
lake build green with zero warnings; lake exe spa output verified
byte-identical (diff) to the previous, Agda-verified output.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-09 23:32:38 -07:00
|
|
|
|
namespace FiniteHeightLattice
|
|
|
|
|
|
|
|
|
|
|
|
variable (α : Type*) [Lattice α] [FiniteHeightLattice α]
|
|
|
|
|
|
|
2026-06-22 18:33:48 -05:00
|
|
|
|
theorem bot_le (a : α) : (⊥ : α) ≤ a := FixedHeight.bot_le a
|
Lean migration: typeclass-based parameter passing, as in the Agda original
The port had flattened Agda's instance arguments ({{flA}}, {{evaluator}},
{{latticeInterpretation}}, {{validEvaluator}}) into explicitly threaded
values (fhL, E, I, hE). Restore them as typeclasses:
- Spa.FiniteHeightLattice: now actually used — Fixedpoint takes the
instance instead of a FixedHeight value; FiniteMap gets the missing
instance (height = ks.length * height B), so varsFixedHeight /
statesFixedHeight / signFixedHeight / constFixedHeight plumbing
disappears (instance bottoms are defeq to the old ones)
- Spa.Analysis.Forward.Evaluation: StmtEvaluator/ExprEvaluator become
classes; the Valid* Props become Prop-classes, as in Agda
- Spa.Analysis.Forward.Adapters: the expr→stmt adapter and its validity
are instances (Agda: the ExprToStmtAdapter instances)
- LatticeInterpretation is a class; sign/const interpretations,
evaluators and validity proofs are instances; use sites read like the
Agda module applications: result SignLattice prog
Proof simplifications (same theorems, proofs factored):
- Spa.Lattice.AboveBelow.monotone₂_of_strict: any ⊥-strict/⊤-dominated
operation on a flat lattice is monotone — replaces the four near-
identical case bashes per analysis (postulates in Agda)
- Spa.Lattice.AboveBelow.interp_sup_of/interp_inf_of: the shared flat-
lattice interpretation case analysis, making interpSign_sup/inf and
interpConst_sup/inf one-liners
lake build green with zero warnings; lake exe spa output verified
byte-identical (diff) to the previous, Agda-verified output.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-09 23:32:38 -07:00
|
|
|
|
|
|
|
|
|
|
end FiniteHeightLattice
|
|
|
|
|
|
|
2026-06-09 18:36:43 -07:00
|
|
|
|
end Spa
|