File: INT_MIN_CONV.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-- 754 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
\DOC INT_MIN_CONV

\TYPE {INT_MIN_CONV : conv}

\SYNOPSIS
Conversion to perform addition on two integer literals of type {:int}.

\DESCRIBE
The call {INT_MIN_CONV `min c1 c2`} where {c1} and {c2} are integer literals
of type {:int}, returns {|- min c1 c2 = d} where {d} is the canonical integer
literal that is equal to {min c1 c2}. The literals {c1} and {c2} 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 minimum operator applied to two
permitted integer literals of type {:int}.

\EXAMPLE
{
  # INT_MIN_CONV `min (-- &1) (&2)`;;
  val it : thm = |- min (-- &1) (&2) = &2
}

\SEEALSO
INT_REDUCE_CONV, REAL_RAT_REDUCE_CONV.

\ENDDOC