File: definitions.doc

package info (click to toggle)
hol-light 20170109-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 36,568 kB
  • ctags: 8,549
  • sloc: ml: 540,018; cpp: 439; lisp: 286; java: 279; makefile: 262; sh: 229; yacc: 108; perl: 78; ansic: 57; sed: 39
file content (29 lines) | stat: -rw-r--r-- 958 bytes parent folder | download | duplicates (4)
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 definitions

\TYPE {definitions : unit -> thm list}

\SYNOPSIS
Returns the current set of primitive definitions.

\DESCRIBE
A call {definitions()} returns the current list of basic definitions made in 
the HOL Light kernel.

\FAILURE
Never fails.

\COMMENTS
This is a more logically primitive list than the one maintained in the list
{!the_definitions}, and is intended mainly for auditing a proof development 
that uses axioms to ensure that no axioms and definitions clash. Under normal
circumstances axioms are not used and so this information is not needed.
Definitions returned by {definitions()} are in their primitive equational form,
and include everything defined in the kernel. By contrast, those in the list
{!the_definitions} are often quantified and eta-expanded, and the list may be
incomplete since it is only maintained outside the logical kernel as a 
convenience.

\SEEALSO
define, new_axiom, new_definition, the_definitions.

\ENDDOC