File: INT_GT_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 (28 lines) | stat: -rw-r--r-- 651 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_GT_CONV

\TYPE {INT_GT_CONV : conv}

\SYNOPSIS
Conversion to prove whether one integer literal of type {:int} is {<}
another.

\DESCRIBE
The call {INT_GT_CONV `c1 > c2`} where {c1} and {c2} are integer
literals of type {:int}, returns whichever of {|- c1 > c2 <=> T} or
{|- c1 > c2 <=> F} is true. By an integer literal we mean either {&n} or
{-- &n} where {n} is a numeral.

\FAILURE
Fails if applied to a term that is not the appropriate inequality comparison on
two permitted integer literals of type {:int}.

\EXAMPLE
{
  # INT_GT_CONV `&1 > &2`;;
  val it : thm = |- &1 > &2 <=> F
}

\SEEALSO
INT_REDUCE_CONV, REAL_RAT_GT_CONV.

\ENDDOC