Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
File size: 688 Bytes
4365a98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
\DOC ABS_TAC
\TYPE {ABS_TAC : tactic}
\SYNOPSIS
Strips an abstraction from each side of an equational goal.
\KEYWORDS
tactic.
\DESCRIBE
{ABS_TAC} reduces a goal of the form {A ?- (\x. s[x]) = (\y. t[y])}
by stripping away the abstractions to give a new goal {A ?- s[x'] = t[x']}
where {x'} is a variant of {x}, the bound variable on the left-hand side,
chosen not to be free in the current goal's assumptions or conclusion.
{
A ?- (\x. s[x]) = (\y. t[y])
================================ ABS_TAC
A ?- s[x'] = t[x']
}
\FAILURE
Fails unless the goal is equational, with both sides being abstractions.
\SEEALSO
AP_TERM_TAC, AP_THM_TAC, BINOP_TAC, MK_COMB_TAC.
\ENDDOC
|