]> matita.cs.unibo.it Git - helm.git/commitdiff
removed debugging printing
authorAndrea Asperti <andrea.asperti@unibo.it>
Mon, 9 Jan 2006 12:54:59 +0000 (12:54 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Mon, 9 Jan 2006 12:54:59 +0000 (12:54 +0000)
helm/ocaml/paramodulation/inference.ml
helm/ocaml/paramodulation/utils.ml

index 5a2fd042d8f2b470d7a69c15a0565171283355b7..04cdb0aeb8ebf8c8cff587dc81909045b76d3004 100644 (file)
@@ -919,12 +919,10 @@ type environment = Cic.metasenv * Cic.context * CicUniv.universe_graph;;
 
 let is_identity ((metasenv, context, ugraph) as env) = function
   | ((_, _, (ty, left, right, _), menv, _) as equality) ->
-      (prerr_endline ("left = "^(CicPp.ppterm left));
-       prerr_endline ("right = "^(CicPp.ppterm right));
        (left = right ||
           (* (meta_convertibility left right) || *)
           (fst (CicReduction.are_convertible 
-                 ~metasenv:(metasenv @ menv) context left right ugraph))))
+                 ~metasenv:(metasenv @ menv) context left right ugraph)))
 ;;
 
 
index 26d97b72a650fcb00a7d5134e3a5e354ec2a9146..5eb591c0b1450c80036f9f904e313157dd7d8238 100644 (file)
@@ -566,8 +566,8 @@ let guarded_simpl context t =
   let t' = ProofEngineReduction.simpl context t in
   let simpl_order = !compare_terms t t' in
   if simpl_order = Gt then 
-    (prerr_endline ("reduce: "^(CicPp.ppterm t)^(CicPp.ppterm t'));
-     t')
+    (* prerr_endline ("reduce: "^(CicPp.ppterm t)^(CicPp.ppterm t')); *)
+  t'
   else t
 ;;