1 (** This module defines a suited representation for bounded integers. *)
5 let of_int = big_int_of_int
6 let to_int = int_of_big_int
7 let compare = compare_big_int
8 let to_string = string_of_big_int
9 let zero = zero_big_int
10 let one = unit_big_int
11 let succ = succ_big_int
12 let pred = pred_big_int
13 let neg = minus_big_int
17 let mul = mult_big_int
19 let modulo = mod_big_int