chore(tests/lean): fix style and adjust tests

This commit is contained in:
Leonardo de Moura 2015-07-28 17:14:51 -07:00
parent b81d4d50f1
commit 7e8a394caf
3 changed files with 4 additions and 2 deletions

View file

@ -104,7 +104,6 @@ struct print_axioms_deps {
if (!m_use_axioms)
m_ios << "no axioms" << endl;
}
};
static void print_axioms(parser & p) {

View file

@ -1 +1,2 @@
no axioms
quot.sound : ∀ {A : Type} [s : setoid A] {a b : A}, setoid.r a b → quot.mk a = quot.mk b
propext : ∀ {a b : Prop}, (a ↔ b) → a = b

View file

@ -1,2 +1,4 @@
quot.sound : ∀ {A : Type} [s : setoid A] {a b : A}, setoid.r a b → quot.mk a = quot.mk b
em : ∀ (a : Prop), a ¬a
propext : ∀ {a b : Prop}, (a ↔ b) → a = b
strong_indefinite_description : Π {A : Type} (P : A → Prop), nonempty A → { (x : A)| Exists P → P x}