From cc8893f2357a832bfd86030c3d80b80439502fec Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Fri, 10 Apr 2020 08:25:00 +0200 Subject: begin factorizing profiler --- backend/Profilingaux.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/Profilingaux.ml') diff --git a/backend/Profilingaux.ml b/backend/Profilingaux.ml index 51718303..a1d41ceb 100644 --- a/backend/Profilingaux.ml +++ b/backend/Profilingaux.ml @@ -55,6 +55,6 @@ let load_profiling_info (filename : string) : unit = let condition_oracle (id : identifier) : bool option = let (count0, count1) = get_counts id in - Printf.fprintf stderr "%a : %Ld %Ld\n" pp_id id count0 count1; + (* Printf.fprintf stderr "%a : %Ld %Ld\n" pp_id id count0 count1; *) if count0 = count1 then None else Some(count1 > count0);; -- cgit