&&
op bossLib.&& : simpset * thm list -> simpset
Infix operator for adding theorems into a simpset.
It is occasionally necessary to extend an existing simpset
ss
with a collection rwlist
of new rewrite
rules. To achieve this, one applies the &&
function
via ss && rwlist
.
Never fails.
- open bossLib;
... <output elided> ...
- val ss = boolSimps.bool_ss && pairTheory.pair_rws;
> val ss = <simpset> : simpset
Of limited applicability since most of the tactics for rewriting
already include this functionality. However, applications of
ZAP_TAC
can benefit.