chore(tests/lean/run): fix tests
This commit is contained in:
parent
423319398d
commit
7ac58c0715
2 changed files with 4 additions and 4 deletions
|
|
@ -1,2 +1,2 @@
|
|||
theorem cast_heq₂ : ∀ {A B : Type} (H : A = B) (a : A), cast H a == a
|
||||
| A A (eq.refl A) a := heq_of_eq $ cast_eq _ _
|
||||
| A ⌞A⌟ (eq.refl ⌞A⌟) a := heq_of_eq $ cast_eq _ _
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@ inductive ifin : ℕ → Type -- inductively defined fin-type
|
|||
open ifin
|
||||
|
||||
definition foo {N : Type} : Π{n : ℕ}, N → ifin n → (N × ifin n)
|
||||
| (succ k) n (fz k) := sorry
|
||||
| (succ k) n (fz ⌞k⌟) := sorry
|
||||
| (succ k) n (fs x) := sorry
|
||||
|
||||
definition bar {N : Type} : Π{n : ℕ}, (N × ifin n) → (N × ifin n)
|
||||
| (succ k) (n, fz k) := sorry
|
||||
| (succ k) (n, fz ⌞k⌟) := sorry
|
||||
| (succ k) (n, fs x) := sorry
|
||||
|
||||
definition bar2 {N : Type} : Π{n : ℕ}, (N × ifin n) → (N × ifin n)
|
||||
| (succ k) (n, fz k) := sorry
|
||||
| (succ k) (n, fz ⌞k⌟) := sorry
|
||||
| (succ k) (n, fs x) := sorry
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue