File: INT_NEG_CONV.doc

package info (click to toggle)
hol-light 20120602-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 23,452 kB
  • sloc: ml: 348,797; cpp: 438; java: 279; makefile: 252; sh: 183; yacc: 108; perl: 78; ansic: 57; sed: 39
file content (33 lines) | stat: -rw-r--r-- 958 bytes parent folder | download | duplicates (7)
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
32
33
\DOC INT_NEG_CONV

\TYPE {INT_NEG_CONV : conv}

\SYNOPSIS
Conversion to negate an integer literal of type {:int}.

\DESCRIBE
The call {INT_NEG_CONV `--c`}, where {c} is an integer literal of type
{:int}, returns the theorem {|- --c = d} where {d} is the canonical integer
literal that is equal to {c}'s negation. The literal {c} may be of the form
{&n} or {-- &n} (with nonzero {n} in the latter case) and the result will be of
the same form.

\FAILURE
Fails if applied to a term that is not the negation of one of the permitted
forms of integer literal of type {:int}.

\EXAMPLE
{
  # INT_NEG_CONV `-- (-- &3 / &2)`;;
  val it : thm = |- --(-- &3 / &2) = &3 / &2
}

\COMMENTS
The related function {REAL_RAT_NEG_CONV} subsumes this functionality, also
applying to rational literals. Unless the restriction to integers is desired or
a tiny efficiency difference matters, it should be used in preference.

\SEEALSO
INT_REDUCE_CONV, REAL_RAT_NEG_CONV.

\ENDDOC