test(tests/lean/run/blast_cc4): congruence_closure and type classes
This commit is contained in:
parent
2627eade8b
commit
eb3d73873a
1 changed files with 11 additions and 0 deletions
11
tests/lean/run/blast_cc4.lean
Normal file
11
tests/lean/run/blast_cc4.lean
Normal file
|
@ -0,0 +1,11 @@
|
|||
open nat
|
||||
set_option blast.subst false
|
||||
|
||||
definition tst
|
||||
(a₁ a₂ b₁ b₂ c d : nat) :
|
||||
a₁ = c → a₂ = c →
|
||||
b₁ = d → d = b₂ →
|
||||
a₁ + b₁ + a₁ = a₂ + b₂ + c :=
|
||||
by blast
|
||||
|
||||
print tst
|
Loading…
Reference in a new issue