mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 18:34:06 +00:00
This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
57 lines
2.3 KiB
Lean4
57 lines
2.3 KiB
Lean4
instance {α : Type u} : HAppend (Fin m → α) (Fin n → α) (Fin (m + n) → α) where
|
||
hAppend a b i := if h : i < m then a ⟨i, h⟩ else b ⟨i - m, sorry⟩
|
||
|
||
def empty : Fin 0 → Nat := (nomatch ·)
|
||
|
||
theorem append_empty (x : Fin i → Nat) : x ++ empty = x :=
|
||
funext fun i => dif_pos _
|
||
|
||
opaque f : (Fin 0 → Nat) → Prop
|
||
example : f (empty ++ empty) = f empty := by simp only [append_empty] -- should work
|
||
|
||
@[congr] theorem Array.get_congr (as bs : Array α) (w : as = bs) (i : Nat) (h : i < as.size) (j : Nat) (hi : i = j) :
|
||
as[i] = (bs[j]'(w ▸ hi ▸ h)) := by
|
||
subst bs; subst j; rfl
|
||
|
||
example (as : Array Nat) (h : 0 + x < as.size) :
|
||
as[0 + x] = as[x] := by
|
||
simp -- should work
|
||
|
||
example (as : Array (Nat → Nat)) (h : 0 + x < as.size) :
|
||
as[0 + x] = as[x]'(Nat.zero_add x ▸ h) := by
|
||
simp -- should also work
|
||
|
||
example (as : Array (Nat → Nat)) (h : 0 + x < as.size) :
|
||
as[0 + x] i = as[x] (0+i) := by
|
||
simp -- should also work
|
||
|
||
example [Decidable p] : decide (p ∧ True) = decide p := by simp -- should work
|
||
|
||
def Pi.single [DecidableEq ι] {f : ι → Type u} [∀ i, Inhabited (f i)] (i : ι) (x : f i) : ∀ i, f i :=
|
||
fun j => if h : j = i then h ▸ x else default
|
||
|
||
structure Set (α : Type u) where of :: mem : α → Prop
|
||
|
||
instance : CoeSort (Set α) (Type u) where coe s := Subtype s.mem
|
||
|
||
@[congr]
|
||
theorem dep_congr [DecidableEq ι] {p : ι → Set α} [∀ i, Inhabited (p i)] :
|
||
∀ {i j} (h : i = j) (x : p i) (y : α) (hx : x = y), Pi.single (f := (p ·)) i x = Pi.single (f := (p ·)) j ⟨y, hx ▸ h ▸ x.2⟩
|
||
| _, _, rfl, _, _, rfl => rfl
|
||
|
||
theorem aux {p : Nat → Set Nat} {i j y : Nat} (x : p j) (h₁ : x = y) (h₂ : i = j) : Set.mem (p i) y := by
|
||
have := x.2
|
||
subst h₁ h₂
|
||
assumption
|
||
|
||
example {p : Nat → Set Nat} [∀ i, Inhabited (p i)] (i : Nat) (x : p (0 + i)) (y : Nat) : Pi.single (f := (p ·)) (0 + i) x = Pi.single (f := (p ·)) i ⟨x, aux x rfl (Nat.zero_add i).symm ⟩ := by
|
||
simp
|
||
|
||
def Submodule (α : Type u) [OfNat α 0] := { s : Set α // s.mem 0 }
|
||
instance [OfNat α 0] : CoeSort (Submodule α) (Type u) where coe s := s.1
|
||
instance [OfNat α 0] (p : Submodule α) : Inhabited p where default := ⟨0, p.2⟩
|
||
|
||
example (p : Nat → Submodule Nat) :
|
||
Pi.single (f := (p ·)) (x - x) ⟨0, (p ..).2⟩ = Pi.single 0 ⟨0, (p ..).2⟩ := by
|
||
simp only [Nat.sub_self] -- should work
|