]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/primitiveTactics.ml
Added a whd on ty in new_metasenv for apply, in order to be able
[helm.git] / helm / ocaml / tactics / primitiveTactics.ml
1 (* Copyright (C) 2002, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 open ProofEngineHelpers
27 open ProofEngineTypes
28
29 exception NotAnInductiveTypeToEliminate
30 exception NotTheRightEliminatorShape
31 exception NoHypothesesFound
32 exception WrongUriToVariable of string
33
34 (* lambda_abstract newmeta ty *)
35 (* returns a triple [bo],[context],[ty'] where              *)
36 (* [ty] = Pi/LetIn [context].[ty'] ([context] is a vector!) *)
37 (* and [bo] = Lambda/LetIn [context].(Meta [newmeta])       *)
38 (* So, lambda_abstract is the core of the implementation of *)
39 (* the Intros tactic.                                       *)
40 let lambda_abstract metasenv context newmeta ty mk_fresh_name =
41  let module C = Cic in
42   let rec collect_context context =
43    function
44       C.Cast (te,_)   -> collect_context context te
45     | C.Prod (n,s,t)  ->
46        let n' = mk_fresh_name metasenv context n ~typ:s in
47         let (context',ty,bo) =
48          collect_context ((Some (n',(C.Decl s)))::context) t
49         in
50          (context',ty,C.Lambda(n',s,bo))
51     | C.LetIn (n,s,t) ->
52        let (context',ty,bo) =
53         collect_context ((Some (n,(C.Def (s,None))))::context) t
54        in
55         (context',ty,C.LetIn(n,s,bo))
56     | _ as t ->
57       let irl =
58         CicMkImplicit.identity_relocation_list_for_metavariable context
59       in
60        context, t, (C.Meta (newmeta,irl))
61   in
62    collect_context context ty
63
64 let eta_expand metasenv context t arg =
65  let module T = CicTypeChecker in
66  let module S = CicSubstitution in
67  let module C = Cic in
68   let rec aux n =
69    function
70       t' when t' = S.lift n arg -> C.Rel (1 + n)
71     | C.Rel m  -> if m <= n then C.Rel m else C.Rel (m+1)
72     | C.Var (uri,exp_named_subst) ->
73        let exp_named_subst' = aux_exp_named_subst n exp_named_subst in
74         C.Var (uri,exp_named_subst')
75     | C.Meta (i,l) ->
76        let l' =
77         List.map (function None -> None | Some t -> Some (aux n t)) l
78        in
79         C.Meta (i, l')
80     | C.Sort _
81     | C.Implicit _ as t -> t
82     | C.Cast (te,ty) -> C.Cast (aux n te, aux n ty)
83     | C.Prod (nn,s,t) -> C.Prod (nn, aux n s, aux (n+1) t)
84     | C.Lambda (nn,s,t) -> C.Lambda (nn, aux n s, aux (n+1) t)
85     | C.LetIn (nn,s,t) -> C.LetIn (nn, aux n s, aux (n+1) t)
86     | C.Appl l -> C.Appl (List.map (aux n) l)
87     | C.Const (uri,exp_named_subst) ->
88        let exp_named_subst' = aux_exp_named_subst n exp_named_subst in
89         C.Const (uri,exp_named_subst')
90     | C.MutInd (uri,i,exp_named_subst) ->
91        let exp_named_subst' = aux_exp_named_subst n exp_named_subst in
92         C.MutInd (uri,i,exp_named_subst')
93     | C.MutConstruct (uri,i,j,exp_named_subst) ->
94        let exp_named_subst' = aux_exp_named_subst n exp_named_subst in
95         C.MutConstruct (uri,i,j,exp_named_subst')
96     | C.MutCase (sp,i,outt,t,pl) ->
97        C.MutCase (sp,i,aux n outt, aux n t,
98         List.map (aux n) pl)
99     | C.Fix (i,fl) ->
100        let tylen = List.length fl in
101         let substitutedfl =
102          List.map
103           (fun (name,i,ty,bo) -> (name, i, aux n ty, aux (n+tylen) bo))
104            fl
105         in
106          C.Fix (i, substitutedfl)
107     | C.CoFix (i,fl) ->
108        let tylen = List.length fl in
109         let substitutedfl =
110          List.map
111           (fun (name,ty,bo) -> (name, aux n ty, aux (n+tylen) bo))
112            fl
113         in
114          C.CoFix (i, substitutedfl)
115   and aux_exp_named_subst n =
116    List.map (function uri,t -> uri,aux n t)
117   in
118    let argty,_ = 
119     T.type_of_aux' metasenv context arg CicUniv.empty_ugraph (* TASSI: FIXME *)
120    in
121     let fresh_name =
122      FreshNamesGenerator.mk_fresh_name ~subst:[]
123       metasenv context (Cic.Name "Heta") ~typ:argty
124     in
125      (C.Appl [C.Lambda (fresh_name,argty,aux 0 t) ; arg])
126
127 (*CSC: ma serve solamente la prima delle new_uninst e l'unione delle due!!! *)
128 let classify_metas newmeta in_subst_domain subst_in metasenv =
129  List.fold_right
130   (fun (i,canonical_context,ty) (old_uninst,new_uninst) ->
131     if in_subst_domain i then
132      old_uninst,new_uninst
133     else
134      let ty' = subst_in canonical_context ty in
135       let canonical_context' =
136        List.fold_right
137         (fun entry canonical_context' ->
138           let entry' =
139            match entry with
140               Some (n,Cic.Decl s) ->
141                Some (n,Cic.Decl (subst_in canonical_context' s))
142             | Some (n,Cic.Def (s,None)) ->
143                Some (n,Cic.Def ((subst_in canonical_context' s),None))
144             | None -> None
145             | Some (_,Cic.Def (_,Some _)) -> assert false
146           in
147            entry'::canonical_context'
148         ) canonical_context []
149      in
150       if i < newmeta then
151        ((i,canonical_context',ty')::old_uninst),new_uninst
152       else
153        old_uninst,((i,canonical_context',ty')::new_uninst)
154   ) metasenv ([],[])
155
156 (* Auxiliary function for apply: given a type (a backbone), it returns its   *)
157 (* head, a META environment in which there is new a META for each hypothesis,*)
158 (* a list of arguments for the new applications and the indexes of the first *)
159 (* and last new METAs introduced. The nth argument in the list of arguments  *)
160 (* is just the nth new META.                                                 *)
161 let new_metasenv_for_apply newmeta proof context ty =
162  let module C = Cic in
163  let module S = CicSubstitution in
164   let rec aux newmeta ty =
165    let ty' = CicReduction.whd context ty in 
166    match ty' with
167       C.Cast (he,_) -> aux newmeta he
168 (* CSC: patch to generate ?1 : ?2 : Type in place of ?1 : Type to simulate ?1 :< Type
169       (* If the expected type is a Type, then also Set is OK ==>
170       *  we accept any term of type Type *)
171       (*CSC: BUG HERE: in this way it is possible for the term of
172       * type Type to be different from a Sort!!! *)
173     | C.Prod (name,(C.Sort (C.Type _) as s),t) ->
174        (* TASSI: ask CSC if BUG HERE refers to the C.Cast or C.Propd case *)
175        let irl =
176          CicMkImplicit.identity_relocation_list_for_metavariable context
177        in
178         let newargument = C.Meta (newmeta+1,irl) in
179          let (res,newmetasenv,arguments,lastmeta) =
180           aux (newmeta + 2) (S.subst newargument t)
181          in
182           res,
183            (newmeta,[],s)::(newmeta+1,context,C.Meta (newmeta,[]))::newmetasenv,
184            newargument::arguments,lastmeta
185 *)
186     | C.Prod (name,s,t) ->
187        let irl =
188          CicMkImplicit.identity_relocation_list_for_metavariable context
189        in
190         let newargument = C.Meta (newmeta,irl) in
191          let (res,newmetasenv,arguments,lastmeta) =
192           aux (newmeta + 1) (S.subst newargument t)
193          in
194           res,(newmeta,context,s)::newmetasenv,newargument::arguments,lastmeta
195     | t -> t,[],[],newmeta
196   in
197    (* WARNING: here we are using the invariant that above the most *)
198    (* recente new_meta() there are no used metas.                  *)
199    let (res,newmetasenv,arguments,lastmeta) = aux newmeta ty in
200     res,newmetasenv,arguments,lastmeta
201
202 (* Useful only inside apply_tac *)
203 let
204  generalize_exp_named_subst_with_fresh_metas context newmeta uri exp_named_subst
205 =
206  let module C = Cic in
207   let params =
208     let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
209     CicUtil.params_of_obj o
210   in
211    let exp_named_subst_diff,new_fresh_meta,newmetasenvfragment,exp_named_subst'=
212     let next_fresh_meta = ref newmeta in
213     let newmetasenvfragment = ref [] in
214     let exp_named_subst_diff = ref [] in
215      let rec aux =
216       function
217          [],[] -> []
218        | uri::tl,[] ->
219           let ty =
220             let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
221               match o with
222                   C.Variable (_,_,ty,_,_) ->
223                     CicSubstitution.subst_vars !exp_named_subst_diff ty
224                 | _ -> raise (WrongUriToVariable (UriManager.string_of_uri uri))
225           in
226 (* CSC: patch to generate ?1 : ?2 : Type in place of ?1 : Type to simulate ?1 :< Type
227            (match ty with
228                C.Sort (C.Type _) as s -> (* TASSI: ?? *)
229                  let fresh_meta = !next_fresh_meta in
230                  let fresh_meta' = fresh_meta + 1 in
231                   next_fresh_meta := !next_fresh_meta + 2 ;
232                   let subst_item = uri,C.Meta (fresh_meta',[]) in
233                    newmetasenvfragment :=
234                     (fresh_meta,[],C.Sort (C.Type (CicUniv.fresh()))) ::
235                      (* TASSI: ?? *)
236                      (fresh_meta',[],C.Meta (fresh_meta,[])) :: !newmetasenvfragment ;
237                    exp_named_subst_diff := !exp_named_subst_diff @ [subst_item] ;
238                    subst_item::(aux (tl,[]))
239              | _ ->
240 *)
241               let irl =
242                 CicMkImplicit.identity_relocation_list_for_metavariable context
243               in
244               let subst_item = uri,C.Meta (!next_fresh_meta,irl) in
245                newmetasenvfragment :=
246                 (!next_fresh_meta,context,ty)::!newmetasenvfragment ;
247                exp_named_subst_diff := !exp_named_subst_diff @ [subst_item] ;
248                incr next_fresh_meta ;
249                subst_item::(aux (tl,[]))(*)*)
250        | uri::tl1,((uri',_) as s)::tl2 ->
251           assert (UriManager.eq uri uri') ;
252           s::(aux (tl1,tl2))
253        | [],_ -> assert false
254      in
255       let exp_named_subst' = aux (params,exp_named_subst) in
256        !exp_named_subst_diff,!next_fresh_meta,
257         List.rev !newmetasenvfragment, exp_named_subst'
258    in
259     new_fresh_meta,newmetasenvfragment,exp_named_subst',exp_named_subst_diff
260 ;;
261
262 let apply_tac_verbose ~term (proof, goal) =
263   (* Assumption: The term "term" must be closed in the current context *)
264  let module T = CicTypeChecker in
265  let module R = CicReduction in
266  let module C = Cic in
267   let (_,metasenv,_,_) = proof in
268   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
269   let newmeta = new_meta_of_proof ~proof in
270    let exp_named_subst_diff,newmeta',newmetasenvfragment,term' =
271     match term with
272        C.Var (uri,exp_named_subst) ->
273         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
274          generalize_exp_named_subst_with_fresh_metas context newmeta uri
275           exp_named_subst
276         in
277          exp_named_subst_diff,newmeta',newmetasenvfragment,
278           C.Var (uri,exp_named_subst')
279      | C.Const (uri,exp_named_subst) ->
280         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
281          generalize_exp_named_subst_with_fresh_metas context newmeta uri
282           exp_named_subst
283         in
284          exp_named_subst_diff,newmeta',newmetasenvfragment,
285           C.Const (uri,exp_named_subst')
286      | C.MutInd (uri,tyno,exp_named_subst) ->
287         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
288          generalize_exp_named_subst_with_fresh_metas context newmeta uri
289           exp_named_subst
290         in
291          exp_named_subst_diff,newmeta',newmetasenvfragment,
292           C.MutInd (uri,tyno,exp_named_subst')
293      | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
294         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
295          generalize_exp_named_subst_with_fresh_metas context newmeta uri
296           exp_named_subst
297         in
298          exp_named_subst_diff,newmeta',newmetasenvfragment,
299           C.MutConstruct (uri,tyno,consno,exp_named_subst')
300      | _ -> [],newmeta,[],term
301    in
302    let metasenv' = metasenv@newmetasenvfragment in
303    let termty,_ = (* TASSI:FIXME *)
304      CicTypeChecker.type_of_aux' metasenv' context term CicUniv.empty_ugraph in
305    let termty =
306      CicSubstitution.subst_vars exp_named_subst_diff termty
307    in
308     (* newmeta is the lowest index of the new metas introduced *)
309     let (consthead,newmetas,arguments,_) =
310      new_metasenv_for_apply newmeta' proof context termty
311     in
312      let newmetasenv = metasenv'@newmetas in
313       let subst,newmetasenv',_ = (* TASSI:FIXME *)
314         CicUnification.fo_unif newmetasenv context consthead ty 
315           CicUniv.empty_ugraph
316       in
317        let in_subst_domain i = List.exists (function (j,_) -> i=j) subst in
318        let apply_subst = CicMetaSubst.apply_subst subst in
319         let old_uninstantiatedmetas,new_uninstantiatedmetas =
320          (* subst_in doesn't need the context. Hence the underscore. *)
321          let subst_in _ = CicMetaSubst.apply_subst subst in
322           classify_metas newmeta in_subst_domain subst_in newmetasenv'
323         in
324          let bo' =
325           apply_subst
326            (if List.length newmetas = 0 then
327              term'
328             else
329              Cic.Appl (term'::arguments)
330            )
331          in
332          let newmetasenv'' = new_uninstantiatedmetas@old_uninstantiatedmetas in
333          let subst_in =
334            (* if we just apply the subtitution, the type is irrelevant:
335               we may use Implicit, since it will be dropped *)
336            CicMetaSubst.apply_subst 
337              ((metano,(context, bo', Cic.Implicit None))::subst)
338          in
339          let (newproof, newmetasenv''') =
340            subst_meta_and_metasenv_in_proof
341              proof metano subst_in newmetasenv''
342          in
343            (subst_in,(newproof, List.map (function (i,_,_) -> i) new_uninstantiatedmetas))
344
345 let apply_tac ~term status = snd (apply_tac_verbose ~term status)
346
347 let apply_tac_verbose ~term status =
348   try
349     apply_tac_verbose ~term status
350       (* TODO cacciare anche altre eccezioni? *)
351   with CicUnification.UnificationFailure _ as e ->
352     raise (Fail (Printexc.to_string e))
353
354   (* TODO per implementare i tatticali e' necessario che tutte le tattiche
355   sollevino _solamente_ Fail *)
356 let apply_tac ~term =
357  let apply_tac ~term status =
358   try
359     apply_tac ~term status
360       (* TODO cacciare anche altre eccezioni? *)
361   with CicUnification.UnificationFailure _ as e ->
362     raise (Fail (Printexc.to_string e))
363  in
364   mk_tactic (apply_tac ~term)
365
366 let intros_tac ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ()=
367  let intros_tac
368   ?(mk_fresh_name_callback = (FreshNamesGenerator.mk_fresh_name ~subst:[])) ()
369   (proof, goal)
370  =
371   let module C = Cic in
372   let module R = CicReduction in
373    let (_,metasenv,_,_) = proof in
374    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
375     let newmeta = new_meta_of_proof ~proof in
376      let (context',ty',bo') =
377       lambda_abstract metasenv context newmeta ty mk_fresh_name_callback
378      in
379       let (newproof, _) =
380         subst_meta_in_proof proof metano bo' [newmeta,context',ty']
381       in
382        (newproof, [newmeta])
383  in
384   mk_tactic (intros_tac ~mk_fresh_name_callback ())
385   
386 let cut_tac?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ~term=
387  let cut_tac
388   ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[])
389   term (proof, goal)
390  =
391   let module C = Cic in
392    let curi,metasenv,pbo,pty = proof in
393    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
394     let newmeta1 = new_meta_of_proof ~proof in
395     let newmeta2 = newmeta1 + 1 in
396     let fresh_name =
397      mk_fresh_name_callback metasenv context (Cic.Name "Hcut") ~typ:term in
398     let context_for_newmeta1 =
399      (Some (fresh_name,C.Decl term))::context in
400     let irl1 =
401      CicMkImplicit.identity_relocation_list_for_metavariable
402       context_for_newmeta1
403     in
404     let irl2 =
405       CicMkImplicit.identity_relocation_list_for_metavariable context
406     in
407      let newmeta1ty = CicSubstitution.lift 1 ty in
408      let bo' =
409       C.Appl
410        [C.Lambda (fresh_name,term,C.Meta (newmeta1,irl1)) ;
411         C.Meta (newmeta2,irl2)]
412      in
413       let (newproof, _) =
414        subst_meta_in_proof proof metano bo'
415         [newmeta2,context,term; newmeta1,context_for_newmeta1,newmeta1ty];
416       in
417        (newproof, [newmeta1 ; newmeta2])
418  in
419   mk_tactic (cut_tac ~mk_fresh_name_callback term)
420
421 let letin_tac ?(mk_fresh_name_callback=FreshNamesGenerator.mk_fresh_name ~subst:[]) ~term=
422  let letin_tac
423   ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[])
424   term (proof, goal)
425  =
426   let module C = Cic in
427    let curi,metasenv,pbo,pty = proof in
428    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
429     let _,_ = (* TASSI: FIXME *)
430       CicTypeChecker.type_of_aux' metasenv context term CicUniv.empty_ugraph in
431      let newmeta = new_meta_of_proof ~proof in
432      let fresh_name =
433       mk_fresh_name_callback metasenv context (Cic.Name "Hletin") ~typ:term in
434      let context_for_newmeta =
435       (Some (fresh_name,C.Def (term,None)))::context in
436      let irl =
437       CicMkImplicit.identity_relocation_list_for_metavariable
438        context_for_newmeta
439      in
440       let newmetaty = CicSubstitution.lift 1 ty in
441       let bo' = C.LetIn (fresh_name,term,C.Meta (newmeta,irl)) in
442        let (newproof, _) =
443          subst_meta_in_proof
444            proof metano bo'[newmeta,context_for_newmeta,newmetaty]
445        in
446         (newproof, [newmeta])
447  in
448   mk_tactic (letin_tac ~mk_fresh_name_callback term)
449
450   (** functional part of the "exact" tactic *)
451 let exact_tac ~term =
452  let exact_tac ~term (proof, goal) =
453   (* Assumption: the term bo must be closed in the current context *)
454   let (_,metasenv,_,_) = proof in
455   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
456   let module T = CicTypeChecker in
457   let module R = CicReduction in
458   let ty_term,u = T.type_of_aux' metasenv context term CicUniv.empty_ugraph in
459   let b,_ = R.are_convertible context ty_term ty u in (* TASSI: FIXME *)
460   if b then
461    begin
462     let (newproof, metasenv') =
463       subst_meta_in_proof proof metano term [] in
464     (newproof, [])
465    end
466   else
467    raise (Fail "The type of the provided term is not the one expected.")
468  in
469   mk_tactic (exact_tac ~term)
470
471 (* not really "primitive" tactics .... *)
472 let elim_tac ~term = 
473  let elim_tac ~term (proof, goal) =
474   let module T = CicTypeChecker in
475   let module U = UriManager in
476   let module R = CicReduction in
477   let module C = Cic in
478    let (curi,metasenv,proofbo,proofty) = proof in
479    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
480     let termty,_ = T.type_of_aux' metasenv context term CicUniv.empty_ugraph in
481       (* TASSI: FIXME *)
482     let uri,exp_named_subst,typeno,args =
483      match termty with
484         C.MutInd (uri,typeno,exp_named_subst) -> (uri,exp_named_subst,typeno,[])
485       | C.Appl ((C.MutInd (uri,typeno,exp_named_subst))::args) ->
486           (uri,exp_named_subst,typeno,args)
487       | _ -> raise NotAnInductiveTypeToEliminate
488     in
489      let eliminator_uri =
490       let buri = U.buri_of_uri uri in
491       let name = 
492         let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
493        match o with
494           C.InductiveDefinition (tys,_,_,_) ->
495            let (name,_,_,_) = List.nth tys typeno in
496             name
497         | _ -> assert false
498       in
499       let ty_ty,_ = T.type_of_aux' metasenv context ty CicUniv.empty_ugraph in
500         (* TASSI: FIXME *)
501       let ext =
502        match ty_ty with
503           C.Sort C.Prop -> "_ind"
504         | C.Sort C.Set  -> "_rec"
505         | C.Sort C.CProp -> "_rec"
506         | C.Sort (C.Type _)-> "_rect" 
507         | _ -> assert false
508       in
509        U.uri_of_string (buri ^ "/" ^ name ^ ext ^ ".con")
510      in
511       let eliminator_ref = C.Const (eliminator_uri,exp_named_subst) in
512        let ety,_ = 
513          T.type_of_aux' metasenv context eliminator_ref CicUniv.empty_ugraph in
514         let rec find_args_no =
515          function
516             C.Prod (_,_,t) -> 1 + find_args_no t
517           | C.Cast (s,_) -> find_args_no s
518           | C.LetIn (_,_,t) -> 0 + find_args_no t
519           | _ -> 0
520         in
521          let args_no = find_args_no ety in
522          let term_to_refine =
523           let rec make_tl base_case =
524            function
525               0 -> [base_case]
526             | n -> (C.Implicit None)::(make_tl base_case (n - 1))
527           in
528            C.Appl (eliminator_ref :: make_tl term (args_no - 1))
529          in
530           let metasenv', term_to_refine' =
531            CicMkImplicit.expand_implicits metasenv [] context term_to_refine in
532           let refined_term,_,metasenv'',_ = (* TASSI: FIXME *)
533            CicRefine.type_of_aux' metasenv' context term_to_refine' 
534              CicUniv.empty_ugraph
535           in
536            let new_goals =
537             ProofEngineHelpers.compare_metasenvs
538              ~oldmetasenv:metasenv ~newmetasenv:metasenv''
539            in
540            let proof' = curi,metasenv'',proofbo,proofty in
541             let proof'', new_goals' =
542              apply_tactic (apply_tac ~term:refined_term) (proof',goal)
543             in
544              (* The apply_tactic can have closed some of the new_goals *)
545              let patched_new_goals =
546               let (_,metasenv''',_,_) = proof'' in
547                List.filter
548                 (function i -> List.exists (function (j,_,_) -> j=i) metasenv'''
549                 ) new_goals @ new_goals'
550              in
551               proof'', patched_new_goals
552  in
553   mk_tactic (elim_tac ~term)
554 ;;
555
556 (* The simplification is performed only on the conclusion *)
557 let elim_intros_simpl_tac ~term =
558  Tacticals.then_ ~start:(elim_tac ~term)
559   ~continuation:
560    (Tacticals.thens
561      ~start:(intros_tac ())
562      ~continuations:
563        [ReductionTactics.simpl_tac ~also_in_hypotheses:false ~terms:None])
564 ;;
565
566 exception NotConvertible
567
568 (*CSC: Bug (or feature?). [with_what] is parsed in the context of the goal,  *)
569 (*CSC: while [what] can have a richer context (because of binders)           *)
570 (*CSC: So it is _NOT_ possible to use those binders in the [with_what] term. *)
571 (*CSC: Is that evident? Is that right? Or should it be changed?              *)
572 let change_tac ~what ~with_what =
573   let change_tac ~what ~with_what (proof, goal) =
574     let curi,metasenv,pbo,pty = proof in
575     let metano,context,ty = CicUtil.lookup_meta goal metasenv in
576       (* are_convertible works only on well-typed terms *)
577     let _,u = 
578       CicTypeChecker.type_of_aux' metasenv context with_what 
579         CicUniv.empty_ugraph
580     in (* TASSI: FIXME *)
581     let b,_ = 
582       CicReduction.are_convertible context what with_what u 
583     in
584       if b then
585         begin
586           let replace =
587             ProofEngineReduction.replace
588               ~equality:(==) ~what:[what] ~with_what:[with_what]
589           in
590           let ty' = replace ty in
591           let context' =
592             List.map
593               (function
594                    Some (name,Cic.Def (t,None))->
595                      Some (name,Cic.Def ((replace t),None))
596                  | Some (name,Cic.Decl t) -> Some (name,Cic.Decl (replace t))
597                  | None -> None
598                  | Some (_,Cic.Def (_,Some _)) -> assert false
599               ) context
600           in
601           let metasenv' = 
602             List.map
603               (function
604                    (n,_,_) when n = metano -> (metano,context',ty')
605                  | _ as t -> t
606               ) metasenv
607           in
608             (curi,metasenv',pbo,pty), [metano]
609         end
610       else
611         raise (ProofEngineTypes.Fail "Not convertible")
612   in
613     mk_tactic (change_tac ~what ~with_what)
614