File: definitions.doc

package info (click to toggle)
hol-light 20230128-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 45,636 kB
  • sloc: ml: 688,681; cpp: 439; makefile: 302; lisp: 286; java: 279; sh: 251; yacc: 108; perl: 78; ansic: 57; sed: 39; python: 13
file content (29 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (3)
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