]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/primitiveTactics.ml
passes ~subst to FreshNameGenerator
[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
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 =
165    function
166       C.Cast (he,_) -> aux newmeta he
167 (* CSC: patch to generate ?1 : ?2 : Type in place of ?1 : Type to simulate ?1 :< Type
168       (* If the expected type is a Type, then also Set is OK ==>
169       *  we accept any term of type Type *)
170       (*CSC: BUG HERE: in this way it is possible for the term of
171       * type Type to be different from a Sort!!! *)
172     | C.Prod (name,(C.Sort (C.Type _) as s),t) ->
173        (* TASSI: ask CSC if BUG HERE refers to the C.Cast or C.Propd case *)
174        let irl =
175          CicMkImplicit.identity_relocation_list_for_metavariable context
176        in
177         let newargument = C.Meta (newmeta+1,irl) in
178          let (res,newmetasenv,arguments,lastmeta) =
179           aux (newmeta + 2) (S.subst newargument t)
180          in
181           res,
182            (newmeta,[],s)::(newmeta+1,context,C.Meta (newmeta,[]))::newmetasenv,
183            newargument::arguments,lastmeta
184 *)
185     | C.Prod (name,s,t) ->
186        let irl =
187          CicMkImplicit.identity_relocation_list_for_metavariable context
188        in
189         let newargument = C.Meta (newmeta,irl) in
190          let (res,newmetasenv,arguments,lastmeta) =
191           aux (newmeta + 1) (S.subst newargument t)
192          in
193           res,(newmeta,context,s)::newmetasenv,newargument::arguments,lastmeta
194     | t -> t,[],[],newmeta
195   in
196    (* WARNING: here we are using the invariant that above the most *)
197    (* recente new_meta() there are no used metas.                  *)
198    let (res,newmetasenv,arguments,lastmeta) = aux newmeta ty in
199     res,newmetasenv,arguments,lastmeta
200
201 (* Useful only inside apply_tac *)
202 let
203  generalize_exp_named_subst_with_fresh_metas context newmeta uri exp_named_subst
204 =
205  let module C = Cic in
206   let params =
207    match CicEnvironment.get_obj uri with
208       C.Constant (_,_,_,params)
209     | C.CurrentProof (_,_,_,_,params)
210     | C.Variable (_,_,_,params)
211     | C.InductiveDefinition (_,params,_) -> params
212   in
213    let exp_named_subst_diff,new_fresh_meta,newmetasenvfragment,exp_named_subst'=
214     let next_fresh_meta = ref newmeta in
215     let newmetasenvfragment = ref [] in
216     let exp_named_subst_diff = ref [] in
217      let rec aux =
218       function
219          [],[] -> []
220        | uri::tl,[] ->
221           let ty =
222            match CicEnvironment.get_obj uri with
223               C.Variable (_,_,ty,_) ->
224                CicSubstitution.subst_vars !exp_named_subst_diff ty
225             | _ -> raise (WrongUriToVariable (UriManager.string_of_uri uri))
226           in
227 (* CSC: patch to generate ?1 : ?2 : Type in place of ?1 : Type to simulate ?1 :< Type
228            (match ty with
229                C.Sort (C.Type _) as s -> (* TASSI: ?? *)
230                  let fresh_meta = !next_fresh_meta in
231                  let fresh_meta' = fresh_meta + 1 in
232                   next_fresh_meta := !next_fresh_meta + 2 ;
233                   let subst_item = uri,C.Meta (fresh_meta',[]) in
234                    newmetasenvfragment :=
235                     (fresh_meta,[],C.Sort (C.Type (CicUniv.fresh()))) ::
236                      (* TASSI: ?? *)
237                      (fresh_meta',[],C.Meta (fresh_meta,[])) :: !newmetasenvfragment ;
238                    exp_named_subst_diff := !exp_named_subst_diff @ [subst_item] ;
239                    subst_item::(aux (tl,[]))
240              | _ ->
241 *)
242               let irl =
243                 CicMkImplicit.identity_relocation_list_for_metavariable context
244               in
245               let subst_item = uri,C.Meta (!next_fresh_meta,irl) in
246                newmetasenvfragment :=
247                 (!next_fresh_meta,context,ty)::!newmetasenvfragment ;
248                exp_named_subst_diff := !exp_named_subst_diff @ [subst_item] ;
249                incr next_fresh_meta ;
250                subst_item::(aux (tl,[]))(*)*)
251        | uri::tl1,((uri',_) as s)::tl2 ->
252           assert (UriManager.eq uri uri') ;
253           s::(aux (tl1,tl2))
254        | [],_ -> assert false
255      in
256       let exp_named_subst' = aux (params,exp_named_subst) in
257        !exp_named_subst_diff,!next_fresh_meta,
258         List.rev !newmetasenvfragment, exp_named_subst'
259    in
260     new_fresh_meta,newmetasenvfragment,exp_named_subst',exp_named_subst_diff
261 ;;
262
263 let apply_tac_verbose ~term (proof, goal) =
264   (* Assumption: The term "term" must be closed in the current context *)
265  let module T = CicTypeChecker in
266  let module R = CicReduction in
267  let module C = Cic in
268   let (_,metasenv,_,_) = proof in
269   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
270   let newmeta = new_meta_of_proof ~proof in
271    let exp_named_subst_diff,newmeta',newmetasenvfragment,term' =
272     match term with
273        C.Var (uri,exp_named_subst) ->
274         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
275          generalize_exp_named_subst_with_fresh_metas context newmeta uri
276           exp_named_subst
277         in
278          exp_named_subst_diff,newmeta',newmetasenvfragment,
279           C.Var (uri,exp_named_subst')
280      | C.Const (uri,exp_named_subst) ->
281         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
282          generalize_exp_named_subst_with_fresh_metas context newmeta uri
283           exp_named_subst
284         in
285          exp_named_subst_diff,newmeta',newmetasenvfragment,
286           C.Const (uri,exp_named_subst')
287      | C.MutInd (uri,tyno,exp_named_subst) ->
288         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
289          generalize_exp_named_subst_with_fresh_metas context newmeta uri
290           exp_named_subst
291         in
292          exp_named_subst_diff,newmeta',newmetasenvfragment,
293           C.MutInd (uri,tyno,exp_named_subst')
294      | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
295         let newmeta',newmetasenvfragment,exp_named_subst',exp_named_subst_diff =
296          generalize_exp_named_subst_with_fresh_metas context newmeta uri
297           exp_named_subst
298         in
299          exp_named_subst_diff,newmeta',newmetasenvfragment,
300           C.MutConstruct (uri,tyno,consno,exp_named_subst')
301      | _ -> [],newmeta,[],term
302    in
303    let metasenv' = metasenv@newmetasenvfragment in
304    let termty =
305     CicSubstitution.subst_vars exp_named_subst_diff
306      (CicTypeChecker.type_of_aux' metasenv' context term)
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' =
314         CicUnification.fo_unif newmetasenv context consthead ty
315       in
316        let in_subst_domain i = List.exists (function (j,_) -> i=j) subst in
317        let apply_subst = CicMetaSubst.apply_subst subst in
318         let old_uninstantiatedmetas,new_uninstantiatedmetas =
319          (* subst_in doesn't need the context. Hence the underscore. *)
320          let subst_in _ = CicMetaSubst.apply_subst subst in
321           classify_metas newmeta in_subst_domain subst_in newmetasenv'
322         in
323          let bo' =
324           apply_subst
325            (if List.length newmetas = 0 then
326              term'
327             else
328              Cic.Appl (term'::arguments)
329            )
330          in
331          let newmetasenv'' = new_uninstantiatedmetas@old_uninstantiatedmetas in
332          let subst_in =
333            (* if we just apply the subtitution, the type is irrelevant:
334               we may use Implicit, since it will be dropped *)
335            CicMetaSubst.apply_subst 
336              ((metano,(context, bo', Cic.Implicit None))::subst)
337          in
338          let (newproof, newmetasenv''') =
339            subst_meta_and_metasenv_in_proof
340              proof metano subst_in newmetasenv''
341          in
342            (subst_in,(newproof, List.map (function (i,_,_) -> i) new_uninstantiatedmetas))
343
344 let apply_tac ~term status = snd (apply_tac_verbose ~term status)
345
346 let apply_tac_verbose ~term status =
347   try
348     apply_tac_verbose ~term status
349       (* TODO cacciare anche altre eccezioni? *)
350   with CicUnification.UnificationFailure _ as e ->
351     raise (Fail (Printexc.to_string e))
352
353   (* TODO per implementare i tatticali e' necessario che tutte le tattiche
354   sollevino _solamente_ Fail *)
355 let apply_tac ~term =
356  let apply_tac ~term status =
357   try
358     apply_tac ~term status
359       (* TODO cacciare anche altre eccezioni? *)
360   with CicUnification.UnificationFailure _ as e ->
361     raise (Fail (Printexc.to_string e))
362  in
363   mk_tactic (apply_tac ~term)
364
365 let intros_tac ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ()=
366  let intros_tac
367   ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ()
368   (proof, goal)
369  =
370   let module C = Cic in
371   let module R = CicReduction in
372    let (_,metasenv,_,_) = proof in
373    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
374     let newmeta = new_meta_of_proof ~proof in
375      let (context',ty',bo') =
376       lambda_abstract metasenv context newmeta ty mk_fresh_name_callback
377      in
378       let (newproof, _) =
379         subst_meta_in_proof proof metano bo' [newmeta,context',ty']
380       in
381        (newproof, [newmeta])
382  in
383   mk_tactic (intros_tac ~mk_fresh_name_callback ())
384   
385 let cut_tac ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[]) ~term=
386  let cut_tac
387   ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[])
388   term (proof, goal)
389  =
390   let module C = Cic in
391    let curi,metasenv,pbo,pty = proof in
392    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
393     let newmeta1 = new_meta_of_proof ~proof in
394     let newmeta2 = newmeta1 + 1 in
395     let fresh_name =
396      mk_fresh_name_callback metasenv context (Cic.Name "Hcut") ~typ:term in
397     let context_for_newmeta1 =
398      (Some (fresh_name,C.Decl term))::context in
399     let irl1 =
400      CicMkImplicit.identity_relocation_list_for_metavariable
401       context_for_newmeta1
402     in
403     let irl2 =
404       CicMkImplicit.identity_relocation_list_for_metavariable context
405     in
406      let newmeta1ty = CicSubstitution.lift 1 ty in
407      let bo' =
408       C.Appl
409        [C.Lambda (fresh_name,term,C.Meta (newmeta1,irl1)) ;
410         C.Meta (newmeta2,irl2)]
411      in
412       let (newproof, _) =
413        subst_meta_in_proof proof metano bo'
414         [newmeta2,context,term; newmeta1,context_for_newmeta1,newmeta1ty];
415       in
416        (newproof, [newmeta1 ; newmeta2])
417  in
418   mk_tactic (cut_tac ~mk_fresh_name_callback term)
419
420 let letin_tac ?(mk_fresh_name_callback=FreshNamesGenerator.mk_fresh_name ~subst:[]) ~term=
421  let letin_tac
422   ?(mk_fresh_name_callback = FreshNamesGenerator.mk_fresh_name ~subst:[])
423   term (proof, goal)
424  =
425   let module C = Cic in
426    let curi,metasenv,pbo,pty = proof in
427    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
428     let _ = CicTypeChecker.type_of_aux' metasenv context term in
429      let newmeta = new_meta_of_proof ~proof in
430      let fresh_name =
431       mk_fresh_name_callback metasenv context (Cic.Name "Hletin") ~typ:term in
432      let context_for_newmeta =
433       (Some (fresh_name,C.Def (term,None)))::context in
434      let irl =
435       CicMkImplicit.identity_relocation_list_for_metavariable
436        context_for_newmeta
437      in
438       let newmetaty = CicSubstitution.lift 1 ty in
439       let bo' = C.LetIn (fresh_name,term,C.Meta (newmeta,irl)) in
440        let (newproof, _) =
441          subst_meta_in_proof
442            proof metano bo'[newmeta,context_for_newmeta,newmetaty]
443        in
444         (newproof, [newmeta])
445  in
446   mk_tactic (letin_tac ~mk_fresh_name_callback term)
447
448   (** functional part of the "exact" tactic *)
449 let exact_tac ~term =
450  let exact_tac ~term (proof, goal) =
451   (* Assumption: the term bo must be closed in the current context *)
452   let (_,metasenv,_,_) = proof in
453   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
454   let module T = CicTypeChecker in
455   let module R = CicReduction in
456   if R.are_convertible context (T.type_of_aux' metasenv context term) ty then
457    begin
458     let (newproof, metasenv') =
459       subst_meta_in_proof proof metano term [] in
460     (newproof, [])
461    end
462   else
463    raise (Fail "The type of the provided term is not the one expected.")
464  in
465   mk_tactic (exact_tac ~term)
466
467 (* not really "primitive" tactics .... *)
468 let elim_tac ~term = 
469  let elim_tac ~term (proof, goal) =
470   let module T = CicTypeChecker in
471   let module U = UriManager in
472   let module R = CicReduction in
473   let module C = Cic in
474    let (curi,metasenv,proofbo,proofty) = proof in
475    let metano,context,ty = CicUtil.lookup_meta goal metasenv in
476     let termty = T.type_of_aux' metasenv context term in
477     let uri,exp_named_subst,typeno,args =
478      match termty with
479         C.MutInd (uri,typeno,exp_named_subst) -> (uri,exp_named_subst,typeno,[])
480       | C.Appl ((C.MutInd (uri,typeno,exp_named_subst))::args) ->
481           (uri,exp_named_subst,typeno,args)
482       | _ -> raise NotAnInductiveTypeToEliminate
483     in
484      let eliminator_uri =
485       let buri = U.buri_of_uri uri in
486       let name = 
487        match CicEnvironment.get_obj uri with
488           C.InductiveDefinition (tys,_,_) ->
489            let (name,_,_,_) = List.nth tys typeno in
490             name
491         | _ -> assert false
492       in
493       let ext =
494        match T.type_of_aux' metasenv context ty with
495           C.Sort C.Prop -> "_ind"
496         | C.Sort C.Set  -> "_rec"
497         | C.Sort C.CProp -> "_rec"
498         | C.Sort (C.Type _)-> "_rect" (* TASSI *)
499         | _ -> assert false
500       in
501        U.uri_of_string (buri ^ "/" ^ name ^ ext ^ ".con")
502      in
503       let eliminator_ref = C.Const (eliminator_uri,exp_named_subst) in
504        let ety = T.type_of_aux' metasenv context eliminator_ref in
505         let rec find_args_no =
506          function
507             C.Prod (_,_,t) -> 1 + find_args_no t
508           | C.Cast (s,_) -> find_args_no s
509           | C.LetIn (_,_,t) -> 0 + find_args_no t
510           | _ -> 0
511         in
512          let args_no = find_args_no ety in
513          let term_to_refine =
514           let rec make_tl base_case =
515            function
516               0 -> [base_case]
517             | n -> (C.Implicit None)::(make_tl base_case (n - 1))
518           in
519            C.Appl (eliminator_ref :: make_tl term (args_no - 1))
520          in
521           let metasenv', term_to_refine' =
522            CicMkImplicit.expand_implicits metasenv [] context term_to_refine in
523           let refined_term,_,metasenv'' =
524            CicRefine.type_of_aux' metasenv' context term_to_refine'
525           in
526            let new_goals =
527             ProofEngineHelpers.compare_metasenvs
528              ~oldmetasenv:metasenv ~newmetasenv:metasenv''
529            in
530            let proof' = curi,metasenv'',proofbo,proofty in
531             let proof'', new_goals' =
532              apply_tactic (apply_tac ~term:refined_term) (proof',goal)
533             in
534              (* The apply_tactic can have closed some of the new_goals *)
535              let patched_new_goals =
536               let (_,metasenv''',_,_) = proof'' in
537                List.filter
538                 (function i -> List.exists (function (j,_,_) -> j=i) metasenv'''
539                 ) new_goals @ new_goals'
540              in
541               proof'', patched_new_goals
542  in
543   mk_tactic (elim_tac ~term)
544 ;;
545
546 (* The simplification is performed only on the conclusion *)
547 let elim_intros_simpl_tac ~term =
548  Tacticals.then_ ~start:(elim_tac ~term)
549   ~continuation:
550    (Tacticals.thens
551      ~start:(intros_tac ())
552      ~continuations:
553        [ReductionTactics.simpl_tac ~also_in_hypotheses:false ~terms:None])
554 ;;
555
556 exception NotConvertible
557
558 (*CSC: Bug (or feature?). [with_what] is parsed in the context of the goal,  *)
559 (*CSC: while [what] can have a richer context (because of binders)           *)
560 (*CSC: So it is _NOT_ possible to use those binders in the [with_what] term. *)
561 (*CSC: Is that evident? Is that right? Or should it be changed?              *)
562 let change_tac ~what ~with_what =
563  let change_tac ~what ~with_what (proof, goal) =
564   let curi,metasenv,pbo,pty = proof in
565   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
566    (* are_convertible works only on well-typed terms *)
567    ignore (CicTypeChecker.type_of_aux' metasenv context with_what) ;
568    if CicReduction.are_convertible context what with_what then
569     begin
570      let replace =
571       ProofEngineReduction.replace
572        ~equality:(==) ~what:[what] ~with_what:[with_what]
573      in
574      let ty' = replace ty in
575      let context' =
576       List.map
577        (function
578            Some (name,Cic.Def (t,None))->Some (name,Cic.Def ((replace t),None))
579          | Some (name,Cic.Decl t) -> Some (name,Cic.Decl (replace t))
580          | None -> None
581          | Some (_,Cic.Def (_,Some _)) -> assert false
582        ) context
583      in
584       let metasenv' = 
585        List.map
586         (function
587             (n,_,_) when n = metano -> (metano,context',ty')
588           | _ as t -> t
589         ) metasenv
590       in
591        (curi,metasenv',pbo,pty), [metano]
592     end
593    else
594     raise (ProofEngineTypes.Fail "Not convertible")
595  in
596   mk_tactic (change_tac ~what ~with_what)