File: set_basic_convs.doc

package info (click to toggle)
hol-light 20131026-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 26,264 kB
  • ctags: 4,620
  • sloc: ml: 400,325; cpp: 438; java: 279; lisp: 261; makefile: 256; sh: 190; yacc: 108; perl: 78; ansic: 57; sed: 39
file content (28 lines) | stat: -rw-r--r-- 946 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
\DOC set_basic_convs

\TYPE {set_basic_convs : (string * (term * conv)) list -> unit}

\SYNOPSIS
Assign the set of default conversions.

\DESCRIBE
The HOL Light rewriter ({REWRITE_TAC} etc.) and simplifier ({SIMP_TAC} etc.) 
have default sets of (conditional) equations and other conversions that are 
applied by default, except in the {PURE_} variants. The latter are normally
term transformations that cannot be expressed as single (conditional or
unconditional) rewrite rules. A call to {set_basic_convs l} where {l} is a list
of items ("name",(`pat`,conv)) will make the default conversions just that set,
using the name {name} to refer to each one and restricting it to subterms
encountered that match {pat}.

\FAILURE
Never fails.

\COMMENTS
Normally, users will only want to extend the existing set of conversions using 
{extend_basic_convs}. 

\SEEALSO
basic_convs, extend_basic_convs, set_basic_rewrites, REWRITE_TAC, SIMP_TAC.

\ENDDOC