/usr/share/hol88-2.02.19940316/help/ENTRIES/freesl.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 | \DOC freesl
\TYPE {freesl : (term list -> term list)}
\SYNOPSIS
Returns a list of the free variables in a list of terms.
\DESCRIBE
When applied to a list of terms, {freesl} returns a list of the variables which
are free in any of those terms. There are no repetitions in the list produced
even if several terms contain the same free variable.
\FAILURE
Never fails.
\EXAMPLE
In the following example there are two free instances each of {x} and {y},
whereas the only instances of {z} are bound:
{
#freesl ["x+y=2"; "!z. z >= (x-y)"];;
["x"; "y"] : term list
}
\SEEALSO
frees, free_in, thm_frees.
\ENDDOC
|