fix(tests/lean): adjust tests to reflect changes in the standard library
This commit is contained in:
parent
0d66d19ba3
commit
bf142f3f18
3 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
||||||
import logic.axioms.hilbert logic.axioms.funext
|
import logic.axioms.hilbert logic.axioms.em
|
||||||
|
|
||||||
print axioms
|
print axioms
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
funext : ∀ {A : Type} {B : A → Type} {f g : Π (a : A), B a}, (∀ (a : A), f a = g a) → f = g
|
em : ∀ (a : Prop), a ∨ ¬a
|
||||||
strong_indefinite_description : Π {A : Type} (P : A → Prop), nonempty A → { (x : A) | (∃ (y : A), P y) → P x }
|
strong_indefinite_description : Π {A : Type} (P : A → Prop), nonempty A → { (x : A)| (∃ (y : A), P y) → P x}
|
||||||
|
|
|
@ -4,6 +4,7 @@ measurable : Type → Type
|
||||||
nonempty : Type → Prop
|
nonempty : Type → Prop
|
||||||
point : Type → Type → Type
|
point : Type → Type → Type
|
||||||
setoid : Type → Type
|
setoid : Type → Type
|
||||||
|
subsingleton : Type → Prop
|
||||||
well_founded : Π {A : Type}, (A → A → Prop) → Prop
|
well_founded : Π {A : Type}, (A → A → Prop) → Prop
|
||||||
decidable : Prop → Type₁
|
decidable : Prop → Type₁
|
||||||
inhabited : Type → Type
|
inhabited : Type → Type
|
||||||
|
@ -11,4 +12,5 @@ measurable : Type → Type
|
||||||
nonempty : Type → Prop
|
nonempty : Type → Prop
|
||||||
point : Type → Type → Type
|
point : Type → Type → Type
|
||||||
setoid : Type → Type
|
setoid : Type → Type
|
||||||
|
subsingleton : Type → Prop
|
||||||
well_founded : Π {A : Type}, (A → A → Prop) → Prop
|
well_founded : Π {A : Type}, (A → A → Prop) → Prop
|
||||||
|
|
Loading…
Reference in a new issue