From 4eee07df1e02731b7bfac0caaeb73ebec61b980a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Wed, 13 Mar 2013 14:58:57 +0100 Subject: [PATCH] Remove spurious debugging messages. --- src/auto/eval.ml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/auto/eval.ml b/src/auto/eval.ml index 4f68da0..bf9788f 100644 --- a/src/auto/eval.ml +++ b/src/auto/eval.ml @@ -14,7 +14,7 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) INCLUDE "utils.ml" @@ -71,7 +71,7 @@ module Make (T : Tree.Sig.S) = struct (trs::acct, accs) ) ([], acc) l - let top_down_run auto tree node cache i = + let top_down_run auto tree node cache _i = let redo = ref false in let rec loop node = if node != T.nil then begin @@ -84,10 +84,6 @@ module Make (T : Tree.Sig.S) = struct let ps = get cache tree parent in let fcs = get cache tree fc in let nss = get cache tree ns in - eprintf "-- [Iteration % 4d] --\n node: %a\n%!" i T.print_node node; - List.iter (fun (q, phi) -> eprintf " %a -> %a\n" - State.print q Ata.SFormula.print phi) trans0; - eprintf "----------------------\n%!"; let trans1, states1 = eval_trans trans0 tree node fcs nss ps states0 states0 in -- 2.17.1