ASM_SIMP_RULE
simpLib.ASM_SIMP_RULE : simpset -> thm list -> thm -> thm
Simplifies a theorem, using the theorem’s assumptions as rewrites in addition to the provided rewrite theorems and simpset.
Never fails, but may diverge.
- ASM_SIMP_RULE bool_ss [] (ASSUME (Term `x = 3`))
> val it = [.] |- T : thm
The assumptions can be used to simplify the conclusion of the theorem. For example, if the conclusion of a theorem is an implication, the antecedent together with the hypotheses may help simplify the conclusion.