lean2/tests/lean/run/blast_cc2.lean

25 lines
632 B
Text
Raw Normal View History

set_option blast.init_depth 10
set_option blast.inc_depth 100
set_option blast.subst false
example (a b c d : nat) : a == b → b = c → c == d → a == d :=
by blast
example (a b c d : nat) : a = b → b = c → c == d → a == d :=
by blast
example (a b c d : nat) : a = b → b == c → c == d → a == d :=
by blast
example (a b c d : nat) : a == b → b == c → c = d → a == d :=
by blast
example (a b c d : nat) : a == b → b = c → c = d → a == d :=
by blast
example (a b c d : nat) : a = b → b = c → c = d → a == d :=
by blast
example (a b c d : nat) : a = b → b == c → c = d → a == d :=
by blast