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/.
32 (** perform debugging output? *)
35 (** debugging print *)
38 prerr_endline ("TACTICALS WARNING: " ^ s)
43 (* not a tactical, but it's used only here (?) *)
45 let id_tac ~status:(proof,goal) =
50 naive implementation of ORELSE tactical, try a sequence of tactics in turn:
51 if one fails pass to the next one and so on, eventually raises (failure "no
53 TODO warning: not tail recursive due to "try .. with" boxing
55 Galla: is this exactly Coq's "First"?
58 let rec try_tactics ~(tactics: (string * tactic) list) ~status =
59 warn "in Tacticals.try_tactics";
61 | (descr, tac)::tactics ->
62 warn ("Tacticals.try_tactics IS TRYING " ^ descr);
64 let res = tac ~status in
65 warn ("Tacticals.try_tactics: " ^ descr ^ " succedeed!!!");
71 | (CicTypeChecker.TypeCheckerFailure (CicTypeChecker.NotWellTyped _))
72 | (CicUnification.UnificationFailed) ->
74 "Tacticals.try_tactics failed with exn: " ^
75 Printexc.to_string e);
76 try_tactics ~tactics ~status
77 | _ -> raise e (* [e] must not be caught ; let's re-raise it *)
79 | [] -> raise (Fail "try_tactics: no tactics left")
83 let thens ~start ~continuations ~status =
84 let (proof,new_goals) = start ~status in
87 (fun (proof,goals) goal tactic ->
88 let (proof',new_goals') = tactic ~status:(proof,goal) in
89 (proof',goals@new_goals')
90 ) (proof,[]) new_goals continuations
92 Invalid_argument _ -> raise (Fail "thens: wrong number of new goals")
96 let then_ ~start ~continuation ~status =
97 let (proof,new_goals) = start ~status in
99 (fun (proof,goals) goal ->
100 let (proof',new_goals') = continuation ~status:(proof,goal) in
101 (proof',goals@new_goals')
102 ) (proof,[]) new_goals
106 (* si suppone che tutte le tattiche sollevino solamente Fail? *)
109 (* TODO: x debug: i due tatticali seguenti non contano quante volte hanno applicato la tattica *)
111 (* This keep on appling tactic until it fails *)
112 (* When <tactic> generates more than one goal, you have a tree of
113 application on the tactic, repeat_tactic works in depth on this tree *)
115 let rec repeat_tactic ~tactic ~status =
116 warn "in repeat_tactic";
117 try let (proof, goallist) = tactic ~status in
118 let rec step proof goallist =
122 let (proof', goallist') = repeat_tactic ~tactic ~status:(proof, head) in
123 let (proof'', goallist'') = step proof' tail in
124 proof'', goallist'@goallist''
129 warn ("Tacticals.repeat_tactic failed after nth time with exception: " ^ Printexc.to_string e) ;
135 (* This tries to apply tactic n times *)
137 let rec do_tactic ~n ~tactic ~status =
140 let (proof, goallist) =
141 if (n>0) then tactic ~status
142 else id_tac ~status in
143 (* else (proof, []) in *)(* perche' non va bene questo? stessa questione di ##### ? *)
144 let rec step proof goallist =
148 let (proof', goallist') = do_tactic ~n:(n-1) ~tactic ~status:(proof, head) in
149 let (proof'', goallist'') = step proof' tail in
150 proof'', goallist'@goallist''
155 warn ("Tacticals.do_tactic failed after nth time with exception: " ^ Printexc.to_string e) ;
161 (* This applies tactic and catches its possible failure *)
163 let rec try_tactic ~tactic ~status =
164 warn "in Tacticals.try_tactic";
169 warn ( "Tacticals.try_tactic failed with exn: " ^ Printexc.to_string e);
174 (* This tries tactics until one of them doesn't _solve_ the goal *)
175 (* TODO: si puo' unificare le 2(due) chiamate ricorsive? *)
177 let rec solve_tactics ~(tactics: (string * tactic) list) ~status =
178 warn "in Tacticals.solve_tactics";
180 | (descr, currenttactic)::moretactics ->
181 warn ("Tacticals.solve_tactics is trying " ^ descr);
183 let (proof, goallist) = currenttactic ~status in
185 [] -> warn ("Tacticals.solve_tactics: " ^ descr ^ " solved the goal!!!");
186 (* questo significa che non ci sono piu' goal, o che current_tactic non ne ha aperti di nuovi? (la 2a!) ##### *)
187 (* nel secondo caso basta per dire che solve_tactics has solved the goal? (si!) *)
189 | _ -> warn ("Tacticals.solve_tactics: try the next tactic");
190 solve_tactics ~tactics:(moretactics) ~status
193 warn ("Tacticals.solve_tactics: current tactic failed with exn: " ^ Printexc.to_string e);
194 solve_tactics ~tactics ~status
196 | [] -> raise (Fail "solve_tactics cannot solve the goal");
209 (** tattica di prova per debuggare i tatticali *)
211 let thens' ~start ~continuations ~status =
212 let (proof,new_goals) = start ~status in
215 (fun (proof,goals) goal tactic ->
216 let (proof',new_goals') = tactic ~status:(proof,goal) in
217 (proof',goals@new_goals')
218 ) (proof,[]) new_goals continuations
220 Invalid_argument _ -> raise (Fail "thens: wrong number of new goals")
223 let apply_T_tac ~status:((proof,goal) as status) =
224 let curi,metasenv,pbo,pty = proof in
225 let metano,context,gty = List.find (function (m,_,_) -> m=goal) metasenv in
230 | (Some (Cic.Name name,_))::_ when name = "T" -> n
231 | _::tl -> find (n+1) tl
233 prerr_endline ("eseguo find");
236 prerr_endline ("eseguo apply");
237 apply_tac ~term:(Cic.Rel rel) ~status
243 ~start:(intros_tac ~name:"pippo")
244 ~continuation:(thens' ~start:apply_T_tac ~continuations:[id_tac ; apply_tac ~term:(Cic.Rel 1)]))