1 (* Copyright (C) 2000, 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/.
26 open ProofEngineHelpers
29 (* proof assistant status *)
31 let proof = ref (None : proof option)
32 let goal = ref (None : goal option)
34 let apply_tactic ~tactic:tactic =
35 match !proof,!goal with
37 | _,None -> assert false
38 | Some proof', Some goal' ->
39 let (newproof, newgoals) = tactic ~status:(proof', goal') in
40 proof := Some newproof;
42 (match newgoals, newproof with
43 goal::_, _ -> Some goal
44 | [], (_,(goal,_,_)::_,_,_) ->
45 (* the tactic left no open goal ; let's choose the first open goal *)
46 (*CSC: here we could implement and use a proof-tree like notion... *)
50 (* metas_in_term term *)
51 (* Returns the ordered list of the metas that occur in [term]. *)
52 (* Duplicates are removed. The implementation is not very efficient. *)
53 let metas_in_term term =
62 | C.Cast (te,ty) -> (aux te) @ (aux ty)
63 | C.Prod (_,s,t) -> (aux s) @ (aux t)
64 | C.Lambda (_,s,t) -> (aux s) @ (aux t)
65 | C.LetIn (_,s,t) -> (aux s) @ (aux t)
66 | C.Appl l -> List.fold_left (fun i t -> i @ (aux t)) [] l
69 | C.MutConstruct _ -> []
70 | C.MutCase (sp,cookingsno,i,outt,t,pl) ->
71 (aux outt) @ (aux t) @
72 (List.fold_left (fun i t -> i @ (aux t)) [] pl)
74 List.fold_left (fun i (_,_,ty,bo) -> i @ (aux bo) @ (aux ty)) [] fl
76 List.fold_left (fun i (_,ty,bo) -> i @ (aux bo) @ (aux ty)) [] fl
78 let metas = aux term in
79 let rec elim_duplicates =
83 he::(elim_duplicates (List.filter (function el -> he <> el) tl))
87 (* perforate context term ty *)
88 (* replaces the term [term] in the proof with a new metavariable whose type *)
89 (* is [ty]. [context] must be the context of [term] in the whole proof. This *)
90 (* could be easily computed; so the only reasons to have it as an argument *)
91 (* are efficiency reasons. *)
92 let perforate context term ty =
96 | Some (uri,metasenv,bo,gty as proof') ->
97 let newmeta = new_meta proof' in
98 (* We push the new meta at the end of the list for pretty-printing *)
99 (* purposes: in this way metas are ordered. *)
100 let metasenv' = metasenv@[newmeta,context,ty] in
101 let irl = identity_relocation_list_for_metavariable context in
102 (*CSC: Bug: se ci sono due term uguali nella prova dovrei bucarne uno solo!!!*)
104 ProofEngineReduction.replace (==) term (C.Meta (newmeta,irl)) bo
106 (* It may be possible that some metavariables occurred only in *)
107 (* the term we are perforating and they now occurs no more. We *)
108 (* get rid of them, collecting the really useful metavariables *)
110 (*CSC: Bug: una meta potrebbe non comparire in bo', ma comparire nel tipo *)
111 (*CSC: di una metavariabile che compare in bo'!!!!!!! *)
112 let newmetas = metas_in_term bo' in
114 List.filter (function (n,_,_) -> List.mem n newmetas) metasenv'
116 proof := Some (uri,metasenv'',bo',gty) ;
120 (************************************************************)
121 (* Some easy tactics. *)
122 (************************************************************)
124 (*CSC: generatore di nomi? Chiedere il nome? *)
126 let next_fresh_index = ref 0
129 incr next_fresh_index ;
130 "fresh_name" ^ string_of_int !next_fresh_index
132 let reduction_tactic reduction_function term =
133 let curi,metasenv,pbo,pty =
136 | Some (curi,metasenv,bo,ty) -> curi,metasenv,bo,ty
138 let metano,context,ty =
141 | Some metano -> List.find (function (m,_,_) -> m=metano) metasenv
143 (* We don't know if [term] is a subterm of [ty] or a subterm of *)
144 (* the type of one metavariable. So we replace it everywhere. *)
145 (*CSC: Il vero problema e' che non sapendo dove sia il term non *)
146 (*CSC: sappiamo neppure quale sia il suo contesto!!!! Insomma, *)
147 (*CSC: e' meglio prima cercare il termine e scoprirne il *)
148 (*CSC: contesto, poi ridurre e infine rimpiazzare. *)
149 let replace context where=
150 (*CSC: Per il momento se la riduzione fallisce significa solamente che *)
151 (*CSC: siamo nel contesto errato. Metto il try, ma che schifo!!!! *)
152 (*CSC: Anche perche' cosi' catturo anche quelle del replace che non dovrei *)
154 let term' = reduction_function context term in
155 ProofEngineReduction.replace ~equality:(==) ~what:term ~with_what:term'
160 let ty' = replace context ty in
163 (fun entry context ->
165 Some (name,Cic.Def t) ->
166 (Some (name,Cic.Def (replace context t)))::context
167 | Some (name,Cic.Decl t) ->
168 (Some (name,Cic.Decl (replace context t)))::context
169 | None -> None::context
175 (n,_,_) when n = metano -> (metano,context',ty')
179 proof := Some (curi,metasenv',pbo,pty) ;
182 (* Reduces [term] using [reduction_function] in the current scratch goal [ty] *)
183 let reduction_tactic_in_scratch reduction_function term ty =
187 | Some (_,metasenv,_,_) -> metasenv
189 let metano,context,_ =
192 | Some metano -> List.find (function (m,_,_) -> m=metano) metasenv
194 let term' = reduction_function context term in
195 ProofEngineReduction.replace
196 ~equality:(==) ~what:term ~with_what:term' ~where:ty
198 let whd = reduction_tactic CicReduction.whd
199 let reduce = reduction_tactic ProofEngineReduction.reduce
200 let simpl = reduction_tactic ProofEngineReduction.simpl
202 let whd_in_scratch = reduction_tactic_in_scratch CicReduction.whd
203 let reduce_in_scratch =
204 reduction_tactic_in_scratch ProofEngineReduction.reduce
205 let simpl_in_scratch =
206 reduction_tactic_in_scratch ProofEngineReduction.simpl
208 (* It is just the opposite of whd. The code should probably be merged. *)
210 let curi,metasenv,pbo,pty =
213 | Some (curi,metasenv,bo,ty) -> curi,metasenv,bo,ty
215 let metano,context,ty =
218 | Some metano -> List.find (function (m,_,_) -> m=metano) metasenv
220 let term' = CicReduction.whd context term in
221 (* We don't know if [term] is a subterm of [ty] or a subterm of *)
222 (* the type of one metavariable. So we replace it everywhere. *)
223 (*CSC: ma si potrebbe ovviare al problema. Ma non credo *)
224 (*CSC: che si guadagni nulla in fatto di efficienza. *)
226 ProofEngineReduction.replace
228 (ProofEngineReduction.syntactic_equality ~alpha_equivalence:false)
229 ~what:term' ~with_what:term
231 let ty' = replace ty in
235 Some (n,Cic.Decl t) -> Some (n,Cic.Decl (replace t))
236 | Some (n,Cic.Def t) -> Some (n,Cic.Def (replace t))
243 (n,_,_) when n = metano -> (metano,context',ty')
247 proof := Some (curi,metasenv',pbo,pty) ;
250 (************************************************************)
251 (* Tactics defined elsewhere *)
252 (************************************************************)
254 (* primitive tactics *)
256 let apply term = apply_tactic (PrimitiveTactics.apply_tac ~term)
258 apply_tactic (PrimitiveTactics.intros_tac ~name:(fresh_name ()))
259 let cut term = apply_tactic (PrimitiveTactics.cut_tac ~term)
260 let letin term = apply_tactic (PrimitiveTactics.letin_tac ~term)
261 let exact term = apply_tactic (PrimitiveTactics.exact_tac ~term)
262 let elim_intros_simpl term =
263 apply_tactic (PrimitiveTactics.elim_intros_simpl_tac ~term)
264 let change ~goal_input:what ~input:with_what =
265 apply_tactic (PrimitiveTactics.change_tac ~what ~with_what)
267 (* structural tactics *)
269 let clearbody hyp = apply_tactic (ProofEngineStructuralRules.clearbody ~hyp)
270 let clear hyp = apply_tactic (ProofEngineStructuralRules.clear ~hyp)
274 let elim_type term = apply_tactic (Ring.elim_type_tac ~term)
275 let ring () = apply_tactic Ring.ring_tac
276 let fourier () = apply_tactic FourierR.fourier_tac
277 let rewrite_simpl term = apply_tactic (FourierR.rewrite_simpl_tac ~term)