From: Enrico Tassi Date: Mon, 29 May 2006 20:32:58 +0000 (+0000) Subject: profilings are printed X-Git-Tag: 0.4.95@7852~1400 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=6d7654db91570337a96c8f8129ef061df08f8b80;p=helm.git profilings are printed --- diff --git a/components/tactics/autoTactic.ml b/components/tactics/autoTactic.ml index 9db6ed1c9..7aabf9f33 100644 --- a/components/tactics/autoTactic.ml +++ b/components/tactics/autoTactic.ml @@ -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