]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_tactics/nTactics.ml
assert_tac now takes a list of sequents and also checks that the number of
[helm.git] / helm / software / components / ng_tactics / nTactics.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 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
13
14 open Printf
15
16 let debug = true
17 let debug_print s = if debug then prerr_endline (Lazy.force s) else ()
18
19 open Continuationals.Stack
20 open NTacStatus
21 module Ast = CicNotationPt
22
23 let id_tac status = status ;;
24 let print_tac print_status message status = 
25   if print_status then pp_tac_status status;
26   prerr_endline message; 
27   status
28 ;;
29
30 let dot_tac status =
31   let new_gstatus = 
32     match status.gstatus with
33     | [] -> assert false
34     | ([], _, [], _) :: _ as stack ->
35         (* backward compatibility: do-nothing-dot *)
36         stack
37     | (g, t, k, tag) :: s ->
38         match filter_open g, k with
39         | loc :: loc_tl, _ -> 
40              (([ loc ], t, loc_tl @+ k, tag) :: s) 
41         | [], loc :: k ->
42             assert (is_open loc);
43             (([ loc ], t, k, tag) :: s)
44         | _ -> fail (lazy "can't use \".\" here")
45   in
46    { status with gstatus = new_gstatus }
47 ;;
48
49 let branch_tac status =
50   let new_gstatus = 
51     match status.gstatus with
52     | [] -> assert false
53     | (g, t, k, tag) :: s ->
54           match init_pos g with (* TODO *)
55           | [] | [ _ ] -> fail (lazy "too few goals to branch");
56           | loc :: loc_tl ->
57                ([ loc ], [], [], `BranchTag) :: (loc_tl, t, k, tag) :: s
58   in
59    { status with gstatus = new_gstatus }
60 ;;
61
62 let shift_tac status =
63   let new_gstatus = 
64     match status.gstatus with
65     | (g, t, k, `BranchTag) :: (g', t', k', tag) :: s ->
66           (match g' with
67           | [] -> fail (lazy "no more goals to shift")
68           | loc :: loc_tl ->
69                 (([ loc ], t @+ filter_open g @+ k, [],`BranchTag)
70                 :: (loc_tl, t', k', tag) :: s))
71      | _ -> fail (lazy "can't shift goals here")
72   in
73    { status with gstatus = new_gstatus }
74 ;;
75
76 let pos_tac i_s status =
77   let new_gstatus = 
78     match status.gstatus with
79     | [] -> assert false
80     | ([ loc ], t, [],`BranchTag) :: (g', t', k', tag) :: s
81       when is_fresh loc ->
82         let l_js = List.filter (fun (i, _) -> List.mem i i_s) ([loc] @+ g') in
83           ((l_js, t , [],`BranchTag)
84            :: (([ loc ] @+ g') @- l_js, t', k', tag) :: s)
85     | _ -> fail (lazy "can't use relative positioning here")
86   in
87    { status with gstatus = new_gstatus }
88 ;;
89
90 let wildcard_tac status =
91   let new_gstatus = 
92     match status.gstatus with
93     | [] -> assert false
94     | ([ loc ] , t, [], `BranchTag) :: (g', t', k', tag) :: s
95        when is_fresh loc ->
96             (([loc] @+ g', t, [], `BranchTag) :: ([], t', k', tag) :: s)
97     | _ -> fail (lazy "can't use wildcard here")
98   in
99    { status with gstatus = new_gstatus }
100 ;;
101
102 let merge_tac status =
103   let new_gstatus = 
104     match status.gstatus with
105     | [] -> assert false
106     | (g, t, k,`BranchTag) :: (g', t', k', tag) :: s ->
107         ((t @+ filter_open g @+ g' @+ k, t', k', tag) :: s)
108     | _ -> fail (lazy "can't merge goals here")
109   in
110    { status with gstatus = new_gstatus }
111 ;;
112       
113 let focus_tac gs status =
114   let new_gstatus = 
115     match status.gstatus with
116     | [] -> assert false
117     | s -> assert(gs <> []);
118           let stack_locs =
119             let add_l acc _ _ l = if is_open l then l :: acc else acc in
120             fold ~env:add_l ~cont:add_l ~todo:add_l [] s
121           in
122           List.iter
123             (fun g ->
124               if not (List.exists (fun l -> goal_of_loc l = g) stack_locs) then
125                 fail (lazy (sprintf "goal %d not found (or closed)" g)))
126             gs;
127           (zero_pos gs, [], [], `FocusTag) :: deep_close gs s
128   in
129    { status with gstatus = new_gstatus }
130 ;;
131
132 let unfocus_tac status =
133   let new_gstatus = 
134     match status.gstatus with
135     | [] -> assert false
136     | ([], [], [], `FocusTag) :: s -> s
137     | _ -> fail (lazy "can't unfocus, some goals are still open")
138   in
139    { status with gstatus = new_gstatus }
140 ;;
141
142 let skip_tac status =
143   let new_gstatus = 
144     match status.gstatus with
145     | [] -> assert false
146     | (gl, t, k, tag) :: s -> 
147         let gl = List.map switch_of_loc gl in
148         if List.exists (function Open _ -> true | Closed _ -> false) gl then 
149           fail (lazy "cannot skip an open goal")
150         else 
151           ([],t,k,tag) :: s
152   in
153    { status with gstatus = new_gstatus }
154 ;;
155
156 let block_tac l status =
157   List.fold_left (fun status tac -> tac status) status l
158 ;;
159
160 let compare_statuses ~past ~present =
161  let _,_,past,_,_ = past.pstatus in 
162  let _,_,present,_,_ = present.pstatus in 
163  List.map fst (List.filter (fun (i,_) -> not(List.mem_assoc i past)) present),
164  List.map fst (List.filter (fun (i,_) -> not (List.mem_assoc i present)) past)
165 ;;
166
167
168
169 (* Exec and distribute_tac form a retraction pair:
170     1) exec (distribute_tac low_tac) (s,i) = low_tac (s,i)
171     2) tac [s]::G = G1::...::Gn::G' && G' is G with some goals closed =>
172          distribute_tac (exec tac) [s]::G = (G1@...Gn)::G'
173     3) tac G = distribute_tac (exec tac) G if  
174        tac = distribute_tac lowtac
175     4) atomic_tac t === distribute_tac (exec t)
176
177    Note that executing an high tactic on a set of goals may be stronger
178    than executing the same tactic on those goals, but once at a time
179    (e.g. the tactic could perform a global analysis of the set of goals)
180 *)
181
182 let exec tac low_status g =
183   let stack = [ [0,Open g], [], [], `NoTag ] in
184   let status = tac { gstatus = stack ; istatus = low_status } in
185    status.istatus
186 ;;
187
188 let distribute_tac tac status =
189   match status.gstatus with
190   | [] -> assert false
191   | (g, t, k, tag) :: s ->
192       debug_print (lazy ("context length " ^string_of_int (List.length g)));
193       let rec aux s go gc =
194         function
195         | [] -> 
196             debug_print (lazy "no selected goals");
197             s, go, gc
198         | loc :: loc_tl ->
199             debug_print (lazy "inner eval tactical");
200             let s, go, gc =
201               if List.exists ((=) (goal_of_loc loc)) gc then
202                 s, go, gc
203               else
204                 match switch_of_loc loc with
205                 | Closed _ -> fail (lazy "cannot apply to a Closed goal")
206                 | Open n -> 
207                    let sn = tac s n in
208                    let go', gc' = compare_statuses ~past:s ~present:sn in
209                    sn, ((go @+ [n]) @- gc') @+ go', gc @+ gc'
210             in
211             aux s go gc loc_tl
212       in
213       let s0, go0, gc0 = status.istatus, [], [] in
214       let sn, gon, gcn = aux s0 go0 gc0 g in
215       debug_print (lazy ("opened: "
216         ^ String.concat " " (List.map string_of_int gon)));
217       debug_print (lazy ("closed: "
218         ^ String.concat " " (List.map string_of_int gcn)));
219       let stack =
220         (zero_pos gon, t @~- gcn, k @~- gcn, tag) :: deep_close gcn s
221       in
222        { gstatus = stack; istatus = sn }
223 ;;
224
225 let atomic_tac htac = distribute_tac (exec htac) ;;
226
227 let exact_tac t = distribute_tac (fun status goal ->
228  let goalty = get_goalty status goal in
229  let status, t = disambiguate status t (Some goalty) (ctx_of goalty) in
230  instantiate status goal t)
231 ;;
232
233 let find_in_context name context =
234   let rec aux acc = function
235     | [] -> raise Not_found
236     | (hd,_) :: tl when hd = name -> acc
237     | _ :: tl ->  aux (acc + 1) tl
238   in
239   aux 1 context
240 ;;
241
242 let clear_tac names =
243  if names = [] then id_tac
244  else
245   distribute_tac (fun status goal ->
246    let goalty = get_goalty status goal in
247    let js =
248      List.map 
249      (fun name -> 
250         try find_in_context name (ctx_of goalty)
251         with Not_found -> 
252           fail (lazy ("hypothesis '" ^ name ^ "' not found"))) 
253      names
254    in
255    let n,h,metasenv,subst,o = status.pstatus in
256    let metasenv,subst,_ = NCicMetaSubst.restrict metasenv subst goal js in
257     { status with pstatus = n,h,metasenv,subst,o })
258 ;;
259
260 let generalize0_tac args =
261  if args = [] then id_tac
262  else exact_tac ("",0,Ast.Appl (Ast.Implicit :: args))
263 ;;
264
265 let select0_tac ~where:(wanted,hyps,where) ~job  =
266  let found, postprocess = 
267    match job with
268    | `Substexpand argsno -> mk_in_scope, mk_out_scope argsno
269    | `Collect l -> (fun s t -> l := t::!l; mk_in_scope s t), mk_out_scope 1
270    | `ChangeWith f -> f,(fun s t -> s, t)
271  in
272  distribute_tac (fun status goal ->
273    let goalty = get_goalty status goal in
274    let path = 
275      match where with None -> NCic.Implicit `Term | Some where -> where 
276    in
277    let status, newgoalty = 
278      select_term status ~found ~postprocess goalty (wanted,path) 
279    in
280    let status, newgoalctx =
281       List.fold_right
282        (fun (name,d as entry) (status,ctx) ->
283          try
284           let path = List.assoc name hyps in
285            match d with
286               NCic.Decl ty ->
287                let status,ty =
288                 select_term status ~found ~postprocess (mk_cic_term ctx ty)
289                  (wanted,path) in
290                let status,ty = term_of_cic_term status ty ctx in
291                 status,(name,NCic.Decl ty)::ctx
292             | NCic.Def (bo,ty) ->
293                let status,bo =
294                 select_term status ~found ~postprocess (mk_cic_term ctx bo)
295                  (wanted,path) in
296                let status,bo = term_of_cic_term status bo ctx in
297                 status,(name,NCic.Def (bo,ty))::ctx
298          with
299           Not_found -> status, entry::ctx
300        ) (ctx_of goalty) (status,[])
301    in
302    let status, instance = 
303      mk_meta status newgoalctx (`Decl newgoalty) 
304    in
305    instantiate status goal instance)
306 ;;
307
308 let select_tac ~where ~job move_down_hyps = 
309  let (wanted,hyps,where) = GrafiteDisambiguate.disambiguate_npattern where in
310  let path = 
311   match where with None -> NCic.Implicit `Term | Some where -> where in
312  if not move_down_hyps then
313   select0_tac ~where:(wanted,hyps,Some path) ~job
314  else
315   let path = 
316    List.fold_left
317      (fun path (name,path_name) -> NCic.Prod ("_",path_name,path))
318      path (List.rev hyps)
319   in
320    block_tac [ 
321      generalize0_tac (List.map (fun (name,_) -> Ast.Ident (name,None)) hyps);
322      select0_tac ~where:(wanted,[],Some path) ~job;
323      clear_tac (List.map fst hyps) ]
324 ;;
325
326 let generalize_tac ~where = 
327  let l = ref [] in
328  block_tac [ 
329    select_tac ~where ~job:(`Collect l) true; 
330    print_tac true "ha selezionato?";
331    (fun s -> distribute_tac (fun status goal ->
332      if !l = [] then fail (lazy "No term to generalize");
333      let goalty = get_goalty status goal in
334      let canon = List.hd !l in
335      let status = 
336        List.fold_left 
337          (fun s t -> unify s (ctx_of goalty) canon t) status (List.tl !l)
338      in
339      let status, canon = term_of_cic_term status canon (ctx_of goalty) in
340      instantiate status goal 
341       (mk_cic_term (ctx_of goalty) (NCic.Appl [NCic.Implicit `Term ; canon ]))
342    ) s) ]
343 ;;
344
345 let eval_tac ~reduction ~where =
346   let change status t = 
347     match reduction with
348     | `Whd perform_delta -> 
349          whd status
350            ?delta:(if perform_delta then None else Some max_int) (ctx_of t) t
351   in
352   let where = GrafiteDisambiguate.disambiguate_npattern where in
353   select0_tac ~where ~job:(`ChangeWith change)
354 ;;
355
356 let change_tac ~where ~with_what =
357   let change status t = 
358     let status, ww = disambiguate status with_what  None (ctx_of t) in
359     let status = unify status (ctx_of t) t ww in
360     status, ww
361   in
362   let where = GrafiteDisambiguate.disambiguate_npattern where in
363   select0_tac ~where ~job:(`ChangeWith change)
364 ;;
365
366 let letin_tac ~where:(_,_,(m,hyp,gp)) ~what:(_,_,w) name =
367   assert(m = None);
368   let where = Some w, [], 
369      match gp with 
370      | None -> Some Ast.Implicit
371      | Some where -> 
372          Some 
373           (List.fold_left 
374            (fun t _ -> 
375               Ast.Binder(`Pi,(Ast.Ident("_",None),Some Ast.UserInput),t)) 
376            where hyp)
377   in
378   block_tac [
379    generalize0_tac (List.map (fun (name,_) -> Ast.Ident (name,None)) hyp);
380    exact_tac ("",0,Ast.LetIn((Ast.Ident (name,None),None),w,Ast.Implicit));
381    change_tac ~where:("",0,where) ~with_what:("",0,Ast.Ident (name,None))
382   ]
383 ;;
384
385 let apply_tac = exact_tac;;
386
387 type indtyinfo = {
388         rightno: int;
389         leftno: int;
390         consno: int;
391         lefts: NCic.term list;
392         rights: NCic.term list;
393         reference: NReference.reference;
394  }
395 ;;
396
397 let analyze_indty_tac ~what indtyref = distribute_tac (fun status goal ->
398   let goalty = get_goalty status goal in
399   let status, what = disambiguate status what None (ctx_of goalty) in
400   let status, ty_what = typeof status (ctx_of what) what in 
401   let status, (r,consno,lefts,rights) = analyse_indty status ty_what in
402   let leftno = List.length rights in
403   let rightno = List.length rights in
404   indtyref := Some { 
405     rightno = rightno; leftno = leftno; consno = consno;
406     lefts = lefts; rights = rights; reference = r;
407   };
408   exec id_tac status goal)
409 ;;
410
411 let elim_tac ~what ~where = 
412   let indtyinfo = ref None in
413   let sort = ref None in
414   let compute_goal_sort_tac = distribute_tac (fun status goal ->
415     let goalty = get_goalty status goal in
416     let status, goalsort = typeof status (ctx_of goalty) goalty in
417     sort := Some goalsort;
418     exec id_tac status goal)
419   in
420   atomic_tac (block_tac [
421     analyze_indty_tac ~what indtyinfo;    
422     (fun s -> select_tac 
423       ~where ~job:(`Substexpand ((HExtlib.unopt !indtyinfo).rightno+1)) true s);
424     compute_goal_sort_tac;
425     (fun status ->
426      let sort = HExtlib.unopt !sort in
427      let ity = HExtlib.unopt !indtyinfo in
428      let NReference.Ref (uri, _) = ity.reference in
429      let istatus, sort = term_of_cic_term status.istatus sort (ctx_of sort) in
430      let status = { status with istatus = istatus } in
431      let name = NUri.name_of_uri uri ^
432       match sort with
433        | NCic.Sort NCic.Prop -> "_ind"
434        | NCic.Sort _ -> "_rect"
435        | _ -> assert false 
436      in
437      let holes = 
438        HExtlib.mk_list Ast.Implicit (ity.leftno+1+ ity.consno + ity.rightno) in
439      let eliminator = 
440        let _,_,w = what in
441        Ast.Appl(Ast.Ident(name,None)::holes @ [ w ])
442      in
443      exact_tac ("",0,eliminator) status) ]) 
444 ;;
445
446 let rewrite_tac ~dir ~what:(_,_,what) ~where =
447  let name =
448   match dir with `LeftToRight -> "eq_elim_r" | `RightToLeft -> "eq_ind"
449  in
450   block_tac
451    [ select_tac ~where ~job:(`Substexpand 1) true;
452      exact_tac
453       ("",0,
454        Ast.Appl(Ast.Ident(name,None)::HExtlib.mk_list Ast.Implicit 5 @
455         [what]))]
456 ;;
457
458 let intro_tac name =
459  block_tac
460   [ exact_tac
461      ("",0,(Ast.Binder (`Lambda,
462       (Ast.Ident (name,None),None),Ast.Implicit)));
463     if name = "_" then clear_tac [name] else id_tac ]
464 ;;
465
466 let cases ~what status goal =
467  let gty = get_goalty status goal in
468  let status, what = disambiguate status what None (ctx_of gty) in
469  let status, ty = typeof status (ctx_of what) what in
470  let status, (ref, consno, _, _) = analyse_indty status ty in
471  let status, what = term_of_cic_term status what (ctx_of gty) in
472  let t =
473   NCic.Match (ref,NCic.Implicit `Term, what,
474     HExtlib.mk_list (NCic.Implicit `Term) consno)
475  in
476  let ctx = ctx_of gty in
477  let status,t,ty = refine status ctx (mk_cic_term ctx t) (Some gty) in
478  instantiate status goal t
479 ;;
480
481 let cases_tac ~what ~where = 
482   let indtyinfo = ref None in
483   atomic_tac 
484    (block_tac [
485       analyze_indty_tac ~what indtyinfo;
486       (fun s -> select_tac 
487        ~where ~job:(`Substexpand ((HExtlib.unopt !indtyinfo).rightno+1))true s);
488       distribute_tac (cases ~what) ])
489 ;;
490
491 let case1_tac name =
492  let name = if name = "_" then "_clearme" else name in
493  block_tac [ intro_tac name; 
494              cases_tac 
495               ~where:("",0,(None,[],None)) 
496               ~what:("",0,Ast.Ident (name,None));
497               if name = "_clearme" then clear_tac ["_clearme"] else id_tac ]
498 ;;
499
500 let assert0_tac (hyps,concl) = distribute_tac (fun status goal ->
501  let gty = get_goalty status goal in
502  let eq status ctx t1 t2 =
503   let status,t1 = disambiguate status t1 None ctx in
504   let status,t1 = apply_subst status ctx t1 in
505   let status,t1 = term_of_cic_term status t1 ctx in
506   let t2 = mk_cic_term ctx t2 in
507   let status,t2 = apply_subst status ctx t2 in
508   let status,t2 = term_of_cic_term status t2 ctx in
509   prerr_endline ("COMPARING: " ^ NCicPp.ppterm ~subst:[] ~metasenv:[] ~context:ctx t1 ^ " vs " ^ NCicPp.ppterm ~subst:[] ~metasenv:[] ~context:ctx t2);
510   assert (t1=t2);
511   status
512  in
513  let status,gty' = term_of_cic_term status gty (ctx_of gty) in
514  let status = eq status (ctx_of gty) concl gty' in
515  let status,_ =
516   List.fold_right2
517    (fun (id1,e1) ((id2,e2) as item) (status,ctx) ->
518      assert (id1=id2);
519      match e1,e2 with
520         `Decl t1, NCic.Decl t2 ->
521           let status = eq status ctx t1 t2 in
522           status,item::ctx
523       | `Def (b1,t1), NCic.Def (b2,t2) ->
524           let status = eq status ctx t1 t2 in
525           let status = eq status ctx b1 b2 in
526           status,item::ctx
527       | _ -> assert false
528    ) hyps (ctx_of gty) (status,[])
529  in
530   exec id_tac status goal)
531 ;;
532
533 let assert_tac seqs status =
534  match status.gstatus with
535   | [] -> assert false
536   | (g,_,_,_) :: s ->
537      assert (List.length g = List.length seqs);
538      (match seqs with
539          [] -> id_tac
540        | [seq] -> assert0_tac seq
541        | _ ->
542          block_tac
543           (branch_tac::
544           HExtlib.list_concat ~sep:[shift_tac]
545             (List.map (fun seq -> [assert0_tac seq]) seqs)@
546           [merge_tac])
547      ) status
548 ;;