]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nnAuto.ml
ede2e856afb845b2f7205f6c70550c09f4404047
[helm.git] / helm / software / components / ng_tactics / nnAuto.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                 
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 open Printf
13
14 let print ?(depth=0) s = 
15   prerr_endline (String.make depth '\t'^Lazy.force s) 
16 let noprint ?(depth=0) _ = () 
17 let debug_print = noprint
18
19 open Continuationals.Stack
20 open NTacStatus
21 module Ast = CicNotationPt
22 let app_counter = ref 0
23
24 (* ======================= utility functions ========================= *)
25 module IntSet = Set.Make(struct type t = int let compare = compare end)
26
27 let get_sgoalty status g =
28  let _,_,metasenv,subst,_ = status#obj in
29  try
30    let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
31    let ty = NCicUntrusted.apply_subst subst ctx ty in
32    let ctx = NCicUntrusted.apply_subst_context 
33      ~fix_projections:true subst ctx
34    in
35      NTacStatus.mk_cic_term ctx ty
36  with NCicUtils.Meta_not_found _ as exn -> fail ~exn (lazy "get_sgoalty")
37 ;;
38
39 let deps status g =
40   let gty = get_sgoalty status g in
41   metas_of_term status gty
42 ;;
43
44 let menv_closure status gl = 
45   let rec closure acc = function
46     | [] -> acc
47     | x::l when IntSet.mem x acc -> closure acc l
48     | x::l -> closure (IntSet.add x acc) (deps status x @ l)
49   in closure IntSet.empty gl
50 ;;
51
52 (* we call a "fact" an object whose hypothesis occur in the goal 
53    or in types of goal-variables *)
54 let branch status ty =  
55   let status, ty, metas = saturate ~delta:0 status ty in
56   noprint (lazy ("saturated ty :" ^ (ppterm status ty)));
57   let g_metas = metas_of_term status ty in
58   let clos = menv_closure status g_metas in
59   (* let _,_,metasenv,_,_ = status#obj in *)
60   let menv = 
61     List.fold_left
62       (fun acc m ->
63          let _, m = term_of_cic_term status m (ctx_of m) in
64          match m with 
65          | NCic.Meta(i,_) -> IntSet.add i acc
66          | _ -> assert false)
67       IntSet.empty metas
68   in 
69   (* IntSet.subset menv clos *)
70   IntSet.cardinal(IntSet.diff menv clos)
71
72 let is_a_fact status ty = branch status ty = 0
73
74 let is_a_fact_obj s uri = 
75   let obj = NCicEnvironment.get_checked_obj uri in
76   match obj with
77     | (_,_,[],[],NCic.Constant(_,_,Some(t),ty,_)) ->
78         is_a_fact s (mk_cic_term [] ty)
79 (* aggiungere i costruttori *)
80     | _ -> false
81
82 let is_a_fact_ast status subst metasenv ctx cand = 
83  debug_print ~depth:0 
84    (lazy ("------- checking " ^ CicNotationPp.pp_term cand)); 
85  let status, t = disambiguate status ctx ("",0,cand) None in
86  let status,t = term_of_cic_term status t ctx in
87  let ty = NCicTypeChecker.typeof subst metasenv ctx t in
88    is_a_fact status (mk_cic_term ctx ty)
89
90 let current_goal status = 
91   let open_goals = head_goals status#stack in
92   assert (List.length open_goals  = 1);
93   let open_goal = List.hd open_goals in
94   let gty = get_goalty status open_goal in
95   let ctx = ctx_of gty in
96     open_goal, ctx, gty
97
98 let height_of_ref (NReference.Ref (uri, x)) = 
99   match x with
100   | NReference.Decl 
101   | NReference.Ind _ 
102   | NReference.Con _
103   | NReference.CoFix _ -> 
104       let _,height,_,_,_ = NCicEnvironment.get_checked_obj uri in
105       height 
106   | NReference.Def h -> h 
107   | NReference.Fix (_,_,h) -> h 
108 ;;
109
110 (*************************** height functions ********************************)
111 let fast_height_of_term t =
112  let h = ref 0 in
113  let rec aux =
114   function
115      NCic.Meta (_,(_,NCic.Ctx l)) -> List.iter aux l
116    | NCic.Meta _ -> ()
117    | NCic.Rel _
118    | NCic.Sort _ -> ()
119    | NCic.Implicit _ -> assert false
120    | NCic.Const nref as t -> 
121 (*
122                    prerr_endline (NCicPp.ppterm ~metasenv:[] ~subst:[]
123                    ~context:[] t ^ ":" ^ string_of_int (height_of_ref nref));            
124 *)
125        h := max !h (height_of_ref nref)
126    | NCic.Prod (_,t1,t2)
127    | NCic.Lambda (_,t1,t2) -> aux t1; aux t2
128    | NCic.LetIn (_,s,ty,t) -> aux s; aux ty; aux t
129    | NCic.Appl l -> List.iter aux l
130    | NCic.Match (_,outty,t,pl) -> aux outty; aux t; List.iter aux pl
131  in
132   aux t; !h
133 ;;
134
135 let height_of_goal g status = 
136   let ty = get_goalty status g in
137   let context = ctx_of ty in
138   let _, ty = term_of_cic_term status ty (ctx_of ty) in
139   let h = ref (fast_height_of_term ty) in
140   List.iter 
141     (function 
142        | _, NCic.Decl ty -> h := max !h (fast_height_of_term ty)
143        | _, NCic.Def (bo,ty) -> 
144            h := max !h (fast_height_of_term ty);
145            h := max !h (fast_height_of_term bo);
146     )
147     context;
148   !h
149 ;;      
150
151 let height_of_goals status = 
152   let open_goals = head_goals status#stack in
153   assert (List.length open_goals > 0);
154   let h = ref 1 in
155   List.iter 
156     (fun open_goal ->
157        h := max !h (height_of_goal open_goal status))
158      open_goals;
159   debug_print (lazy ("altezza sequente: " ^ string_of_int !h));
160   !h
161 ;;
162
163 (* =============================== paramod =========================== *)
164 let solve fast status eq_cache goal =
165   let f = 
166     if fast then NCicParamod.fast_eq_check
167     else NCicParamod.paramod in
168   let n,h,metasenv,subst,o = status#obj in
169   let gname, ctx, gty = List.assoc goal metasenv in
170   let gty = NCicUntrusted.apply_subst subst ctx gty in
171   let build_status (pt, _, metasenv, subst) =
172     try
173       debug_print (lazy ("refining: "^(NCicPp.ppterm ctx subst metasenv pt)));
174       let stamp = Unix.gettimeofday () in 
175       let metasenv, subst, pt, pty =
176         (* NCicRefiner.typeof status
177           (* (status#set_coerc_db NCicCoercion.empty_db) *)
178           metasenv subst ctx pt None in
179           print (lazy ("refined: "^(NCicPp.ppterm ctx subst metasenv pt)));
180           debug_print (lazy ("synt: "^(NCicPp.ppterm ctx subst metasenv pty)));
181           let metasenv, subst =
182             NCicUnification.unify status metasenv subst ctx gty pty *)
183         NCicRefiner.typeof 
184           (status#set_coerc_db NCicCoercion.empty_db) 
185           metasenv subst ctx pt (Some gty) 
186         in 
187           debug_print (lazy (Printf.sprintf "Refined in %fs"
188                      (Unix.gettimeofday() -. stamp))); 
189           let status = status#set_obj (n,h,metasenv,subst,o) in
190           let metasenv = List.filter (fun j,_ -> j <> goal) metasenv in
191           let subst = (goal,(gname,ctx,pt,pty)) :: subst in
192             Some (status#set_obj (n,h,metasenv,subst,o))
193     with 
194         NCicRefiner.RefineFailure msg 
195       | NCicRefiner.Uncertain msg ->
196           debug_print (lazy ("WARNING: refining in fast_eq_check failed" ^
197                         snd (Lazy.force msg))); None
198       | NCicRefiner.AssertFailure msg -> 
199           debug_print (lazy ("WARNING: refining in fast_eq_check failed" ^
200                         Lazy.force msg)); None
201       | _ -> None
202     in
203     HExtlib.filter_map build_status
204       (f status metasenv subst ctx eq_cache (NCic.Rel ~-1,gty))
205 ;;
206
207 let fast_eq_check eq_cache status goal =
208   match solve true status eq_cache goal with
209   | [] -> raise (Error (lazy "no proof found",None))
210   | s::_ -> s
211 ;;
212
213 let dist_fast_eq_check eq_cache s = 
214   NTactics.distribute_tac (fast_eq_check eq_cache) s
215 ;;
216
217 let auto_eq_check eq_cache status =
218   try 
219     let s = dist_fast_eq_check eq_cache status in
220       [s]
221   with
222     | Error _ -> []
223 ;;
224
225 (* warning: ctx is supposed to be already instantiated w.r.t subst *)
226 let index_local_equations eq_cache status =
227   debug_print (lazy "indexing equations");
228   let open_goals = head_goals status#stack in
229   let open_goal = List.hd open_goals in
230   let ngty = get_goalty status open_goal in
231   let ctx = ctx_of ngty in
232   let c = ref 0 in
233   List.fold_left 
234     (fun eq_cache _ ->
235        c:= !c+1;
236        let t = NCic.Rel !c in
237          try
238            let ty = NCicTypeChecker.typeof [] [] ctx t in
239            if is_a_fact status (mk_cic_term ctx ty) then
240              (debug_print(lazy("eq indexing " ^ (NCicPp.ppterm ctx [] [] ty)));
241               NCicParamod.forward_infer_step eq_cache t ty)
242            else 
243              (debug_print (lazy ("not a fact: " ^ (NCicPp.ppterm ctx [] [] ty)));
244               eq_cache)
245          with 
246            | NCicTypeChecker.TypeCheckerFailure _
247            | NCicTypeChecker.AssertFailure _ -> eq_cache) 
248     eq_cache ctx
249 ;;
250
251 let fast_eq_check_tac ~params s = 
252   let unit_eq = index_local_equations s#eq_cache s in   
253   dist_fast_eq_check unit_eq s
254 ;;
255
256 let paramod eq_cache status goal =
257   match solve false status eq_cache goal with
258   | [] -> raise (Error (lazy "no proof found",None))
259   | s::_ -> s
260 ;;
261
262 let paramod_tac ~params s = 
263   let unit_eq = index_local_equations s#eq_cache s in   
264   NTactics.distribute_tac (paramod unit_eq) s
265 ;;
266
267 (*
268 let fast_eq_check_tac_all  ~params eq_cache status = 
269   let g,_,_ = current_goal status in
270   let allstates = fast_eq_check_all status eq_cache g in
271   let pseudo_low_tac s _ _ = s in
272   let pseudo_low_tactics = 
273     List.map pseudo_low_tac allstates 
274   in
275     List.map (fun f -> NTactics.distribute_tac f status) pseudo_low_tactics
276 ;;
277 *)
278
279 (*
280 let demod status eq_cache goal =
281   let n,h,metasenv,subst,o = status#obj in
282   let gname, ctx, gty = List.assoc goal metasenv in
283   let gty = NCicUntrusted.apply_subst subst ctx gty in
284
285 let demod_tac ~params s = 
286   let unit_eq = index_local_equations s#eq_cache s in   
287   dist_fast_eq_check unit_eq s
288 *)
289
290 (*************** subsumption ****************)
291
292 let close_wrt_context =
293   List.fold_left 
294     (fun ty ctx_entry -> 
295         match ctx_entry with 
296        | name, NCic.Decl t -> NCic.Prod(name,t,ty)
297        | name, NCic.Def(bo, _) -> NCicSubstitution.subst bo ty)
298 ;;
299
300 let args_for_context ?(k=1) ctx =
301   let _,args =
302     List.fold_left 
303       (fun (n,l) ctx_entry -> 
304          match ctx_entry with 
305            | name, NCic.Decl t -> n+1,NCic.Rel(n)::l
306            | name, NCic.Def(bo, _) -> n+1,l)
307       (k,[]) ctx in
308     args
309
310 let constant_for_meta ctx ty i =
311   let name = "cic:/foo"^(string_of_int i)^".con" in
312   let uri = NUri.uri_of_string name in
313   let ty = close_wrt_context ty ctx in
314   (* prerr_endline (NCicPp.ppterm [] [] [] ty); *)
315   let attr = (`Generated,`Definition,`Local) in
316   let obj = NCic.Constant([],name,None,ty,attr) in
317     (* Constant  of relevance * string * term option * term * c_attr *)
318     (uri,0,[],[],obj)
319
320 (* not used *)
321 let refresh metasenv =
322   List.fold_left 
323     (fun (metasenv,subst) (i,(iattr,ctx,ty)) ->
324        let ikind = NCicUntrusted.kind_of_meta iattr in
325        let metasenv,j,instance,ty = 
326          NCicMetaSubst.mk_meta ~attrs:iattr 
327            metasenv ctx ~with_type:ty ikind in
328        let s_entry = i,(iattr, ctx, instance, ty) in
329        let metasenv = List.filter (fun x,_ -> i <> x) metasenv in
330          metasenv,s_entry::subst) 
331       (metasenv,[]) metasenv
332
333 (* close metasenv returns a ground instance of all the metas in the
334 metasenv, insantiatied with axioms, and the list of these axioms *)
335 let close_metasenv metasenv subst = 
336   (*
337   let metasenv = NCicUntrusted.apply_subst_metasenv subst metasenv in
338   *)
339   let metasenv = NCicUntrusted.sort_metasenv subst metasenv in 
340     List.fold_left 
341       (fun (subst,objs) (i,(iattr,ctx,ty)) ->
342          let ty = NCicUntrusted.apply_subst subst ctx ty in
343          let ctx = 
344            NCicUntrusted.apply_subst_context ~fix_projections:true 
345              subst ctx in
346          let (uri,_,_,_,obj) as okind = 
347            constant_for_meta ctx ty i in
348          try
349            NCicEnvironment.check_and_add_obj okind;
350            let iref = NReference.reference_of_spec uri NReference.Decl in
351            let iterm =
352              let args = args_for_context ctx in
353                if args = [] then NCic.Const iref 
354                else NCic.Appl(NCic.Const iref::args)
355            in
356            (* prerr_endline (NCicPp.ppterm ctx [] [] iterm); *)
357            let s_entry = i, ([], ctx, iterm, ty)
358            in s_entry::subst,okind::objs
359          with _ -> assert false)
360       (subst,[]) metasenv
361 ;;
362
363 let ground_instances status gl =
364   let _,_,metasenv,subst,_ = status#obj in
365   let subset = menv_closure status gl in
366   let submenv = List.filter (fun (x,_) -> IntSet.mem x subset) metasenv in
367 (*
368   let submenv = metasenv in
369 *)
370   let subst, objs = close_metasenv submenv subst in
371   try
372     List.iter
373       (fun i -> 
374          let (_, ctx, t, _) = List.assoc i subst in
375            debug_print (lazy (NCicPp.ppterm ctx [] [] t));
376            List.iter 
377              (fun (uri,_,_,_,_) as obj -> 
378                 NCicEnvironment.invalidate_item (`Obj (uri, obj))) 
379              objs;
380            ())
381       gl
382   with
383       Not_found -> assert false 
384   (* (ctx,t) *)
385 ;;
386
387 let replace_meta i args target = 
388   let rec aux k = function
389     (* TODO: local context *)
390     | NCic.Meta (j,lc) when i = j ->
391         (match args with
392            | [] -> NCic.Rel 1
393            | _ -> let args = 
394                List.map (NCicSubstitution.subst_meta lc) args in
395                NCic.Appl(NCic.Rel k::args))
396     | NCic.Meta (j,lc) as m ->
397         (match lc with
398            _,NCic.Irl _ -> m
399          | n,NCic.Ctx l ->
400             NCic.Meta
401              (i,(0,NCic.Ctx
402                  (List.map (fun t ->
403                    aux k (NCicSubstitution.lift n t)) l))))
404     | t -> NCicUtils.map (fun _ k -> k+1) k aux t
405  in
406    aux 1 target
407 ;;
408
409 let close_wrt_metasenv subst =
410   List.fold_left 
411     (fun ty (i,(iattr,ctx,mty)) ->
412        let mty = NCicUntrusted.apply_subst subst ctx mty in
413        let ctx = 
414          NCicUntrusted.apply_subst_context ~fix_projections:true 
415            subst ctx in
416        let cty = close_wrt_context mty ctx in
417        let name = "foo"^(string_of_int i) in
418        let ty = NCicSubstitution.lift 1 ty in
419        let args = args_for_context ~k:1 ctx in
420          (* prerr_endline (NCicPp.ppterm ctx [] [] iterm); *)
421        let ty = replace_meta i args ty
422        in
423        NCic.Prod(name,cty,ty))
424 ;;
425
426 let close status g =
427   let _,_,metasenv,subst,_ = status#obj in
428   let subset = menv_closure status [g] in
429   let subset = IntSet.remove g subset in
430   let elems = IntSet.elements subset in 
431   let _, ctx, ty = NCicUtils.lookup_meta g metasenv in
432   let ty = NCicUntrusted.apply_subst subst ctx ty in
433   debug_print (lazy ("metas in " ^ (NCicPp.ppterm ctx [] metasenv ty)));
434   debug_print (lazy (String.concat ", " (List.map string_of_int elems)));
435   let submenv = List.filter (fun (x,_) -> IntSet.mem x subset) metasenv in
436   let submenv = List.rev (NCicUntrusted.sort_metasenv subst submenv) in 
437 (*  
438     let submenv = metasenv in
439 *)
440   let ty = close_wrt_metasenv subst ty submenv in
441     debug_print (lazy (NCicPp.ppterm ctx [] [] ty));
442     ctx,ty
443 ;;
444
445 (****************** smart application ********************)
446
447 let saturate_to_ref metasenv subst ctx nref ty =
448   let height = height_of_ref nref in
449   let rec aux metasenv ty args = 
450     let ty,metasenv,moreargs =  
451       NCicMetaSubst.saturate ~delta:height metasenv subst ctx ty 0 in 
452     match ty with
453       | NCic.Const(NReference.Ref (_,NReference.Def _) as nre) 
454           when nre<>nref ->
455           let _, _, bo, _, _, _ = NCicEnvironment.get_checked_def nre in 
456             aux metasenv ty (args@moreargs)
457       | NCic.Appl(NCic.Const(NReference.Ref (_,NReference.Def _) as nre)::tl) 
458           when nre<>nref ->
459           let _, _, bo, _, _, _ = NCicEnvironment.get_checked_def nre in
460             aux metasenv (NCic.Appl(bo::tl)) (args@moreargs) 
461     | _ -> ty,metasenv,(args@moreargs)
462   in
463     aux metasenv ty []
464
465 let smart_apply t unit_eq status g = 
466   let n,h,metasenv,subst,o = status#obj in
467   let gname, ctx, gty = List.assoc g metasenv in
468   (* let ggty = mk_cic_term context gty in *)
469   let status, t = disambiguate status ctx t None in
470   let status,t = term_of_cic_term status t ctx in
471   let ty = NCicTypeChecker.typeof subst metasenv ctx t in
472   let ty,metasenv,args = 
473     match gty with
474       | NCic.Const(nref)
475       | NCic.Appl(NCic.Const(nref)::_) -> 
476           saturate_to_ref metasenv subst ctx nref ty
477       | _ -> 
478           NCicMetaSubst.saturate metasenv subst ctx ty 0 in
479   let metasenv,j,inst,_ = NCicMetaSubst.mk_meta metasenv ctx `IsTerm in
480   let status = status#set_obj (n,h,metasenv,subst,o) in
481   let pterm = if args=[] then t else NCic.Appl(t::args) in
482   debug_print(lazy("pterm " ^ (NCicPp.ppterm ctx [] [] pterm)));
483   debug_print(lazy("pty " ^ (NCicPp.ppterm ctx [] [] ty)));
484   let eq_coerc =       
485     let uri = 
486       NUri.uri_of_string "cic:/matita/ng/Plogic/equality/eq_coerc.con" in
487     let ref = NReference.reference_of_spec uri (NReference.Def(2)) in
488       NCic.Const ref
489   in
490   let smart = 
491     NCic.Appl[eq_coerc;ty;NCic.Implicit `Type;pterm;inst] in
492   let smart = mk_cic_term ctx smart in 
493     try
494       let status = instantiate status g smart in
495       let _,_,metasenv,subst,_ = status#obj in
496       let _,ctx,jty = List.assoc j metasenv in
497       let jty = NCicUntrusted.apply_subst subst ctx jty in
498         debug_print(lazy("goal " ^ (NCicPp.ppterm ctx [] [] jty)));
499         fast_eq_check unit_eq status j
500     with
501       | Error _ as e -> debug_print (lazy "error"); raise e
502
503 let smart_apply_tac t s =
504   let unit_eq = index_local_equations s#eq_cache s in   
505   NTactics.distribute_tac (smart_apply t unit_eq) s
506
507 let smart_apply_auto t eq_cache =
508   NTactics.distribute_tac (smart_apply t eq_cache)
509
510
511 (****************** types **************)
512
513
514 type th_cache = (NCic.context * InvRelDiscriminationTree.t) list
515
516 let keys_of_term status t =
517   let status, orig_ty = typeof status (ctx_of t) t in
518   let _, ty, _ = saturate ~delta:max_int status orig_ty in
519   let keys = [ty] in
520   let keys = 
521     let _, ty = term_of_cic_term status ty (ctx_of ty) in
522     match ty with
523     | NCic.Const (NReference.Ref (_,(NReference.Def h | NReference.Fix (_,_,h)))) 
524     | NCic.Appl (NCic.Const(NReference.Ref(_,(NReference.Def h | NReference.Fix (_,_,h))))::_) 
525        when h > 0 ->
526          let _,ty,_= saturate status ~delta:(h-1) orig_ty in
527          ty::keys
528     | _ -> keys
529   in
530   status, keys
531 ;;
532
533 let mk_th_cache status gl = 
534   List.fold_left 
535     (fun (status, acc) g ->
536        let gty = get_goalty status g in
537        let ctx = ctx_of gty in
538        debug_print(lazy("th cache for: "^ppterm status gty));
539        debug_print(lazy("th cache in: "^ppcontext status ctx));
540        if List.mem_assq ctx acc then status, acc else
541          let idx = InvRelDiscriminationTree.empty in
542          let status,_,idx = 
543            List.fold_left 
544              (fun (status, i, idx) _ -> 
545                 let t = mk_cic_term ctx (NCic.Rel i) in
546                 let status, keys = keys_of_term status t in
547                 debug_print(lazy("indexing: "^ppterm status t ^ ": " ^ string_of_int (List.length keys)));
548                 let idx =
549                   List.fold_left (fun idx k -> 
550                     InvRelDiscriminationTree.index idx k t) idx keys
551                 in
552                 status, i+1, idx)
553              (status, 1, idx) ctx
554           in
555          status, (ctx, idx) :: acc)
556     (status,[]) gl
557 ;;
558
559 let add_to_th t c ty = 
560   let key_c = ctx_of t in
561   if not (List.mem_assq key_c c) then
562       (key_c ,InvRelDiscriminationTree.index 
563                InvRelDiscriminationTree.empty ty t ) :: c 
564   else
565     let rec replace = function
566       | [] -> []
567       | (x, idx) :: tl when x == key_c -> 
568           (x, InvRelDiscriminationTree.index idx ty t) :: tl
569       | x :: tl -> x :: replace tl
570     in 
571       replace c
572 ;;
573
574 let rm_from_th t c ty = 
575   let key_c = ctx_of t in
576   if not (List.mem_assq key_c c) then assert false
577   else
578     let rec replace = function
579       | [] -> []
580       | (x, idx) :: tl when x == key_c -> 
581           (x, InvRelDiscriminationTree.remove_index idx ty t) :: tl
582       | x :: tl -> x :: replace tl
583     in 
584       replace c
585 ;;
586
587 let pp_idx status idx =
588    InvRelDiscriminationTree.iter idx
589       (fun k set ->
590          debug_print(lazy("K: " ^ NCicInverseRelIndexable.string_of_path k));
591          Ncic_termSet.iter 
592            (fun t -> debug_print(lazy("\t"^ppterm status t))) 
593            set)
594 ;;
595
596 let pp_th status = 
597   List.iter 
598     (fun ctx, idx ->
599        debug_print(lazy( "-----------------------------------------------"));
600        debug_print(lazy( (NCicPp.ppcontext ~metasenv:[] ~subst:[] ctx)));
601        debug_print(lazy( "||====>  "));
602        pp_idx status idx)
603 ;;
604
605 let search_in_th gty th = 
606   let c = ctx_of gty in
607   let rec aux acc = function
608    | [] -> (* Ncic_termSet.elements *) acc
609    | (_::tl) as k ->
610        try 
611          let idx = List.assq k th in
612          let acc = Ncic_termSet.union acc 
613            (InvRelDiscriminationTree.retrieve_unifiables idx gty)
614          in
615          aux acc tl
616        with Not_found -> aux acc tl
617   in
618     aux Ncic_termSet.empty c
619 ;;
620
621 type flags = {
622         do_types : bool; (* solve goals in Type *)
623         last : bool; (* last goal: take first solution only  *)
624         maxwidth : int;
625         maxsize  : int;
626         maxdepth : int;
627         timeout  : float;
628 }
629
630 type cache =
631     {facts : th_cache; (* positive results *)
632      under_inspection : cic_term list * th_cache; (* to prune looping *)
633      unit_eq : NCicParamod.state
634     }
635
636 type sort = T | P
637 type goal = int * sort (* goal, depth, sort *)
638 type fail = goal * cic_term
639 type candidate = int * Ast.term (* unique candidate number, candidate *)
640
641 exception Gaveup of IntSet.t (* a sublist of unprovable conjunctive
642                                 atoms of the input goals *)
643 exception Proved of NTacStatus.tac_status
644
645 (* let close_failures _ c = c;; *)
646 (* let prunable _ _ _ = false;; *)
647 (* let cache_examine cache gty = `Notfound;; *)
648 (* let put_in_subst s _ _ _  = s;; *)
649 (* let add_to_cache_and_del_from_orlist_if_green_cut _ _ c _ _ o f _ = c, o, f, false ;; *)
650 (* let cache_add_underinspection c _ _ = c;; *)
651
652 let init_cache ?(facts=[]) ?(under_inspection=[],[]) 
653     ?(unit_eq=NCicParamod.empty_state) _ = 
654     {facts = facts;
655      under_inspection = under_inspection;
656      unit_eq = unit_eq
657     }
658
659 let only signature _context candidate = true
660 (*
661         (* TASSI: nel trie ci mettiamo solo il body, non il ty *)
662   let candidate_ty = 
663    NCicTypeChecker.typeof ~subst:[] ~metasenv:[] [] candidate
664   in
665   let height = fast_height_of_term candidate_ty in
666   let rc = signature >= height in
667   if rc = false then
668     debug_print (lazy ("Filtro: " ^ NCicPp.ppterm ~context:[] ~subst:[]
669           ~metasenv:[] candidate ^ ": " ^ string_of_int height))
670   else 
671     debug_print (lazy ("Tengo: " ^ NCicPp.ppterm ~context:[] ~subst:[]
672           ~metasenv:[] candidate ^ ": " ^ string_of_int height));
673
674   rc *)
675 ;; 
676
677 let candidate_no = ref 0;;
678
679 let openg_no status = List.length (head_goals status#stack)
680
681 let sort_candidates status ctx candidates =
682  let _,_,metasenv,subst,_ = status#obj in
683   let branch cand =
684     let status,ct = disambiguate status ctx ("",0,cand) None in
685     let status,t = term_of_cic_term status ct ctx in
686     let ty = NCicTypeChecker.typeof subst metasenv ctx t in
687     let res = branch status (mk_cic_term ctx ty) in
688     debug_print (lazy ("branch factor for: " ^ (ppterm status ct) ^ " = " 
689                       ^ (string_of_int res)));
690       res
691   in 
692   let candidates = List.map (fun t -> branch t,t) candidates in
693   let candidates = 
694      List.sort (fun (a,_) (b,_) -> a - b) candidates in 
695   let candidates = List.map snd candidates in
696     debug_print (lazy ("candidates =\n" ^ (String.concat "\n" 
697         (List.map CicNotationPp.pp_term candidates))));
698     candidates
699
700 let sort_new_elems l =
701   List.sort (fun (_,s1) (_,s2) -> openg_no s1 - openg_no s2) l
702
703 let try_candidate ?(smart=0) flags depth status eq_cache ctx t =
704  try
705   debug_print ~depth (lazy ("try " ^ CicNotationPp.pp_term t));
706   let status = 
707     if smart= 0 then NTactics.apply_tac ("",0,t) status 
708     else if smart = 1 then smart_apply_auto ("",0,t) eq_cache status 
709     else (* smart = 2: both *)
710       try NTactics.apply_tac ("",0,t) status 
711       with Error _ as exc -> 
712         smart_apply_auto ("",0,t) eq_cache status 
713   in
714 (*
715   let og_no = openg_no status in 
716     if (* og_no > flags.maxwidth || *)
717       ((depth + 1) = flags.maxdepth && og_no <> 0) then
718         (debug_print ~depth (lazy "pruned immediately"); None)
719     else *)
720       (* useless 
721       let status, cict = disambiguate status ctx ("",0,t) None in
722       let status,ct = term_of_cic_term status cict ctx in
723       let _,_,metasenv,subst,_ = status#obj in
724       let ty = NCicTypeChecker.typeof subst metasenv ctx ct in
725       let res = branch status (mk_cic_term ctx ty) in
726       if smart=1 && og_no > res then 
727         (print (lazy ("branch factor for: " ^ (ppterm status cict) ^ " = " 
728                     ^ (string_of_int res) ^ " vs. " ^ (string_of_int og_no)));
729          print ~depth (lazy "strange application"); None)
730       else *)
731         (incr candidate_no;
732          Some ((!candidate_no,t),status))
733  with Error (msg,exn) -> debug_print ~depth (lazy "failed"); None
734 ;;
735
736 let sort_of subst metasenv ctx t =
737   let ty = NCicTypeChecker.typeof subst metasenv ctx t in
738     NCicTypeChecker.typeof subst metasenv ctx ty
739 ;;
740   
741 let type0= NUri.uri_of_string ("cic:/matita/pts/Type0.univ")
742 ;;
743
744 let perforate_small subst metasenv context t =
745   let rec aux = function
746     | NCic.Appl (hd::tl) ->
747         let map t =
748           let s = sort_of subst metasenv context t in
749             match s with
750               | NCic.Sort(NCic.Type [`Type,u])
751                   when u=type0 -> NCic.Meta (0,(0,NCic.Irl 0))
752               | _ -> aux t
753         in
754           NCic.Appl (hd::List.map map tl)
755     | t -> t
756   in 
757     aux t
758 ;;
759
760 let get_candidates ?(smart=true) status cache signature gty =
761   let universe = status#auto_cache in
762   let _,_,metasenv,subst,_ = status#obj in
763   let context = ctx_of gty in
764   let t_ast t = 
765      let _status, t = term_of_cic_term status t context 
766      in Ast.NCic t in
767   let c_ast = function 
768     | NCic.Const r -> Ast.NRef r | _ -> assert false in
769   let _, raw_gty = term_of_cic_term status gty context in
770   let cands = NDiscriminationTree.DiscriminationTree.retrieve_unifiables 
771         universe raw_gty in 
772   let local_cands = search_in_th gty cache in
773   debug_print (lazy ("candidates for" ^ NTacStatus.ppterm status gty));
774   debug_print (lazy ("local cands = " ^ (string_of_int (List.length (Ncic_termSet.elements local_cands)))));
775   let together global local = 
776     List.map c_ast 
777       (List.filter (only signature context) 
778         (NDiscriminationTree.TermSet.elements global)) @
779       List.map t_ast (Ncic_termSet.elements local) in
780   let candidates = together cands local_cands in 
781   let candidates = sort_candidates status context candidates in
782   let smart_candidates = 
783     if smart then
784       match raw_gty with
785         | NCic.Appl _ 
786         | NCic.Const _ 
787         | NCic.Rel _ -> 
788             let weak_gty = perforate_small subst metasenv context raw_gty in
789               (*
790               NCic.Appl (hd:: HExtlib.mk_list(NCic.Meta (0,(0,NCic.Irl 0))) 
791                            (List.length tl)) in *)
792             let more_cands = 
793               NDiscriminationTree.DiscriminationTree.retrieve_unifiables 
794                 universe weak_gty in
795             let smart_cands = 
796               NDiscriminationTree.TermSet.diff more_cands cands in
797              let cic_weak_gty = mk_cic_term context weak_gty in
798             let more_local_cands = search_in_th cic_weak_gty cache in
799             let smart_local_cands = 
800               Ncic_termSet.diff more_local_cands local_cands in
801               together smart_cands smart_local_cands 
802               (* together more_cands more_local_cands *) 
803         | _ -> []
804     else [] 
805   in
806   let smart_candidates = sort_candidates status context smart_candidates in
807   (* if smart then smart_candidates, []
808      else candidates, [] *)
809   candidates, smart_candidates
810 ;;
811
812 let applicative_case depth signature status flags gty (cache:cache) =
813   app_counter:= !app_counter+1; 
814   let _,_,metasenv,subst,_ = status#obj in
815   let context = ctx_of gty in
816   let tcache = cache.facts in
817   let is_prod, is_eq =   
818     let status, t = term_of_cic_term status gty context  in 
819     let t = NCicReduction.whd subst context t in
820       match t with
821         | NCic.Prod _ -> true, false
822         | _ -> false, NCicParamod.is_equation metasenv subst context t 
823   in
824   debug_print(lazy (string_of_bool is_eq)); 
825   let candidates, smart_candidates = 
826     get_candidates ~smart:(not is_eq) status tcache signature gty in
827   debug_print ~depth
828     (lazy ("candidates: " ^ string_of_int (List.length candidates)));
829   debug_print ~depth
830     (lazy ("smart candidates: " ^ 
831              string_of_int (List.length smart_candidates)));
832  (*
833   let sm = 0 in 
834   let smart_candidates = [] in *)
835   let sm = if is_eq then 0 else 2 in
836   let maxd = ((depth + 1) = flags.maxdepth) in 
837   let only_one = flags.last && maxd in
838   debug_print (lazy ("only_one: " ^ (string_of_bool only_one))); 
839   debug_print (lazy ("maxd: " ^ (string_of_bool maxd)));
840   let elems =  
841     List.fold_left 
842       (fun elems cand ->
843          if (only_one && (elems <> [])) then elems 
844          else 
845            if (maxd && not(is_prod) & 
846                  not(is_a_fact_ast status subst metasenv context cand)) 
847            then (debug_print (lazy "pruned: not a fact"); elems)
848          else
849            match try_candidate (~smart:sm) 
850              flags depth status cache.unit_eq context cand with
851                | None -> elems
852                | Some x -> x::elems)
853       [] candidates
854   in
855   let more_elems = 
856     if only_one && elems <> [] then elems 
857     else
858       List.fold_left 
859         (fun elems cand ->
860          if (only_one && (elems <> [])) then elems 
861          else 
862            if (maxd && not(is_prod) &&
863                  not(is_a_fact_ast status subst metasenv context cand)) 
864            then (debug_print (lazy "pruned: not a fact"); elems)
865          else
866            match try_candidate (~smart:1) 
867              flags depth status cache.unit_eq context cand with
868                | None -> elems
869                | Some x -> x::elems)
870         [] smart_candidates
871   in
872   elems@more_elems
873 ;;
874
875 exception Found
876 ;;
877
878 (* gty is supposed to be meta-closed *)
879 let is_subsumed depth status gty cache =
880   if cache=[] then false else (
881   debug_print ~depth (lazy("Subsuming " ^ (ppterm status gty))); 
882   let n,h,metasenv,subst,obj = status#obj in
883   let ctx = ctx_of gty in
884   let _ , target = term_of_cic_term status gty ctx in
885   let target = NCicSubstitution.lift 1 target in 
886   (* candidates must only be searched w.r.t the given context *)
887   let candidates = 
888     try
889     let idx = List.assq ctx cache in
890       Ncic_termSet.elements 
891         (InvRelDiscriminationTree.retrieve_generalizations idx gty)
892     with Not_found -> []
893   in
894   debug_print ~depth
895     (lazy ("failure candidates: " ^ string_of_int (List.length candidates)));
896     try
897       List.iter
898         (fun t ->
899            let _ , source = term_of_cic_term status t ctx in
900            let implication = 
901              NCic.Prod("foo",source,target) in
902            let metasenv,j,_,_ = 
903              NCicMetaSubst.mk_meta  
904                metasenv ctx ~with_type:implication `IsType in
905            let status = status#set_obj (n,h,metasenv,subst,obj) in
906            let status = status#set_stack [([1,Open j],[],[],`NoTag)] in 
907            try
908              let status = NTactics.intro_tac "foo" status in
909              let status =
910                NTactics.apply_tac ("",0,Ast.NCic (NCic.Rel 1)) status
911              in 
912                if (head_goals status#stack = []) then raise Found
913                else ()
914            with
915              | Error _ -> ())
916         candidates;false
917     with Found -> debug_print ~depth (lazy "success");true)
918 ;;
919
920 let rec guess_name name ctx = 
921   if name = "_" then guess_name "auto" ctx else
922   if not (List.mem_assoc name ctx) then name else
923   guess_name (name^"'") ctx
924 ;;
925
926 let is_prod status = 
927   let _, ctx, gty = current_goal status in
928   let _, raw_gty = term_of_cic_term status gty ctx in
929   match raw_gty with
930     | NCic.Prod (name,_,_) -> Some (guess_name name ctx)
931     | _ -> None
932
933 let intro ~depth status facts name =
934   let status = NTactics.intro_tac name status in
935   let _, ctx, ngty = current_goal status in
936   let t = mk_cic_term ctx (NCic.Rel 1) in
937   let status, keys = keys_of_term status t in
938   let facts = List.fold_left (add_to_th t) facts keys in
939     debug_print ~depth (lazy ("intro: "^ name));
940   (* unprovability is not stable w.r.t introduction *)
941   status, facts
942 ;;
943
944 let rec intros_facts ~depth status facts =
945   match is_prod status with
946     | Some(name) ->
947         let status,facts =
948           intro ~depth status facts name
949         in intros_facts ~depth status facts 
950     | _ -> status, facts
951 ;; 
952
953 let rec intros ~depth status (cache:cache) =
954     match is_prod status with
955       | Some _ ->
956           let status,facts =
957             intros_facts ~depth status cache.facts 
958           in 
959             (* we reindex the equation from scratch *)
960           let unit_eq = 
961             index_local_equations status#eq_cache status in
962           status, init_cache ~facts ~unit_eq () 
963       | _ -> status, cache
964 ;;
965
966 let reduce ~depth status g = 
967   let n,h,metasenv,subst,o = status#obj in 
968   let attr, ctx, ty = NCicUtils.lookup_meta g metasenv in
969   let ty = NCicUntrusted.apply_subst subst ctx ty in
970   let ty' = NCicReduction.whd ~subst ctx ty in
971   if ty = ty' then []
972   else
973     (debug_print ~depth 
974       (lazy ("reduced to: "^ NCicPp.ppterm ctx subst metasenv ty'));
975     let metasenv = 
976       (g,(attr,ctx,ty'))::(List.filter (fun (i,_) -> i<>g) metasenv) 
977     in
978     let status = status#set_obj (n,h,metasenv,subst,o) in
979     (* we merge to gain a depth level; the previous goal level should
980        be empty *)
981     let status = NTactics.merge_tac status in
982     incr candidate_no;
983     [(!candidate_no,Ast.Ident("__whd",None)),status])
984 ;;
985
986 let do_something signature flags status g depth gty cache =
987   (* whd *)
988   let l = reduce ~depth status g in
989   (* if l <> [] then l,cache else *)
990   (* backward aplications *)
991   let l1 = 
992     List.map 
993       (fun s ->
994          incr candidate_no;
995          ((!candidate_no,Ast.Ident("__paramod",None)),s))
996       (auto_eq_check cache.unit_eq status) 
997   in
998   let l2 = 
999     if ((l1 <> []) && flags.last) then [] else
1000     applicative_case depth signature status flags gty cache 
1001   (* fast paramodulation *) 
1002   in
1003   (* states in l1 have have an empty set of subgoals: no point to sort them *)
1004   debug_print ~depth 
1005     (lazy ("alternatives = " ^ (string_of_int (List.length (l1@l@l2)))));
1006     (* l1 @ (sort_new_elems (l @ l2)), cache *)
1007     l1 @ (List.rev l2) @ l, cache 
1008 ;;
1009
1010 let pp_goal = function
1011   | (_,Continuationals.Stack.Open i) 
1012   | (_,Continuationals.Stack.Closed i) -> string_of_int i 
1013 ;;
1014
1015 let pp_goals status l =
1016   String.concat ", " 
1017     (List.map 
1018        (fun i -> 
1019           let gty = get_goalty status i in
1020             NTacStatus.ppterm status gty)
1021        l)
1022 ;;
1023
1024 module M = 
1025   struct 
1026     type t = int
1027     let compare = Pervasives.compare
1028   end
1029 ;;
1030
1031 module MS = HTopoSort.Make(M)
1032 ;;
1033
1034 let sort_tac status =
1035   let gstatus = 
1036     match status#stack with
1037     | [] -> assert false
1038     | (goals, t, k, tag) :: s ->
1039         let g = head_goals status#stack in
1040         let sortedg = 
1041           (List.rev (MS.topological_sort g (deps status))) in
1042           debug_print (lazy ("old g = " ^ 
1043             String.concat "," (List.map string_of_int g)));
1044           debug_print (lazy ("sorted goals = " ^ 
1045             String.concat "," (List.map string_of_int sortedg)));
1046           let is_it i = function
1047             | (_,Continuationals.Stack.Open j ) 
1048             | (_,Continuationals.Stack.Closed j ) -> i = j
1049           in 
1050           let sorted_goals = 
1051             List.map (fun i -> List.find (is_it i) goals) sortedg
1052           in
1053             (sorted_goals, t, k, tag) :: s
1054   in
1055    status#set_stack gstatus
1056 ;;
1057   
1058 let clean_up_tac status =
1059   let gstatus = 
1060     match status#stack with
1061     | [] -> assert false
1062     | (g, t, k, tag) :: s ->
1063         let is_open = function
1064           | (_,Continuationals.Stack.Open _) -> true
1065           | (_,Continuationals.Stack.Closed _) -> false
1066         in
1067         let g' = List.filter is_open g in
1068           (g', t, k, tag) :: s
1069   in
1070    status#set_stack gstatus
1071 ;;
1072
1073 let focus_tac focus status =
1074   let gstatus = 
1075     match status#stack with
1076     | [] -> assert false
1077     | (g, t, k, tag) :: s ->
1078         let in_focus = function
1079           | (_,Continuationals.Stack.Open i) 
1080           | (_,Continuationals.Stack.Closed i) -> List.mem i focus
1081         in
1082         let focus,others = List.partition in_focus g
1083         in
1084           (* we need to mark it as a BranchTag, otherwise cannot merge later *)
1085           (focus,[],[],`BranchTag) :: (others, t, k, tag) :: s
1086   in
1087    status#set_stack gstatus
1088 ;;
1089
1090 let deep_focus_tac level focus status =
1091   let in_focus = function
1092     | (_,Continuationals.Stack.Open i) 
1093     | (_,Continuationals.Stack.Closed i) -> List.mem i focus
1094   in
1095   let rec slice level gs = 
1096     if level = 0 then [],[],gs else
1097       match gs with 
1098         | [] -> assert false
1099         | (g, t, k, tag) :: s ->
1100             let f,o,gs = slice (level-1) s in           
1101             let f1,o1 = List.partition in_focus g
1102             in
1103             (f1,[],[],`BranchTag)::f, (o1, t, k, tag)::o, gs
1104   in
1105   let gstatus = 
1106     let f,o,s = slice level status#stack in f@o@s
1107   in
1108    status#set_stack gstatus
1109 ;;
1110
1111 let rec stack_goals level gs = 
1112   if level = 0 then []
1113   else match gs with 
1114     | [] -> assert false
1115     | (g,_,_,_)::s -> 
1116         let is_open = function
1117           | (_,Continuationals.Stack.Open i) -> Some i
1118           | (_,Continuationals.Stack.Closed _) -> None
1119         in
1120           HExtlib.filter_map is_open g @ stack_goals (level-1) s
1121 ;;
1122
1123 let open_goals level status = stack_goals level status#stack
1124 ;;
1125
1126 let move_to_side level status =
1127 match status#stack with
1128   | [] -> assert false
1129   | (g,_,_,_)::tl ->
1130       let is_open = function
1131           | (_,Continuationals.Stack.Open i) -> Some i
1132           | (_,Continuationals.Stack.Closed _) -> None
1133         in 
1134       let others = menv_closure status (stack_goals (level-1) tl) in
1135       List.for_all (fun i -> IntSet.mem i others) 
1136         (HExtlib.filter_map is_open g)
1137
1138 let rec auto_clusters ?(top=false)  
1139     flags signature cache depth status : unit =
1140   debug_print ~depth (lazy ("entering auto clusters at depth " ^
1141                            (string_of_int depth)));
1142   (* ignore(Unix.select [] [] [] 0.01); *)
1143   let status = clean_up_tac status in
1144   let goals = head_goals status#stack in
1145   if goals = [] then 
1146     if depth = 0 then raise (Proved status)
1147     else 
1148       let status = NTactics.merge_tac status in
1149         auto_clusters flags signature (cache:cache) (depth-1) status
1150   else if List.length goals < 2 then
1151     auto_main flags signature cache depth status
1152   else
1153     let all_goals = open_goals (depth+1) status in
1154     debug_print ~depth (lazy ("goals = " ^ 
1155       String.concat "," (List.map string_of_int all_goals)));
1156     let classes = HExtlib.clusters (deps status) all_goals in
1157     List.iter 
1158         (fun gl ->
1159            if List.length gl > flags.maxwidth then 
1160              (debug_print ~depth (lazy "FAIL GLOBAL WIDTH"); 
1161               raise (Gaveup IntSet.empty))
1162            else ()) classes;
1163     if List.length classes = 1 then
1164       let flags = 
1165         {flags with last = (List.length all_goals = 1)} in 
1166         (* no need to cluster *)
1167       auto_main flags signature cache depth status 
1168     else
1169     let classes = if top then List.rev classes else classes in
1170       debug_print ~depth
1171         (lazy 
1172            (String.concat "\n" 
1173            (List.map
1174               (fun l -> 
1175                  ("cluster:" ^ String.concat "," (List.map string_of_int l)))
1176            classes)));
1177       let status,b = 
1178         List.fold_left
1179           (fun (status,b) gl ->
1180              let flags = 
1181                {flags with last = (List.length gl = 1)} in 
1182              let lold = List.length status#stack in 
1183               debug_print ~depth (lazy ("stack length = " ^ 
1184                         (string_of_int lold)));
1185              let fstatus = deep_focus_tac (depth+1) gl status in
1186              try 
1187                debug_print ~depth (lazy ("focusing on" ^ 
1188                               String.concat "," (List.map string_of_int gl)));
1189                auto_main flags signature cache depth fstatus; assert false
1190              with 
1191                | Proved(status) -> 
1192                    let status = NTactics.merge_tac status in
1193                    let lnew = List.length status#stack in 
1194                      assert (lold = lnew);
1195                    (status,true)
1196                | Gaveup _ when top -> (status,b)
1197           )
1198           (status,false) classes
1199       in
1200       let rec final_merge n s =
1201         if n = 0 then s else final_merge (n-1) (NTactics.merge_tac s)
1202       in let status = final_merge depth status 
1203       in if b then raise (Proved status) else raise (Gaveup IntSet.empty)
1204
1205 and
1206         
1207 (* BRAND NEW VERSION *)         
1208 auto_main flags signature (cache:cache) depth status: unit =
1209   debug_print ~depth (lazy "entering auto main");
1210   debug_print ~depth (lazy ("stack length = " ^ 
1211                         (string_of_int (List.length status#stack))));
1212   (* ignore(Unix.select [] [] [] 0.01); *)
1213   let status = sort_tac (clean_up_tac status) in
1214   let goals = head_goals status#stack in
1215   match goals with
1216     | [] when depth = 0 -> raise (Proved status)
1217     | []  -> 
1218         let status = NTactics.merge_tac status in
1219         let cache =
1220           let l,tree = cache.under_inspection in
1221             match l with 
1222               | [] -> assert false
1223               | a::tl -> let tree = rm_from_th a tree a in
1224                   {cache with under_inspection = tl,tree} 
1225         in 
1226           auto_clusters flags signature cache (depth-1) status
1227     | orig::_ ->
1228         if depth > 0 && move_to_side depth status
1229         then 
1230           let _ = print (lazy "merged") in
1231           let status = NTactics.merge_tac status in
1232             auto_clusters flags signature cache (depth-1) status 
1233         else
1234         let ng = List.length goals in
1235         (* moved inside auto_clusters *)
1236         if ng > flags.maxwidth then 
1237           (print ~depth (lazy "FAIL LOCAL WIDTH"); raise (Gaveup IntSet.empty))
1238         else if depth = flags.maxdepth then 
1239           raise (Gaveup IntSet.empty)
1240         else 
1241         let status = NTactics.branch_tac ~force:true status in
1242         let status, cache = intros ~depth status cache in
1243         let g,gctx, gty = current_goal status in
1244         let ctx,ty = close status g in
1245         let closegty = mk_cic_term ctx ty in
1246         let status, gty = apply_subst status gctx gty in
1247         debug_print ~depth (lazy("Attacking goal " ^ (string_of_int g) ^" : "^ppterm status gty)); 
1248         if is_subsumed depth status closegty (snd cache.under_inspection) then 
1249           (debug_print ~depth (lazy "SUBSUMED");
1250            raise (Gaveup IntSet.add g IntSet.empty))
1251         else
1252         let new_sig = height_of_goal g status in
1253         if new_sig < signature then 
1254           (debug_print (lazy ("news = " ^ (string_of_int new_sig)));
1255            debug_print (lazy ("olds = " ^ (string_of_int signature)))); 
1256         let alternatives, cache = 
1257           do_something signature flags status g depth gty cache in
1258         let loop_cache =
1259           let l,tree = cache.under_inspection in
1260           let l,tree = closegty::l, add_to_th closegty tree closegty in
1261           {cache with under_inspection = l,tree} in 
1262         List.iter 
1263           (fun ((_,t),status) ->
1264              debug_print ~depth 
1265                (lazy ("(re)considering goal " ^ 
1266                        (string_of_int g) ^" : "^ppterm status gty)); 
1267              debug_print (~depth:depth) 
1268                (lazy ("Case: " ^ CicNotationPp.pp_term t));
1269              let depth,cache =
1270                if t=Ast.Ident("__whd",None) then depth, cache 
1271                else depth+1,loop_cache in 
1272              try
1273                auto_clusters flags signature (cache:cache) depth status
1274              with Gaveup _ ->
1275                debug_print ~depth (lazy "Failed");())
1276           alternatives;
1277         raise (debug_print(lazy "no more candidates"); Gaveup IntSet.empty)
1278 ;;
1279
1280 let int name l def = 
1281   try int_of_string (List.assoc name l)
1282   with Failure _ | Not_found -> def
1283 ;;
1284
1285 let auto_tac ~params:(_univ,flags) status =
1286   let oldstatus = status in
1287   let status = (status:> NTacStatus.tac_status) in
1288   let goals = head_goals status#stack in
1289   let status, facts = mk_th_cache status goals in
1290   let unit_eq = index_local_equations status#eq_cache status in 
1291   let cache = init_cache ~facts ~unit_eq  () in 
1292 (*   pp_th status facts; *)
1293 (*
1294   NDiscriminationTree.DiscriminationTree.iter status#auto_cache (fun p t -> 
1295     debug_print (lazy(
1296       NDiscriminationTree.NCicIndexable.string_of_path p ^ " |--> " ^
1297       String.concat "\n    " (List.map (
1298       NCicPp.ppterm ~metasenv:[] ~context:[] ~subst:[])
1299         (NDiscriminationTree.TermSet.elements t))
1300       )));
1301 *)
1302   let depth = int "depth" flags 3 in 
1303   let size  = int "size" flags 10 in 
1304   let width = int "width" flags 4 (* (3+List.length goals)*) in 
1305   (* XXX fix sort *)
1306 (*   let goals = List.map (fun i -> (i,P)) goals in *)
1307   let signature = height_of_goals status in 
1308   let flags = { 
1309           last = true;
1310           maxwidth = width;
1311           maxsize = size;
1312           maxdepth = depth;
1313           timeout = Unix.gettimeofday() +. 3000.;
1314           do_types = false; 
1315   } in
1316   let initial_time = Unix.gettimeofday() in
1317   app_counter:= 0;
1318   let rec up_to x y =
1319     if x > y then
1320       (print(lazy
1321         ("TIME ELAPSED:"^string_of_float(Unix.gettimeofday()-.initial_time)));
1322        debug_print(lazy
1323         ("Applicative nodes:"^string_of_int !app_counter)); 
1324        raise (Error (lazy "auto gave up", None)))
1325     else
1326       let _ = debug_print (lazy("\n\nRound "^string_of_int x^"\n")) in
1327       let flags = { flags with maxdepth = x } 
1328       in 
1329         try auto_clusters (~top:true) flags signature cache 0 status;assert false 
1330 (*
1331         try auto_main flags signature cache 0 status;assert false
1332 *)
1333         with
1334           | Gaveup _ -> up_to (x+1) y
1335           | Proved s -> 
1336               debug_print (lazy ("proved at depth " ^ string_of_int x));
1337               let stack = 
1338                 match s#stack with
1339                   | (g,t,k,f) :: rest -> (filter_open g,t,k,f):: rest
1340                   | _ -> assert false
1341               in
1342               let s = s#set_stack stack in
1343                 oldstatus#set_status s 
1344   in
1345   let s = up_to depth depth in
1346     debug_print(lazy
1347         ("TIME ELAPSED:"^string_of_float(Unix.gettimeofday()-.initial_time)));
1348     debug_print(lazy
1349         ("Applicative nodes:"^string_of_int !app_counter));
1350     s
1351 ;;
1352