]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/equalityTactics.ml
Bug fixed: metavariables generated by the saturation in the rewrite tactic
[helm.git] / helm / ocaml / tactics / equalityTactics.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 let rewrite_tac ~direction ~pattern equality =
27  let rewrite_tac ~direction ~pattern:(wanted,hyps_pat,concl_pat) equality status
28  =
29   let module C = Cic in
30   let module U = UriManager in
31   let module PET = ProofEngineTypes in
32   let module PER = ProofEngineReduction in
33   let module PEH = ProofEngineHelpers in
34   let module PT = PrimitiveTactics in
35   assert (wanted = None);   (* this should be checked syntactically *)
36   assert (hyps_pat = []); (*CSC: not implemented yet! *)
37   let proof,goal = status in
38   let if_right_to_left a b = 
39     match direction with
40     | `RightToLeft -> a
41     | `LeftToRight -> b
42   in
43   let curi, metasenv, pbo, pty = proof in
44   let (metano,context,gty) as conjecture = CicUtil.lookup_meta goal metasenv in
45   let ty_eq,ugraph = 
46     CicTypeChecker.type_of_aux' metasenv context equality 
47       CicUniv.empty_ugraph in 
48   let (ty_eq,metasenv',arguments,fresh_meta) =
49    ProofEngineHelpers.saturate_term
50     (ProofEngineHelpers.new_meta_of_proof proof) metasenv context ty_eq in
51   let equality =
52    if List.length arguments = 0 then
53     equality
54    else
55     C.Appl (equality :: arguments) in
56   let eq_ind, ty, t1, t2 =
57     match ty_eq with
58     | C.Appl [C.MutInd (uri, 0, []); ty; t1; t2]
59       when LibraryObjects.is_eq_URI uri ->
60         let ind_uri =
61          if_right_to_left LibraryObjects.eq_ind_URI LibraryObjects.eq_ind_r_URI
62         in
63         let eq_ind = C.Const (ind_uri uri,[]) in
64          if_right_to_left (eq_ind, ty, t2, t1) (eq_ind, ty, t1, t2)
65     | _ -> raise (PET.Fail "Rewrite: argument is not a proof of an equality") in
66   (* now we always do as if direction was `LeftToRight *)
67   let fresh_name = 
68     FreshNamesGenerator.mk_fresh_name 
69     ~subst:[] metasenv' context C.Anonymous ~typ:ty in
70   let lifted_t1 = CicSubstitution.lift 1 t1 in
71   let lifted_gty = CicSubstitution.lift 1 gty in
72   let lifted_conjecture =
73     metano,(Some (fresh_name,Cic.Decl ty))::context,lifted_gty in
74   let lifted_pattern = Some lifted_t1,[],CicSubstitution.lift 1 concl_pat in
75   let subst,metasenv',ugraph,_,selected_terms_with_context =
76    ProofEngineHelpers.select
77     ~metasenv:metasenv' ~ugraph ~conjecture:lifted_conjecture
78      ~pattern:lifted_pattern in
79   let metasenv' = CicMetaSubst.apply_subst_metasenv subst metasenv' in
80   let what,with_what = 
81    (* Note: Rel 1 does not live in the context context_of_t           *)
82    (* The replace_lifting_csc_0 function will take care of lifting it *)
83    (* to context_of_t                                                 *)
84    List.fold_right
85     (fun (context_of_t,t) (l1,l2) -> t::l1, Cic.Rel 1::l2)
86     selected_terms_with_context ([],[]) in
87   let abstr_gty =
88    ProofEngineReduction.replace_lifting_csc 0
89     ~equality:(==) ~what ~with_what:with_what ~where:lifted_gty in
90   let abstr_gty = CicMetaSubst.apply_subst subst abstr_gty in
91   let t1 = CicMetaSubst.apply_subst subst t1 in
92   let t2 = CicMetaSubst.apply_subst subst t2 in
93   let equality = CicMetaSubst.apply_subst subst equality in
94   let gty' = CicSubstitution.subst t2 abstr_gty in
95   let irl = CicMkImplicit.identity_relocation_list_for_metavariable context in
96   let metasenv' = (fresh_meta,context,gty')::metasenv' in
97   let pred = C.Lambda (fresh_name, ty, abstr_gty) in
98   let exact_proof = 
99     C.Appl [eq_ind ; ty ; t2 ; pred ; C.Meta (fresh_meta,irl) ; t1 ;equality]
100   in
101   let (proof',goals) =
102     PET.apply_tactic 
103       (PT.exact_tac ~term:exact_proof) ((curi,metasenv',pbo,pty),goal)
104   in
105   assert (List.length goals = 0) ;
106   let goals = List.map (fun (i,_,_) -> i) metasenv' in
107   let goals =
108    List.filter
109     (fun i ->
110       not (List.exists (fun (j,_,_) -> i=j) metasenv)) goals
111   in
112    (proof',goals)
113  in
114   ProofEngineTypes.mk_tactic (rewrite_tac ~direction ~pattern equality)
115   
116  
117 let rewrite_simpl_tac ~direction ~pattern equality =
118  let rewrite_simpl_tac ~direction ~pattern equality status =
119   ProofEngineTypes.apply_tactic
120   (Tacticals.then_ 
121    ~start:(rewrite_tac ~direction ~pattern equality)
122    ~continuation:
123      (ReductionTactics.simpl_tac
124        ~pattern:(ProofEngineTypes.conclusion_pattern None)))
125    status
126  in
127    ProofEngineTypes.mk_tactic (rewrite_simpl_tac ~direction ~pattern equality)
128 ;;
129
130 let replace_tac ~pattern ~with_what =
131 (*
132  let replace_tac ~pattern:(wanted,hyps_pat,concl_pat) ~with_what status =
133   let (proof, goal) = status in
134   let module C = Cic in
135   let module U = UriManager in
136   let module P = PrimitiveTactics in
137   let module T = Tacticals in
138   let _,metasenv,_,_ = proof in
139   let (_,context,ty) as conjecture = CicUtil.lookup_meta goal metasenv in
140   assert (hyps_pat = []); (*CSC: not implemented yet *)
141   let context_len = List.length context in
142   let _,selected_terms_with_context =
143    ProofEngineHelpers.select ~metasenv ~conjecture ~pattern in
144   let ty_of_with_what,u =
145    CicTypeChecker.type_of_aux'
146     metasenv context with_what CicUniv.empty_ugraph in
147   let whats =
148    match selected_terms_with_context with
149       [] -> raise (ProofEngineTypes.Fail "Replace: no term selected")
150     | l ->
151       List.map
152        (fun (context_of_t,t) ->
153          let t_in_context =
154           try
155            let context_of_t_len = List.length context_of_t in
156            if context_of_t_len = context_len then t
157            else
158             (let t_in_context,subst,metasenv' =
159               CicMetaSubst.delift_rels [] metasenv
160                (context_of_t_len - context_len) t
161              in
162               assert (subst = []);
163               assert (metasenv = metasenv');
164               t_in_context)
165           with
166            CicMetaSubst.DeliftingARelWouldCaptureAFreeVariable ->
167             (*CSC: we could implement something stronger by completely changing
168               the semantics of the tactic *)
169             raise (ProofEngineTypes.Fail
170              "Replace: one of the selected terms is not closed") in
171          let ty_of_t_in_context,u = (* TASSI: FIXME *)
172           CicTypeChecker.type_of_aux' metasenv context t_in_context
173            CicUniv.empty_ugraph in
174          let b,u = CicReduction.are_convertible ~metasenv context
175           ty_of_with_what ty_of_t_in_context u in
176          if b then
177           let concl_pat_for_t = ProofEngineHelpers.pattern_of ~term:ty [t] in
178           let pattern_for_t = None,[],concl_pat_for_t in
179            t_in_context,pattern_for_t
180          else
181           raise
182            (ProofEngineTypes.Fail
183              "Replace: one of the selected terms and the term to be replaced with have not convertible types")
184        ) l in
185   let rec aux n whats status =
186    match whats with
187       [] -> ProofEngineTypes.apply_tactic T.id_tac status
188     | (what,pattern)::tl ->
189        let what = CicSubstitution.lift n what in
190        let with_what = CicSubstitution.lift n with_what in
191        let ty_of_with_what = CicSubstitution.lift n ty_of_with_what in
192        ProofEngineTypes.apply_tactic
193          (T.thens
194             ~start:(
195               P.cut_tac 
196                (C.Appl [
197                  (C.MutInd (LibraryObjects.eq_URI (), 0, [])) ;
198                  ty_of_with_what ; 
199                  what ; 
200                  with_what]))
201             ~continuations:[            
202               T.then_
203                 ~start:(
204                   rewrite_tac ~direction:`LeftToRight ~pattern (C.Rel 1))
205                  ~continuation:(
206                    T.then_
207                     ~start:(
208                       ProofEngineTypes.mk_tactic
209                        (function ((proof,goal) as status) ->
210                          let _,metasenv,_,_ = proof in
211                          let _,context,_ = CicUtil.lookup_meta goal metasenv in
212                          let hyp =
213                           try
214                            match List.hd context with
215                               Some (Cic.Name name,_) -> name
216                             | _ -> assert false
217                           with (Failure "hd") -> assert false
218                          in
219                           ProofEngineTypes.apply_tactic
220                            (ProofEngineStructuralRules.clear ~hyp) status))
221                     ~continuation:(aux_tac (n + 1) tl));
222               T.id_tac])
223          status
224   and aux_tac n tl = ProofEngineTypes.mk_tactic (aux n tl) in
225    aux 0 whats status
226  in
227    ProofEngineTypes.mk_tactic (replace_tac ~pattern ~with_what)
228 *) assert false
229 ;;
230
231
232 (* All these tacs do is applying the right constructor/theorem *)
233
234 let reflexivity_tac =
235   IntroductionTactics.constructor_tac ~n:1
236 ;;
237
238 let symmetry_tac =
239  let symmetry_tac (proof, goal) =
240   let module C = Cic in
241   let module R = CicReduction in
242   let module U = UriManager in
243    let (_,metasenv,_,_) = proof in
244     let metano,context,ty = CicUtil.lookup_meta goal metasenv in
245      match (R.whd context ty) with
246         (C.Appl [(C.MutInd (uri, 0, [])); _; _; _])
247          when LibraryObjects.is_eq_URI uri ->
248           ProofEngineTypes.apply_tactic 
249            (PrimitiveTactics.apply_tac 
250             ~term: (C.Const (LibraryObjects.sym_eq_URI uri, []))) 
251            (proof,goal)
252
253       | _ -> raise (ProofEngineTypes.Fail "Symmetry failed")
254  in
255   ProofEngineTypes.mk_tactic symmetry_tac
256 ;;
257
258 let transitivity_tac ~term =
259  let transitivity_tac ~term status =
260   let (proof, goal) = status in
261   let module C = Cic in
262   let module R = CicReduction in
263   let module U = UriManager in
264   let module T = Tacticals in
265    let (_,metasenv,_,_) = proof in
266     let metano,context,ty = CicUtil.lookup_meta goal metasenv in
267      match (R.whd context ty) with
268         (C.Appl [(C.MutInd (uri, 0, [])); _; _; _]) 
269         when LibraryObjects.is_eq_URI uri ->
270          ProofEngineTypes.apply_tactic 
271          (T.thens
272           ~start:(PrimitiveTactics.apply_tac
273             ~term: (C.Const (LibraryObjects.trans_eq_URI uri, [])))
274           ~continuations:
275             [PrimitiveTactics.exact_tac ~term ; T.id_tac ; T.id_tac])
276           status
277
278       | _ -> raise (ProofEngineTypes.Fail "Transitivity failed")
279  in
280   ProofEngineTypes.mk_tactic (transitivity_tac ~term)
281 ;;
282
283