This file is indexed.

/usr/share/hol88-2.02.19940316/help/ENTRIES/GSPEC.doc is in hol88-help 2.02.19940316-35.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
30
31
\DOC GSPEC

\TYPE {GSPEC : (thm -> thm)}

\SYNOPSIS
Specializes the conclusion of a theorem with unique variables.

\KEYWORDS
rule, genvars.

\DESCRIBE
When applied to a theorem {A |- !x1...xn. t}, where the number of universally
quantified variables may be zero, {GSPEC} returns {A |- t[g1/x1]...[gn/xn]},
where the {gi} are distinct variable names of the appropriate type, chosen by
{genvar}.
{
        A |- !x1...xn. t
   -------------------------  GSPEC
    A |- t[g1/x1]...[gn/xn]
}
\FAILURE
Never fails.

\USES
{GSPEC} is useful in writing derived inference rules which need to specialize
theorems while avoiding using any variables that may be present elsewhere.

\SEEALSO
GEN, GENL, genvar, GEN_ALL, GEN_TAC, SPEC, SPECL, SPEC_ALL, SPEC_TAC.

\ENDDOC