diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2021-08-06 01:21:24 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-08-06 01:21:24 +0900 |
commit | 12132a24ad279fd3c1443cb79d52f897acaa49a7 (patch) | |
tree | d8ffc7767491c20e0031f23f14fcad5ac7deaf89 /peano.lisp | |
parent | 80ff85f0f558e31a5aff784b2d38547c870f9d95 (diff) |
peano: associativity-of-nat*: Unuse nat*-commutative.
Diffstat (limited to 'peano.lisp')
-rw-r--r-- | peano.lisp | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -128,7 +128,4 @@ (nat? z)) (equal (nat* x (nat* y z)) (nat* (nat* x y) z))) - :hints (("Goal" :in-theory (disable nat*-commutative) - :use ((:instance nat*-commutative - (x (cdr z)) - (y (nat* x y))))))) + :hints (("Goal" :in-theory (disable nat*-commutative)))) |