]> matita.cs.unibo.it Git - helm.git/commitdiff
profilings are printed
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 29 May 2006 20:32:58 +0000 (20:32 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 29 May 2006 20:32:58 +0000 (20:32 +0000)
components/tactics/autoTactic.ml

index 9db6ed1c9094d3816c374592d401d5ba35fcdd7f..7aabf9f3378321e8de1e1737d17afef25d421329 100644 (file)
@@ -339,7 +339,12 @@ let auto_tac ?(depth=default_depth) ?(width=default_width) ?paramodulation
     if paramodulation_ok then (
       debug_print (lazy "USO PARAMODULATION...");
 (*       try *)
-      Saturation.saturate dbd ~depth ~width ~full (proof, goal)
+      try
+        Saturation.saturate dbd ~depth ~width ~full (proof, goal)
+      with exn ->
+        prerr_endline (Saturation.get_stats ());
+        raise exn
+      
 (*       with ProofEngineTypes.Fail _ -> *)
 (*         normal_auto () *)
     ) else