Links to the GMP library:
https://en.wikipedia.org/wiki/GNU_Multiple_Precision_Arithmetic_Library
Did you know ... | Search Documentation: |
Arithmetic types |
SWI-Prolog defines the following numeric types:
Internally, SWI-Prolog has three integer representations. Small integers (defined by the Prolog flag max_tagged_integer) are encoded directly. Larger integers are represented as 64-bit values on the global stack. Integers that do not fit in 64 bits are represented as serialised GNU MPZ structures on the global stack.
true
(default), division (//2)
and integer power (^/2)
also produce a rational number.
double
.
On most of today's platforms these are 64-bit IEEE floating point
numbers.Arithmetic functions that require integer arguments accept, in addition to integers, rational numbers with (canonical) denominator‘1’. If the required argument is a float the argument is converted to float. Note that conversion of integers to floating point numbers may raise an overflow exception. In all other cases, arguments are converted to the same type using the order below.
integer → rational number → floating point number
Links to the GMP library:
https://en.wikipedia.org/wiki/GNU_Multiple_Precision_Arithmetic_Library