]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_tactics/nnAuto.ml
Attached fast_eq_check to auto
[helm.git] / helm / software / components / ng_tactics / nnAuto.ml
index 70e6ed24e782b5d5d41656dd199567d40a5ebaa4..0251a84c9062fe1c5bc290cac5eae55dfe93d262 100644 (file)
@@ -11,7 +11,7 @@
 
 open Printf
 
-let debug = ref false
+let debug = ref true
 let debug_print ?(depth=0) s = 
   if !debug then prerr_endline (String.make depth '\t'^Lazy.force s) else ()
 (* let print= debug_print *)
@@ -25,7 +25,66 @@ open NTacStatus
 module Ast = CicNotationPt
 let app_counter = ref 0
 
-(* =================================== paramod =========================== *)
+(* ======================= utility functions ========================= *)
+module IntSet = Set.Make(struct type t = int let compare = compare end)
+
+let get_sgoalty status g =
+ let _,_,metasenv,subst,_ = status#obj in
+ try
+   let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
+   let ty = NCicUntrusted.apply_subst subst ctx ty in
+   let ctx = NCicUntrusted.apply_subst_context 
+     ~fix_projections:true subst ctx
+   in
+     NTacStatus.mk_cic_term ctx ty
+ with NCicUtils.Meta_not_found _ as exn -> fail ~exn (lazy "get_sgoalty")
+;;
+
+let deps status g =
+  let gty = get_sgoalty status g in
+  metas_of_term status gty
+;;
+
+let menv_closure status gl = 
+  let rec closure acc = function
+    | [] -> acc
+    | x::l when IntSet.mem x acc -> closure acc l
+    | x::l -> closure (IntSet.add x acc) (deps status x @ l)
+  in closure IntSet.empty gl
+;;
+
+(* we call a "fact" an object whose hypothesis occurs in the goal 
+   or in types of goal-variables *)
+let is_a_fact status ty =   
+  let status, ty, _ = saturate ~delta:max_int status ty in
+  let g_metas = metas_of_term status ty in
+  let clos = menv_closure status g_metas in
+  let _,_,metasenv,_,_ = status#obj in
+  let menv = 
+    List.fold_left
+      (fun acc (i,_) -> IntSet.add i acc)
+      IntSet.empty metasenv
+  in IntSet.equal clos menv;;
+
+let is_a_fact_obj s uri = 
+  let obj = NCicEnvironment.get_checked_obj uri in
+  match obj with
+    | (_,_,[],[],NCic.Constant(_,_,Some(t),ty,_)) ->
+       is_a_fact s (mk_cic_term [] ty)
+(* aggiungere i costruttori *)
+    | _ -> false
+
+let current_goal status = 
+  let open_goals = head_goals status#stack in
+  assert (List.length open_goals  = 1);
+  let open_goal = List.hd open_goals in
+  let gty = get_goalty status open_goal in
+  let ctx = ctx_of gty in
+    open_goal, ctx, gty
+
+
+
+(* =============================== paramod =========================== *)
 let auto_paramod ~params:(l,_) status goal =
   let gty = get_goalty status goal in
   let n,h,metasenv,subst,o = status#obj in
@@ -53,34 +112,53 @@ let auto_paramod_tac ~params status =
   NTactics.distribute_tac (auto_paramod ~params) status
 ;;
 
-(*************** subsumption ****************)
-module IntSet = Set.Make(struct type t = int let compare = compare end)
-(* exceptions *)
+let fast_eq_check_all status eq_cache goal =
+  let gty = get_goalty status goal in
+  let ctx = ctx_of gty in 
+  let n,h,metasenv,subst,o = status#obj in
+  let status,t = term_of_cic_term status gty ctx in 
+  let build_status (pt, metasenv, subst) =
+    let status = status#set_obj (n,h,metasenv,subst,o) in
+    let gty = get_goalty status goal in
+    instantiate status goal (mk_cic_term ctx pt)
+  in
+    List.map build_status
+      (NCicParamod.fast_eq_check status metasenv subst ctx 
+        eq_cache (NCic.Rel ~-1,t))
+;;
 
-let get_sgoalty status g =
- let _,_,metasenv,subst,_ = status#obj in
- try
-   let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
-   let ty = NCicUntrusted.apply_subst subst ctx ty in
-   let ctx = NCicUntrusted.apply_subst_context 
-     ~fix_projections:true subst ctx
-   in
-     NTacStatus.mk_cic_term ctx ty
- with NCicUtils.Meta_not_found _ as exn -> fail ~exn (lazy "get_sgoalty")
+let fast_eq_check eq_cache status goal =
+  match fast_eq_check_all status eq_cache goal with
+  | [] -> raise (Error (lazy "no proof found",None))
+  | s::_ -> s
 ;;
 
-let deps status g =
-  let gty = get_sgoalty status g in
-  metas_of_term status gty
+let fast_eq_check_tac ~params s = 
+  NTactics.distribute_tac (fast_eq_check s#eq_cache) s
 ;;
 
-let menv_closure status gl = 
-  let rec closure acc = function
-    | [] -> acc
-    | x::l when IntSet.mem x acc -> closure acc l
-    | x::l -> closure (IntSet.add x acc) (deps status x @ l)
-  in closure IntSet.empty gl
+let auto_eq_check eq_cache status =
+  try 
+    let s = 
+      NTactics.distribute_tac (fast_eq_check eq_cache) status in
+      [s]
+  with
+    | Error _ -> []
+;;
+
+(*
+let fast_eq_check_tac_all  ~params eq_cache status = 
+  let g,_,_ = current_goal status in
+  let allstates = fast_eq_check_all status eq_cache g in
+  let pseudo_low_tac s _ _ = s in
+  let pseudo_low_tactics = 
+    List.map pseudo_low_tac allstates 
+  in
+    List.map (fun f -> NTactics.distribute_tac f status) pseudo_low_tactics
 ;;
+*)
+
+(*************** subsumption ****************)
 
 let close_wrt_context =
   List.fold_left 
@@ -223,16 +301,16 @@ let close status g =
   let elems = IntSet.elements subset in 
   let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
   let ty = NCicUntrusted.apply_subst subst ctx ty in
-  print (lazy ("Elements for " ^ (NCicPp.ppterm ctx [] metasenv ty)));
-  print (lazy (String.concat ", " (List.map string_of_int elems)));
+  debug_print (lazy ("metas in " ^ (NCicPp.ppterm ctx [] metasenv ty)));
+  debug_print (lazy (String.concat ", " (List.map string_of_int elems)));
   let submenv = List.filter (fun (x,_) -> IntSet.mem x subset) metasenv in
   let submenv = List.rev (NCicUntrusted.sort_metasenv subst submenv) in 
 (*  
     let submenv = metasenv in
 *)
   let ty = close_wrt_metasenv subst ty submenv in
-    print (lazy (NCicPp.ppterm ctx [] [] ty));
-    ty
+    debug_print (lazy (NCicPp.ppterm ctx [] [] ty));
+    ctx,ty
 ;;
 
 
@@ -1102,6 +1180,8 @@ let auto_tac ~(dbd:HSql.dbd) ~params:(univ,params) ~automation_cache (proof, goa
 *)
 
 (****************** types **************)
+
+
 type th_cache = (NCic.context * InvRelDiscriminationTree.t) list
 
 let keys_of_term status t =
@@ -1180,7 +1260,6 @@ let pp_th status =
        pp_idx status idx)
 ;;
 
-
 let search_in_th gty th = 
   let c = ctx_of gty in
   let rec aux acc = function
@@ -1205,6 +1284,12 @@ type flags = {
         timeout  : float;
 }
 
+type cache =
+    {facts : th_cache; (* positive results *)
+     under_inspection : th_cache; (* to prune looping *)
+     unit_eq : NCicParamod.state
+    }
+
 type sort = T | P
 type goal = int * sort (* goal, depth, sort *)
 type fail = goal * cic_term
@@ -1214,44 +1299,49 @@ exception Gaveup of IntSet.t (* a sublist of unprovable conjunctive
                                 atoms of the input goals *)
 exception Proved of #NTacStatus.tac_status
 
-let close_failures _ c = c;;
-let prunable _ _ _ = false;;
-let cache_examine cache gty = `Notfound;;
-let put_in_subst s _ _ _  = s;;
-let add_to_cache_and_del_from_orlist_if_green_cut _ _ c _ _ o f _ = c, o, f, false ;; 
-let cache_add_underinspection c _ _ = c;;
-let equational_case _ _ _ _ _ _ = [];;
-let only _ _ _ = true;;
+(* let close_failures _ c = c;; *)
+(* let prunable _ _ _ = false;; *)
+(* let cache_examine cache gty = `Notfound;; *)
+(* let put_in_subst s _ _ _  = s;; *)
+(* let add_to_cache_and_del_from_orlist_if_green_cut _ _ c _ _ o f _ = c, o, f, false ;; *)
+(* let cache_add_underinspection c _ _ = c;; *)
+
+let init_cache ?(facts=[]) ?(under_inspection=[]) 
+    ?(unit_eq=NCicParamod.empty_state) _ = 
+    {facts = facts;
+     under_inspection = under_inspection;
+     unit_eq = unit_eq
+    }
+
+let only _ _ _ = true;; 
 
 let candidate_no = ref 0;;
 
-let sort_new_elems l = 
-  List.sort (fun (_,_,_,_,l1) (_,_,_,_,l2) -> List.length l1 - List.length l2) l
-;;
+let openg_no status = List.length (head_goals status#stack)
+
+let sort_new_elems l =
+  List.sort (fun (_,s1) (_,s2) -> openg_no s1 - openg_no s2) l
 
-let try_candidate flags depth status t =
+let try_candidate flags depth status t =
  try
    debug_print ~depth (lazy ("try " ^ CicNotationPp.pp_term t));
-   (* let status = NTactics.focus_tac [g] status in *)
    let status = NTactics.apply_tac ("",0,t) status in
-   let open_goals = head_goals status#stack in
-   debug_print ~depth
-     (lazy ("success: "^String.concat " "(List.map string_of_int open_goals)));
-   if List.length open_goals > flags.maxwidth || 
-      (depth = flags.maxdepth && open_goals <> []) then
+   let og_no = openg_no status in 
+   if og_no > flags.maxwidth || 
+      (depth = flags.maxdepth && og_no <> 0) then
       (debug_print ~depth (lazy "pruned immediately"); None)
    else
      (incr candidate_no;
-      Some ((!candidate_no,t),status,open_goals))
+      Some ((!candidate_no,t),status))
  with Error (msg,exn) -> debug_print ~depth (lazy "failed"); None
 ;;
 
-let get_candidates status cache_th signature gty =
+let get_candidates status cache signature gty =
   let universe = status#auto_cache in
   let context = ctx_of gty in
   let _, raw_gty = term_of_cic_term status gty context in
-  let cands = 
-    NDiscriminationTree.DiscriminationTree.retrieve_unifiables universe raw_gty
+  let cands = NDiscriminationTree.DiscriminationTree.retrieve_unifiables 
+       universe raw_gty
   in
   let cands = 
     List.filter (only signature context) 
@@ -1259,20 +1349,21 @@ let get_candidates status cache_th signature gty =
   in
   List.map (fun t -> 
      let _status, t = term_of_cic_term status t context in Ast.NCic t) 
-     (search_in_th gty cache_th)
+     (search_in_th gty cache)
   @ 
   List.map (function NCic.Const r -> Ast.NRef r | _ -> assert false) cands
 ;;
 
-let applicative_case depth signature status flags g gty cache =
+let applicative_case depth signature status flags gty (cache:cache) =
+  let tcache = cache.facts in
   app_counter:= !app_counter+1; 
-  let candidates = get_candidates status cache signature gty in
+  let candidates = get_candidates status tcache signature gty in
   debug_print ~depth
     (lazy ("candidates: " ^ string_of_int (List.length candidates)));
   let elems = 
     List.fold_left 
       (fun elems cand ->
-        match try_candidate flags depth status cand with
+        match try_candidate flags depth status cand with
         | None -> elems
         | Some x -> x::elems)
       [] candidates
@@ -1280,46 +1371,71 @@ let applicative_case depth signature status flags g gty cache =
   elems
 ;;
 
-let equational_and_applicative_case
-  signature flags status g depth gty cache 
-=
- let elems = 
-  if false (*is_equational_case gty flags*) then
-    let elems =
-      equational_case
-        signature status flags g gty cache 
-    in
-    let more_elems =
-        applicative_case depth
-          signature status flags g gty cache 
-    in
-      elems@more_elems
-  else
-    let elems =
-      (*match LibraryObjects.eq_URI () with
-      | Some _ ->
-         smart_applicative_case dbd tables depth s fake_proof goalno 
-           gty m context signature universe cache flags
-      | None -> *)
-         applicative_case depth
-          signature status flags g gty cache 
-    in
-      elems
- in
- let elems = 
-   List.map (fun c,s,gl -> 
-       c,1,1,s,List.map (fun i -> 
-                      let sort = 
-                       let gty = get_goalty s i in
-                        let _, sort = typeof s (ctx_of gty) gty in
-                          match term_of_cic_term s sort (ctx_of sort) with
-                            | _, NCic.Sort NCic.Prop -> P
-                            | _ -> T
-                      in
-                       i,sort) gl) elems 
- in
- let elems = sort_new_elems elems in
- elems, cache
+exception Found
+;;
+
+(* gty is supposed to be meta-closed *)
+let is_subsumed depth status gty cache =
+  if cache=[] then false else (
+  debug_print ~depth (lazy("Subsuming " ^ (ppterm status gty))); 
+  let n,h,metasenv,subst,obj = status#obj in
+  let ctx = ctx_of gty in
+  let _ , target = term_of_cic_term status gty ctx in
+  let target = NCicSubstitution.lift 1 target in 
+  (* candidates must only be searched w.r.t the given context *)
+  let candidates = 
+    try
+    let idx = List.assq ctx cache in
+      Ncic_termSet.elements 
+       (InvRelDiscriminationTree.retrieve_generalizations idx gty)
+    with Not_found -> []
+  in
+  debug_print ~depth
+    (lazy ("failure candidates: " ^ string_of_int (List.length candidates)));
+    try
+      List.iter
+       (fun t ->
+          let _ , source = term_of_cic_term status t ctx in
+          let implication = 
+            NCic.Prod("foo",source,target) in
+          let metasenv,j,_,_ = 
+            NCicMetaSubst.mk_meta  
+              metasenv ctx ~with_type:implication `IsType in
+          let status = status#set_obj (n,h,metasenv,subst,obj) in
+          let status = status#set_stack [([1,Open j],[],[],`NoTag)] in 
+          try
+            let status = NTactics.intro_tac "foo" status in
+            let status =
+              NTactics.apply_tac ("",0,Ast.NCic (NCic.Rel 1)) status
+            in 
+              if (head_goals status#stack = []) then raise Found
+              else ()
+           with
+            | Error _ -> ())
+       candidates;false
+    with Found -> debug_print ~depth (lazy "success");true)
+;;
+
+(* warning: ctx is supposed to be already instantiated w.r.t subst *)
+let index_local_equations eq_cache status =
+  let open_goals = head_goals status#stack in
+  assert (List.length open_goals  = 1);
+  let open_goal = List.hd open_goals in
+  let ngty = get_goalty status open_goal in
+  let ctx = ctx_of ngty in
+  let c = ref 0 in
+  List.fold_left 
+    (fun eq_cache _ ->
+       c:= !c+1;
+       let t = NCic.Rel !c in
+        try
+          let ty = NCicTypeChecker.typeof [] [] ctx t in
+             prerr_endline ("eq indexing " ^ (NCicPp.ppterm ctx [] [] ty));
+            NCicParamod.forward_infer_step eq_cache t ty
+        with 
+          | NCicTypeChecker.TypeCheckerFailure _
+          | NCicTypeChecker.AssertFailure _ -> eq_cache) 
+    eq_cache ctx
 ;;
 
 let rec guess_name name ctx = 
@@ -1328,22 +1444,80 @@ let rec guess_name name ctx =
   guess_name (name^"'") ctx
 ;;
 
-let intro_case status gno gty depth cache name =
-   (* let status = NTactics.focus_tac [gno] status in *)
-   let status = NTactics.intro_tac (guess_name name (ctx_of gty)) status in
-   let open_goals = head_goals status#stack in
-   assert (List.length open_goals  = 1);
-   let open_goal = List.hd open_goals in
-   let ngty = get_goalty status open_goal in
-   let ctx = ctx_of ngty in
-   let t = mk_cic_term ctx (NCic.Rel 1) in
-   let status, keys = keys_of_term status t in
-   let cache = List.fold_left (add_to_th t) cache keys in
-   debug_print ~depth (lazy ("intro: "^ string_of_int open_goal));
-   incr candidate_no;
-    (* XXX compute the sort *)
-   [(!candidate_no,Ast.Implicit `JustOne),0,0,status,[open_goal,P]],
-   cache
+let is_prod status = 
+  let _, ctx, gty = current_goal status in
+  let _, raw_gty = term_of_cic_term status gty ctx in
+  match raw_gty with
+    | NCic.Prod (name,_,_) -> Some (guess_name name ctx)
+    | _ -> None
+
+let intro ~depth status facts name =
+  let status = NTactics.intro_tac name status in
+  let _, ctx, ngty = current_goal status in
+  let t = mk_cic_term ctx (NCic.Rel 1) in
+  let status, keys = keys_of_term status t in
+  let facts = List.fold_left (add_to_th t) facts keys in
+    debug_print ~depth (lazy ("intro: "^ name));
+  (* unprovability is not stable w.r.t introduction *)
+  status, facts
+;;
+
+let rec intros_facts ~depth status facts =
+  match is_prod status with
+    | Some(name) ->
+       let status,facts =
+         intro ~depth status facts name
+       in intros_facts ~depth status facts 
+    | _ -> status, facts
+;; 
+
+let rec intros ~depth status (cache:cache) =
+    match is_prod status with
+      | Some _ ->
+          prerr_endline "is prod";
+         let status,facts =
+           intros_facts ~depth status cache.facts 
+         in 
+           (* we reindex the equation from scratch *)
+         let unit_eq = 
+           index_local_equations status#eq_cache status in
+           (* under_inspection must be set to empty *)
+         status, init_cache ~facts ~unit_eq () 
+      | _ -> status, cache
+;;
+
+let reduce ~depth status g = 
+  let n,h,metasenv,subst,o = status#obj in 
+  let attr, ctx, ty = NCicUtils.lookup_meta g metasenv in
+  let ty = NCicUntrusted.apply_subst subst ctx ty in
+  let ty' = NCicReduction.whd ~subst ctx ty in
+  if ty = ty' then []
+  else
+    (debug_print ~depth 
+      (lazy ("reduced to: "^ NCicPp.ppterm ctx subst metasenv ty'));
+    let metasenv = 
+      (g,(attr,ctx,ty'))::(List.filter (fun (i,_) -> i<>g) metasenv) 
+    in
+    let status = status#set_obj (n,h,metasenv,subst,o) in
+    incr candidate_no;
+    [(!candidate_no,Ast.Ident("__whd",None)),status])
+;;
+
+let do_something signature flags status g depth gty cache =
+  (* whd *)
+  let l = reduce ~depth status g in
+  (* backward aplications *)
+  let l1 = applicative_case depth signature status flags gty cache in
+  (* fast paramodulation *) 
+  let l2 = 
+    List.map 
+      (fun s ->
+        incr candidate_no;
+        ((!candidate_no,Ast.Ident("__paramod",None)),s))
+      (auto_eq_check cache.unit_eq status)
+  (* states in l2 have have an set of subgoals: no point to sort them *)
+  in
+    l2 @ (sort_new_elems (l@l1)), cache
 ;;
 
 let pp_goal = function
@@ -1360,14 +1534,6 @@ let pp_goals status l =
        l)
 ;;
 
-let do_something signature flags s gno depth gty cache =
-  let _s, raw_gty = term_of_cic_term s gty (ctx_of gty) in
-  match raw_gty with
-  | NCic.Prod (name,_,_) -> intro_case s gno gty depth cache name
-  | _ -> 
-      equational_and_applicative_case signature flags s gno depth gty cache
-;;
-
 module M = 
   struct 
     type t = int
@@ -1469,59 +1635,67 @@ let rec auto_clusters
 
 and
 
-(* The pair solved,init_status is used for chaching purposes.
-   solved is the list of goals in init_status already proved. 
-   Initially, init_status=status and k is set to [] *)
 (* let rec auto_main flags signature cache status k depth = *)
 
-auto_main flags signature cache depth status: unit =
+auto_main flags signature (cache:cache) depth status: unit =
   debug_print ~depth (lazy "entering auto main");
   (* ignore(Unix.select [] [] [] 0.01); *)
   let status = sort_tac (clean_up_tac status) in
   let goals = head_goals status#stack in
   match goals with
     | [] -> raise (Proved status)
-    | g::tlg ->
-        if depth = flags.maxdepth then raise (Gaveup IntSet.empty)
-       else
-        let status = 
-         if tlg=[] then status 
-         else NTactics.branch_tac status in
-        let gty = get_goalty status g in
-        let status, gty = apply_subst status (ctx_of gty) gty in
-        debug_print ~depth (lazy("Depth = " ^ (string_of_int depth)));
-       debug_print ~depth (lazy("Attacking goal " ^ (string_of_int g) ^" : "^ppterm status gty));
-       close status g; 
-        (* let closed = metas_of_term status gty = [] in *)
+    | _ ->
+        let branch = List.length(goals)>1 in
+       if depth = flags.maxdepth then raise (Gaveup IntSet.empty)
+        else
+       let status = 
+         if branch then NTactics.branch_tac status 
+         else status in
+        let status, cache = intros ~depth status cache in
+        let g,gctx, gty = current_goal status in
+       let ctx,ty = close status g in
+       let closegty = mk_cic_term ctx ty in
+        let status, gty = apply_subst status gctx gty in
+       debug_print ~depth (lazy("Attacking goal " ^ (string_of_int g) ^" : "^ppterm status gty)); 
+        if is_subsumed depth status closegty cache.under_inspection then 
+         (debug_print (lazy "SUBSUMED");
+          raise (Gaveup IntSet.add g IntSet.empty))
+       else 
        let alternatives, cache = 
           do_something signature flags status g depth gty cache in
+       let loop_cache =
+         let under_inspection = 
+           add_to_th closegty cache.under_inspection closegty in
+          {cache with under_inspection = under_inspection} in
        let unsat =
          List.fold_left
             (* the underscore information does not need to be returned
                by do_something *)
-           (fun unsat ((_,t),_,_,status,_) ->
-               let depth' = 
-                if t=(Ast.Implicit `JustOne) then depth else depth+1 in
+           (fun unsat ((_,t),status) ->
+              let depth',looping_cache = 
+                if t=Ast.Ident("__whd",None) then depth,cache 
+                else depth+1, loop_cache in
                debug_print (~depth:depth') 
-                (lazy ("Case: " ^ CicNotationPp.pp_term t)); 
-              try auto_clusters flags signature cache 
+                (lazy ("Case: " ^ CicNotationPp.pp_term t));
+              try auto_clusters flags signature loop_cache
                 depth' status; unsat
                with 
                 | Proved status ->
                      debug_print (~depth:depth') (lazy "proved");
-                    if tlg=[] then raise (Proved status) 
-                    else 
+                    if branch then 
                       let status = NTactics.merge_tac status
-                    in
-                    (try auto_clusters flags signature cache 
-                       depth status; unsat
-                     with Gaveup f ->
-                       debug_print ~depth 
-                         (lazy ("Unsat1 at depth " ^ (string_of_int depth)
+                      in
+                        (* old cache, here *)
+                        try auto_clusters flags signature cache 
+                          depth status; assert false
+                        with Gaveup f ->
+                          debug_print ~depth 
+                            (lazy ("Unsat1 at depth " ^ (string_of_int depth)
                                   ^ ": " ^ 
                                   (pp_goals status (IntSet.elements f))));
                         (* TODO: cache failures *)
-                       IntSet.union f unsat)
+                          IntSet.union f unsat
+                    else raise (Proved status) 
                 | Gaveup f -> 
                     debug_print (~depth:depth')
                       (lazy ("Unsat2 at depth " ^ (string_of_int depth')
@@ -1541,8 +1715,10 @@ let int name l def =
 
 let auto_tac ~params:(_univ,flags) status =
   let goals = head_goals status#stack in
-  let status, cache = mk_th_cache status goals in
-(*   pp_th status cache; *)
+  let status, facts = mk_th_cache status goals in
+  let unit_eq = index_local_equations status#eq_cache status in 
+  let cache = init_cache ~facts ~unit_eq  () in 
+(*   pp_th status facts; *)
 (*
   NDiscriminationTree.DiscriminationTree.iter status#auto_cache (fun p t -> 
     debug_print (lazy(
@@ -1568,16 +1744,21 @@ let auto_tac ~params:(_univ,flags) status =
   let initial_time = Unix.gettimeofday() in
   app_counter:= 0;
   let rec up_to x y =
-    if x > y then raise (Error (lazy "auto gave up", None))
+    if x > y then
+      (print(lazy
+        ("TIME ELAPSED:"^string_of_float(Unix.gettimeofday()-.initial_time)));
+       print(lazy
+        ("Applicative nodes:"^string_of_int !app_counter)); 
+       raise (Error (lazy "auto gave up", None)))
     else
       let _ = debug_print (lazy("\n\nRound "^string_of_int x^"\n")) in
       let flags = { flags with maxdepth = x } 
       in 
-       try auto_clusters flags signature cache 0 status;status 
+       try auto_clusters flags signature cache 0 status;assert false
        with
          | Gaveup _ -> up_to (x+1) y
          | Proved s -> 
-              HLog.debug ("proved at depth " ^ string_of_int x);
+              print (lazy ("proved at depth " ^ string_of_int x));
               let stack = 
                match s#stack with
                  | (g,t,k,f) :: rest -> (filter_open g,t,k,f):: rest
@@ -1586,9 +1767,9 @@ let auto_tac ~params:(_univ,flags) status =
                s#set_stack stack
   in
   let s = up_to depth depth in
-    debug_print(lazy
+    print(lazy
         ("TIME ELAPSED:"^string_of_float(Unix.gettimeofday()-.initial_time)));
-    debug_print(lazy
+    print(lazy
         ("Applicative nodes:"^string_of_int !app_counter));
     s
 ;;