Created
October 4, 2011 08:35
-
-
Save lifthrasiir/1261160 to your computer and use it in GitHub Desktop.
Big_int disguised as a plain int (Or: how to abuse Ocaml's gc without actually messing it)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type real_int = | |
| Small of int | |
| Big of Big_int.big_int | |
let pack = function | |
| Small v -> v | |
| Big v -> (Obj.magic v : int) | |
let unpack v = | |
if Obj.is_int (Obj.repr v) then Small v else Big (Obj.magic v : Big_int.big_int) | |
let (<+>) a b = | |
match unpack a, unpack b with | |
| Small a, Small b -> | |
let c = a + b in | |
if c < a then | |
let a = Big_int.big_int_of_int a in | |
let b = Big_int.big_int_of_int b in | |
(Obj.magic (Big_int.add_big_int a b) : int) | |
else | |
c | |
| Small a, Big b -> | |
let a = Big_int.big_int_of_int a in | |
(Obj.magic (Big_int.add_big_int a b) : int) | |
| Big a, Small b -> | |
let b = Big_int.big_int_of_int b in | |
(Obj.magic (Big_int.add_big_int a b) : int) | |
| Big a, Big b -> | |
(Obj.magic (Big_int.add_big_int a b) : int) | |
let to_string v = | |
match unpack v with | |
| Small v -> string_of_int v | |
| Big v -> Big_int.string_of_big_int v | |
(* vim: se ts=4 sw=4 et: *) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment