From 9b45e1d24a337e3f0047bf5056315169d4203b49 Mon Sep 17 00:00:00 2001 From: xleroy Date: Fri, 29 Jul 2011 08:50:40 +0000 Subject: Interp.ml: initialize PRNG Cexec.v: comments git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1691 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- driver/Interp.ml | 1 + 1 file changed, 1 insertion(+) (limited to 'driver/Interp.ml') diff --git a/driver/Interp.ml b/driver/Interp.ml index 84037ae8..a0090866 100644 --- a/driver/Interp.ml +++ b/driver/Interp.ml @@ -400,6 +400,7 @@ let rec explore p prog ge time ss = end let execute prog = + Random.self_init(); let p = err_formatter in pp_set_max_boxes p 10; begin match Cexec.do_initial_state prog with -- cgit