DEP_LIST_ASM_REWRITE_TAC : thm list list -> tactic
STRUCTURE
SYNOPSIS
Rewrites a goal using implications of equalites, adding proof obligations as required.
DESCRIPTION
DEP_LIST_ASM_REWRITE_TAC is a variant of DEP_REWRITE_TAC.

The tactics with LIST take a list of lists of theorems, and uses each list of theorems once in order, left-to-right. For each list of theorems, the goal is rewritten as much as possible, until no further changes can be achieved in the goal. Hypotheses are collected from all rewriting and added to the goal, but they are not themselves rewritten.

The tactics without ONCE or LIST attempt to reuse all theorems repeatedly, continuing to rewrite until no changes can be achieved in the goal. Hypotheses are rewritten as well, and their hypotheses as well, ad infinitum.

The tactics with ASM in their name add the assumption list to the list of theorems used for dependent rewriting.

SEEALSO
HOL  Kananaskis-13