lean4-htt/tests/lean/run/blast14.lean
2016-06-10 18:29:41 -07:00

15 lines
341 B
Text

exit
set_option blast.init_depth 10
set_option blast.inc_depth 1000
definition lemma1 (p q : Prop) : p ∧ q → q ∧ p :=
by blast
definition lemma2 (p q r s : Prop) : r ∧ s → p ∧ q → q ∧ p :=
by blast
print lemma2 -- unnecessary and.rec's are not included
example (p q : Prop) : p ∧ p ∧ q ∧ q → q ∧ p :=
by blast