1 (* Copyright (C) 2002, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
30 (* Note: this code is almost identical to change_tac and
31 * it could be unified by making the change function a callback *)
32 let reduction_tac ~reduction ~pattern (proof,goal) =
33 let curi,metasenv,_subst,pbo,pty, attrs = proof in
34 let (metano,context,ty) as conjecture = CicUtil.lookup_meta goal metasenv in
35 let change subst where terms metasenv ugraph =
36 if terms = [] then where, metasenv, ugraph
38 let pairs, metasenv, ugraph =
40 (fun (pairs, metasenv, ugraph) (context, t) ->
41 let reduction, metasenv, ugraph = reduction context metasenv ugraph in
42 ((t, reduction context t) :: pairs), metasenv, ugraph)
43 ([], metasenv, ugraph)
46 let terms, terms' = List.split pairs in
48 ProofEngineReduction.replace ~equality:(==) ~what:terms ~with_what:terms'
51 CicMetaSubst.apply_subst subst where', metasenv, ugraph
53 let (subst,metasenv,ugraph,selected_context,selected_ty) =
54 ProofEngineHelpers.select ~metasenv ~ugraph:CicUniv.oblivion_ugraph
57 let ty', metasenv, ugraph = change subst ty selected_ty metasenv ugraph in
58 let context', metasenv, ugraph =
60 (fun entry selected_entry (context', metasenv, ugraph) ->
61 match entry,selected_entry with
62 None,None -> None::context', metasenv, ugraph
63 | Some (name,Cic.Decl ty),Some (`Decl selected_ty) ->
64 let ty', metasenv, ugraph =
65 change subst ty selected_ty metasenv ugraph
67 Some (name,Cic.Decl ty')::context', metasenv, ugraph
68 | Some (name,Cic.Def (bo,ty)),Some (`Def (selected_bo,selected_ty)) ->
69 let bo', metasenv, ugraph =
70 change subst bo selected_bo metasenv ugraph in
71 let ty', metasenv, ugraph =
72 change subst ty selected_ty metasenv ugraph
74 (Some (name,Cic.Def (bo',ty'))::context'), metasenv, ugraph
76 ) context selected_context ([], metasenv, ugraph) in
79 | (n,_,_) when n = metano -> (metano,context',ty')
83 (curi,metasenv',_subst,pbo,pty, attrs), [metano]
86 let simpl_tac ~pattern =
87 mk_tactic (reduction_tac
88 ~reduction:(const_lazy_reduction ProofEngineReduction.simpl) ~pattern)
90 let unfold_tac what ~pattern =
93 | None -> const_lazy_reduction (ProofEngineReduction.unfold ?what:None)
95 (fun context metasenv ugraph ->
96 let what, metasenv, ugraph = lazy_term context metasenv ugraph in
99 ProofEngineReduction.unfold ~what ctx t
101 (* Not what we would like to have; however, this is required
102 right now for the case of a definition in the context:
103 if it works only in the body (or only in the type), that should
105 ProofEngineTypes.Fail _ -> t
107 unfold, metasenv, ugraph)
109 mk_tactic (reduction_tac ~reduction ~pattern)
111 let whd_tac ~pattern =
112 mk_tactic (reduction_tac
113 ~reduction:(const_lazy_reduction CicReduction.whd) ~pattern)
115 let normalize_tac ~pattern =
116 mk_tactic (reduction_tac
117 ~reduction:(const_lazy_reduction CicReduction.normalize) ~pattern)
119 let head_beta_reduce_tac ?delta ?upto ~pattern =
120 mk_tactic (reduction_tac
122 (const_lazy_reduction
123 (fun _context -> CicReduction.head_beta_reduce ?delta ?upto)) ~pattern)
125 exception NotConvertible
127 (* Note: this code is almost identical to reduction_tac and
128 * it could be unified by making the change function a callback *)
129 (* CSC: with_what is parsed in the context of the goal, but it should replace
130 something that lives in a completely different context. Thus we
131 perform a delift + lift phase to move it in the right context. However,
132 in this way the tactic is less powerful than expected: with_what cannot
133 reference variables that are local to the term that is going to be
134 replaced. To fix this we should parse with_what in the context of the
135 term(s) to be replaced. *)
136 let change_tac ?(with_cast=false) ~pattern with_what =
137 let change_tac ~pattern ~with_what (proof, goal) =
138 let curi,metasenv,_subst,pbo,pty, attrs = proof in
139 let (metano,context,ty) as conjecture = CicUtil.lookup_meta goal metasenv in
140 let change subst where terms metasenv ugraph =
141 if terms = [] then where, metasenv, ugraph
143 let pairs, metasenv, ugraph =
145 (fun (pairs, metasenv, ugraph) (context_of_t, t) ->
146 let with_what, metasenv, ugraph =
147 with_what context_of_t metasenv ugraph
150 CicTypeChecker.type_of_aux' metasenv context_of_t with_what ugraph
153 CicReduction.are_convertible ~metasenv context_of_t t with_what u
156 ((t, with_what) :: pairs), metasenv, ugraph
158 raise NotConvertible)
159 ([], metasenv, ugraph)
162 let terms, terms' = List.split pairs in
164 ProofEngineReduction.replace ~equality:(==) ~what:terms ~with_what:terms'
167 CicMetaSubst.apply_subst subst where', metasenv, ugraph
169 let (subst,metasenv,ugraph,selected_context,selected_ty) =
170 ProofEngineHelpers.select ~metasenv ~ugraph:CicUniv.oblivion_ugraph ~conjecture
172 let ty', metasenv, ugraph = change subst ty selected_ty metasenv ugraph in
173 let context', metasenv, ugraph =
175 (fun entry selected_entry (context', metasenv, ugraph) ->
176 match entry,selected_entry with
177 None,None -> (None::context'), metasenv, ugraph
178 | Some (name,Cic.Decl ty),Some (`Decl selected_ty) ->
179 let ty', metasenv, ugraph =
180 change subst ty selected_ty metasenv ugraph
182 (Some (name,Cic.Decl ty')::context'), metasenv, ugraph
183 | Some (name,Cic.Def (bo,ty)),Some (`Def (selected_bo,selected_ty)) ->
184 let bo', metasenv, ugraph =
185 change subst bo selected_bo metasenv ugraph in
186 let ty', metasenv, ugraph =
187 change subst ty selected_ty metasenv ugraph
189 (Some (name,Cic.Def (bo',ty'))::context'), metasenv, ugraph
190 | _,_ -> assert false
191 ) context selected_context ([], metasenv, ugraph) in
195 | (n,_,_) when n = metano -> (metano,context',ty')
199 let proof,goal = (curi,metasenv',_subst,pbo,pty, attrs), metano in
201 let metano' = ProofEngineHelpers.new_meta_of_proof ~proof in
203 let irl= CicMkImplicit.identity_relocation_list_for_metavariable context'
205 ProofEngineHelpers.subst_meta_in_proof
207 (Cic.Cast (Cic.Meta(metano',irl),ty')) [metano',context',ty']
213 mk_tactic (change_tac ~pattern ~with_what)
215 let fold_tac ~reduction ~term ~pattern =
216 let fold_tac ~reduction ~term ~pattern:(wanted,hyps_pat,concl_pat) status =
217 assert (wanted = None); (* this should be checked syntactically *)
219 (fun context metasenv ugraph ->
220 let term, metasenv, ugraph = term context metasenv ugraph in
221 let reduction, metasenv, ugraph = reduction context metasenv ugraph in
222 reduction context term, metasenv, ugraph)
225 (change_tac ~pattern:(Some reduced_term,hyps_pat,concl_pat) term) status
227 mk_tactic (fold_tac ~reduction ~term ~pattern)