Created
December 24, 2022 11:07
-
-
Save kayceesrk/9fb58430aae9175c903c02d4330266b5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(* The Computer Language Benchmarks Game | |
* https://salsa.debian.org/benchmarksgame-team/benchmarksgame/ | |
* | |
* Contributed by Troestler Christophe | |
* Modified by Fabrice Le Fessant | |
* *reset* | |
*) | |
type 'a tree = Empty | Node of 'a tree * 'a * 'a tree | |
let mk () = Array.make 128 (Some 0) | |
let rec make d = | |
(* if d = 0 then Empty *) | |
if d = 0 then Node(Empty, mk(), Empty) | |
else let d = d - 1 in Node(make d, mk(), make d) | |
let rec check = function Empty -> 0 | Node(l, _, r) -> 1 + check l + check r | |
let min_depth = 4 | |
let max_depth = (let n = try int_of_string(Array.get Sys.argv 1) with _ -> 10 in | |
max (min_depth + 2) n) | |
let stretch_depth = max_depth + 1 | |
let () = | |
(* GC param suggestion: | |
Gc.set { (Gc.get()) with Gc.minor_heap_size = 1024 * 1024; max_overhead = -1; }; *) | |
let c = check (make stretch_depth) in | |
Printf.printf "stretch tree of depth %i\t check: %i\n" stretch_depth c | |
let long_lived_tree = make max_depth | |
let rec loop_depths d = | |
for i = 0 to ((max_depth - d) / 2 + 1) - 1 do | |
let d = d + i * 2 in | |
let niter = 1 lsl (max_depth - d + min_depth) in | |
let c = ref 0 in | |
for i = 1 to niter do c := !c + check(make d) done; | |
Printf.printf "%i\t trees of depth %i\t check: %i\n" niter d !c; | |
done | |
let () = | |
flush stdout; | |
loop_depths min_depth; | |
Printf.printf "long lived tree of depth %i\t check: %i\n" | |
max_depth (check long_lived_tree) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment