module BatBig_int:sig..end
Operations on arbitrary-precision integers.
Big integers (type BatBig_int.big_int or equivalently Big_int.t) are
signed integers of arbitrary size. This module lets you compute
with huge numbers, whose size is limited only by the amount of
memory given to OCaml. The downside is speed, as big integers
are much slower than any other type of integer known to OCaml.
This module replaces Stdlib's Big_int module.
typebig_int =Big_int.big_int
The type of big integers.
val zero : big_int
val zero_big_int : big_intThe big integer 0.
val one : big_int
val unit_big_int : big_intThe big integer 1.
val neg : big_int -> big_int
val succ : big_int -> big_int
val pred : big_int -> big_int
val abs : big_int -> big_int
val add : big_int -> big_int -> big_int
val sub : big_int -> big_int -> big_int
val mul : big_int -> big_int -> big_int
val div : big_int -> big_int -> big_int
val modulo : big_int -> big_int -> big_int
val pow : big_int -> big_int -> big_int
typet =big_int
val (+) : t -> t -> t
val (-) : t -> t -> t
val ( * ) : t -> t -> t
val (/) : t -> t -> t
val ( ** ) : t -> t -> t
val minus_big_int : big_int -> big_intUnary negation.
val abs_big_int : big_int -> big_intAbsolute value.
val add_big_int : big_int -> big_int -> big_intAddition.
val succ_big_int : big_int -> big_intSuccessor (add 1).
val add_int_big_int : int -> big_int -> big_intAddition of a small integer to a big integer.
val sub_big_int : big_int -> big_int -> big_intSubtraction.
val pred_big_int : big_int -> big_intPredecessor (subtract 1).
val mult_big_int : big_int -> big_int -> big_intMultiplication of two big integers.
val mult_int_big_int : int -> big_int -> big_intMultiplication of a big integer by a small integer
val square_big_int : big_int -> big_intReturn the square of the given big integer
val sqrt_big_int : big_int -> big_intsqrt_big_int a returns the integer square root of a,
that is, the largest big integer r such that r * r <= a.
Invalid_argument if a is negative.val quomod_big_int : big_int ->
big_int -> big_int * big_intEuclidean division of two big integers.
The first part of the result is the quotient,
the second part is the remainder.
Writing (q,r) = quomod_big_int a b, we have
a = q * b + r and 0 <= r < |b|.
Division_by_zero if the divisor is zero.val div_big_int : big_int -> big_int -> big_intEuclidean quotient of two big integers.
This is the first result q of quomod_big_int (see above).
val mod_big_int : big_int -> big_int -> big_intEuclidean modulus of two big integers.
This is the second result r of quomod_big_int (see above).
val gcd_big_int : big_int -> big_int -> big_intGreatest common divisor of two big integers.
val power_int_positive_int : int -> int -> big_int
val power_big_int_positive_int : big_int -> int -> big_int
val power_int_positive_big_int : int -> big_int -> big_int
val power_big_int_positive_big_int : big_int -> big_int -> big_intExponentiation functions. Return the big integer
representing the first argument a raised to the power b
(the second argument). Depending
on the function, a and b can be either small integers
or big integers.
Invalid_argument if b is negative.val operations : t BatNumber.numericval (--) : big_int -> big_int -> big_int BatEnum.t
val (---) : big_int -> big_int -> big_int BatEnum.tval compare : big_int -> big_int -> int
val ord : big_int -> big_int -> BatOrd.order
val equal : big_int -> big_int -> bool
val sign_big_int : big_int -> intReturn 0 if the given big integer is zero,
1 if it is positive, and -1 if it is negative.
val compare_big_int : big_int -> big_int -> intcompare_big_int a b returns 0 if a and b are equal,
1 if a is greater than b, and -1 if a is smaller
than b.
val eq_big_int : big_int -> big_int -> bool
val le_big_int : big_int -> big_int -> bool
val ge_big_int : big_int -> big_int -> bool
val lt_big_int : big_int -> big_int -> bool
val gt_big_int : big_int -> big_int -> boolUsual boolean comparisons between two big integers.
val max_big_int : big_int -> big_int -> big_intReturn the greater of its two arguments.
val min_big_int : big_int -> big_int -> big_intReturn the smaller of its two arguments.
val num_digits_big_int : big_int -> intReturn the number of machine words used to store the given big integer.
val num_bits_big_int : big_int -> intReturn the number of significant bits in the absolute
value of the given big integer. num_bits_big_int a
returns 0 if a is 0; otherwise it returns a positive
integer n such that 2^(n-1) <= |a| < 2^n.
val to_string : big_int -> string
val string_of_big_int : big_int -> stringReturn the string representation of the given big integer, in decimal (base 10).
val of_string : string -> big_int
val big_int_of_string : string -> big_intConvert a string to a big integer, in decimal.
The string consists of an optional - or + sign,
followed by one or several decimal digits.
val big_int_of_string_opt : string -> big_int optionConvert a string to a big integer, in decimal.
The string consists of an optional - or + sign,
followed by one or several decimal digits. Other the function
returns None.
val to_string_in_binary : big_int -> stringas string_of_big_int, but in base 2
val to_string_in_octal : big_int -> stringas string_of_big_int, but in base 8
val to_string_in_hexa : big_int -> stringas string_of_big_int, but in base 16
val to_string_in_base : int -> big_int -> stringto_string_in_base b n returns the string representation in base b of
the given big integer n. Should you have advanced needs (arbitrarily large
bases, or custom digits instead of the usual 0,1,...9,a,b,...,z), use
to_string_in_custom_base instead.
Invalid_argument if b is not in
2 .. 36.val to_string_in_custom_base : string -> int -> big_int -> stringFirst argument, called symbols, is the vector of the symbols used to
represent the digits in base b. to_string_in_base is almost equivalent to
to_string_in_custom_base big_int_base_default_symbols, the difference being
that to_string_in_custom_base allows the base to be arbitrarily large,
provided that symbols can accommodate it. Concretely, the base b must be at
least 2, and symbols must be of size at least b. The default value of
big_int_base_default_symbols contains 62 symbols, as it uses lowercase and
uppercase letters both. See below for more information.
Invalid_argument if b is incorrect.val big_int_base_default_symbols : stringDefault vector of symbols used by to_string_in_base and its fixed-base
derivatives to_string_in_binary, to_string_in_octal and to_string_in_hexa
to represent digits. The symbol at position p encodes the value p. The
original value of this vector is, schematically, ['0'..'9' 'a' 'b'..'z' 'A', which is sufficient for bases up to and including 62. The basic
'B'..'Z']to_string_in_base function is capped to base 36 to avoid unexpected
behaviours do to the case-sensitivity of the output in bases 37 to 62. You
technically can mutate the vector, for instance if you prefer to exchange
lower- and upper-case symbols program-wide. As usual where mutability is
concerned, discretion is advised. Most of the time, it is better to build
custom functions using to_string_in_custom_base.
val of_int : int -> big_int
val big_int_of_int : int -> big_intConvert a small integer to a big integer.
val is_int_big_int : big_int -> boolTest whether the given big integer is small enough to
be representable as a small integer (type int)
without loss of precision. On a 32-bit platform,
is_int_big_int a returns true if and only if
a is between -230 and 230-1. On a 64-bit platform,
is_int_big_int a returns true if and only if
a is between -262 and 262-1.
val to_int : big_int -> int
val int_of_big_int : big_int -> intConvert a big integer to a small integer (type int).
Failure if the big integer
is not representable as a small integer.val int_of_big_int_opt : big_int -> int optionConvert a big integer to a small integer (type int). Return
None if the big integer is not representable as a small
integer.
val big_int_of_int32 : int32 -> big_intConvert a 32-bit integer to a big integer.
val big_int_of_nativeint : nativeint -> big_intConvert a native integer to a big integer.
val big_int_of_int64 : int64 -> big_intConvert a 64-bit integer to a big integer.
val int32_of_big_int : big_int -> int32Convert a big integer to a 32-bit integer.
Failure if the big integer is outside the
range [-2{^31}, 2{^31}-1].val int32_of_big_int_opt : big_int -> int32 optionConvert a big integer to a 32-bit integer. Return None if the
big integer is outside the range [-231, 231-1].
val nativeint_of_big_int : big_int -> nativeintConvert a big integer to a native integer.
Failure if the big integer is outside the
range [Nativeint.min_int, Nativeint.max_int].val nativeint_of_big_int_opt : big_int -> nativeint optionConvert a big integer to a native integer. Return None if the
big integer is outside the range [Nativeint.min_int,;
Nativeint.max_int]
val int64_of_big_int : big_int -> int64Convert a big integer to a 64-bit integer.
Failure if the big integer is outside the
range [-2{^63}, 2{^63}-1].val int64_of_big_int_opt : big_int -> int64 optionConvert a big integer to a 64-bit integer. Return None if the
big integer is outside the range [-263, 263-1].
val float_of_big_int : big_int -> floatReturns a floating-point number approximating the given big integer.
val of_float : float -> big_introunds to the nearest integer
Invalid_argument when given NaN or +/-infinityval to_float : big_int -> floatval and_big_int : big_int -> big_int -> big_intBitwise logical ``and''. The arguments must be positive or zero.
val or_big_int : big_int -> big_int -> big_intBitwise logical ``or''. The arguments must be positive or zero.
val xor_big_int : big_int -> big_int -> big_intBitwise logical ``exclusive or''. The arguments must be positive or zero.
val shift_left_big_int : big_int -> int -> big_intshift_left_big_int b n returns b shifted left by n bits.
Equivalent to multiplication by 2^n.
val shift_right_big_int : big_int -> int -> big_intshift_right_big_int b n returns b shifted right by n bits.
Equivalent to division by 2^n with the result being
rounded towards minus infinity.
val shift_right_towards_zero_big_int : big_int -> int -> big_intshift_right_towards_zero_big_int b n returns b shifted
right by n bits. The shift is performed on the absolute
value of b, and the result has the same sign as b.
Equivalent to division by 2^n with the result being
rounded towards zero.
val extract_big_int : big_int -> int -> int -> big_intextract_big_int bi ofs n returns a nonnegative number
corresponding to bits ofs to ofs + n - 1 of the
binary representation of bi. If bi is negative,
a two's complement representation is used.
module Infix:BatNumber.Infixwith type bat__infix_t = t
module Compare:BatNumber.Comparewith type bat__compare_t = t
val print : 'a BatIO.output -> t -> unit