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/.
34 (** perform debugging output? *)
36 let debug_print = fun _ -> ()
38 (** debugging print *)
39 let info s = debug_print (lazy ("TACTICALS INFO: " ^ (Lazy.force s)))
41 module PET = ProofEngineTypes
44 let id_tac (proof,goal) =
45 let _, metasenv, _, _ = proof in
46 let _, _, _ = CicUtil.lookup_meta goal metasenv in
52 let fail_tac (proof,goal) =
53 let _, metasenv, _, _ = proof in
54 let _, _, _ = CicUtil.lookup_meta goal metasenv in
55 raise (PET.Fail (lazy "fail tactical"))
57 PET.mk_tactic fail_tac
61 (** TODO needed until tactics start returning both opened and closed goals
62 * First part of the function performs a diff among goals ~before tactic
63 * application and ~after it. Second part will add as both opened and closed
64 * the goals which are returned as opened by the tactic *)
65 let goals_diff ~before ~after ~opened =
66 let sort_opened opened add =
67 opened @ (List.filter (fun g -> not (List.mem g opened)) add)
71 (fun remove e -> if List.mem e after then remove else e :: remove)
76 (fun add e -> if List.mem e before then add else e :: add)
80 let add, remove = (* adds goals which have been both opened _and_ closed *)
82 (fun (add, remove) opened_goal ->
83 if List.mem opened_goal before
84 then opened_goal :: add, opened_goal :: remove
89 sort_opened opened add, remove
94 val first: tactics: (string * tactic) list -> tactic
95 val thens: start: tactic -> continuations: tactic list -> tactic
96 val then_: start: tactic -> continuation: tactic -> tactic
97 val seq: tactics: tactic list -> tactic
98 val repeat_tactic: tactic: tactic -> tactic
99 val do_tactic: n: int -> tactic: tactic -> tactic
100 val try_tactic: tactic: tactic -> tactic
101 val solve_tactics: tactics: (string * tactic) list -> tactic
102 val progress_tactic: tactic: tactic -> tactic
104 val tactic: tactic -> tactic
107 val semicolon: tactic
110 val pos: int list -> tactic
113 val focus: int list -> tactic
117 module Make (S: Continuationals.Status) : T with type tactic = S.tactic =
119 module C = Continuationals.Make (S)
121 type tactic = S.tactic
123 let fold_eval status ts =
125 List.fold_left (fun istatus t -> S.focus ~-1 (C.eval t istatus)) status ts
130 naive implementation of ORELSE tactical, try a sequence of tactics in turn:
131 if one fails pass to the next one and so on, eventually raises (failure "no
135 let rec first ~(tactics: (string * tactic) list) istatus =
136 info (lazy "in Tacticals.first");
138 | (descr, tac)::tactics ->
139 info (lazy ("Tacticals.first IS TRYING " ^ descr));
141 let res = S.apply_tactic tac istatus in
142 info (lazy ("Tacticals.first: " ^ descr ^ " succedeed!!!"));
148 | (CicTypeChecker.TypeCheckerFailure _)
149 | (CicUnification.UnificationFailure _) ->
151 "Tacticals.first failed with exn: " ^
152 Printexc.to_string e));
153 first ~tactics istatus
154 | _ -> raise e) (* [e] must not be caught ; let's re-raise it *)
155 | [] -> raise (PET.Fail (lazy "first: no tactics left"))
157 S.mk_tactic (first ~tactics)
159 let thens ~start ~continuations =
163 ([ C.Tactical (C.Tactic start); C.Branch ]
164 @ (HExtlib.list_concat ~sep:[ C.Shift ]
165 (List.map (fun t -> [ C.Tactical (C.Tactic t) ]) continuations))
168 let then_ ~start ~continuation =
171 let ostatus = C.eval (C.Tactical (C.Tactic start)) istatus in
172 let opened,closed = S.goals ostatus in
176 fold_eval (S.focus ~-1 ostatus)
178 C.Tactical (C.Tactic continuation) ])
184 (HExtlib.list_concat ~sep:[ C.Semicolon ]
185 (List.map (fun t -> [ C.Tactical (C.Tactic t) ]) tactics)))
187 (* TODO: x debug: i due tatticali seguenti non contano quante volte hanno
188 * applicato la tattica *)
190 let rec step f output_status opened closed =
192 | [] -> output_status, [], closed
194 let status = S.focus head output_status in
195 let output_status' = f status in
196 let opened', closed' = S.goals output_status' in
197 let output_status'', opened'', closed'' =
198 step f output_status' tail []
200 output_status'', opened' @ opened'', closed' @ closed''
202 (* This keep on appling tactic until it fails. When <tactic> generates more
203 * than one goal, you have a tree of application on the tactic, repeat_tactic
204 * works in depth on this tree *)
205 let repeat_tactic ~tactic =
206 let rec repeat_tactic ~tactic status =
207 info (lazy "in repeat_tactic");
209 let output_status = S.apply_tactic tactic status in
210 let opened, closed = S.goals output_status in
211 let output_status, opened', closed' =
212 step (repeat_tactic ~tactic) output_status opened closed
214 S.set_goals (opened', closed') output_status
218 ("Tacticals.repeat_tactic failed after nth time with exception: "
219 ^ Printexc.to_string e));
220 S.apply_tactic S.id_tactic status
222 S.mk_tactic (repeat_tactic ~tactic)
224 (* This tries to apply tactic n times *)
225 let do_tactic ~n ~tactic =
226 let rec do_tactic ~n ~tactic status =
228 S.apply_tactic S.id_tactic status
231 let output_status = S.apply_tactic tactic status in
232 let opened, closed = S.goals output_status in
233 let output_status, opened', closed' =
234 step (do_tactic ~n:(n-1) ~tactic) output_status opened closed
236 S.set_goals (opened', closed') output_status
240 ("Tacticals.do_tactic failed after nth time with exception: "
241 ^ Printexc.to_string e)) ;
242 S.apply_tactic S.id_tactic status
244 S.mk_tactic (do_tactic ~n ~tactic)
246 (* This applies tactic and catches its possible failure *)
247 let try_tactic ~tactic =
248 let try_tactic status =
249 info (lazy "in Tacticals.try_tactic");
251 S.apply_tactic tactic status
255 "Tacticals.try_tactic failed with exn: " ^ Printexc.to_string e));
256 S.apply_tactic S.id_tactic status
258 S.mk_tactic try_tactic
260 (* This tries tactics until one of them doesn't _solve_ the goal *)
261 (* TODO: si puo' unificare le 2(due) chiamate ricorsive? *)
262 let solve_tactics ~tactics =
263 let rec solve_tactics ~(tactics: (string * tactic) list) status =
264 info (lazy "in Tacticals.solve_tactics");
266 | (descr, currenttactic)::moretactics ->
267 info (lazy ("Tacticals.solve_tactics is trying " ^ descr));
269 let output_status = S.apply_tactic currenttactic status in
270 let opened, closed = S.goals output_status in
272 | [] -> info (lazy ("Tacticals.solve_tactics: " ^ descr ^
273 " solved the goal!!!"));
274 (* questo significa che non ci sono piu' goal, o che current_tactic non ne ha
275 * aperti di nuovi? (la 2a!) ##### nel secondo caso basta per dire che
276 * solve_tactics has solved the goal? (si!) *)
278 | _ -> info (lazy ("Tacticals.solve_tactics: try the next tactic"));
279 solve_tactics ~tactics:(moretactics) status
283 "Tacticals.solve_tactics: current tactic failed with exn: "
284 ^ Printexc.to_string e));
285 solve_tactics ~tactics status
289 (lazy "solve_tactics cannot solve the goal"))
291 S.mk_tactic (solve_tactics ~tactics)
293 let progress_tactic ~tactic =
294 let msg = lazy "Failed to progress" in
295 let get_sequent (proof, goal) =
296 let (_, metasenv, _, _) = proof in
297 let _, context, ty = CicUtil.lookup_meta goal metasenv in
300 let progress_tactic ist =
301 let before = get_sequent (S.get_status ist) in
302 let ost = S.apply_tactic tactic ist in
303 match S.goals ost with
304 | [goal], _ when before <> get_sequent (S.get_proof ost, goal) ->
308 S.mk_tactic progress_tactic
310 let cont_proxy cont = S.mk_tactic (C.eval cont)
312 let tactic t = cont_proxy (C.Tactical (C.Tactic t))
313 let skip = cont_proxy (C.Tactical C.Skip)
314 let dot = cont_proxy C.Dot
315 let semicolon = cont_proxy C.Semicolon
316 let branch = cont_proxy C.Branch
317 let shift = cont_proxy C.Shift
318 let pos i = cont_proxy (C.Pos i)
319 let wildcard = cont_proxy C.Wildcard
320 let merge = cont_proxy C.Merge
321 let focus goals = cont_proxy (C.Focus goals)
322 let unfocus = cont_proxy C.Unfocus
325 module ProofEngineStatus =
327 module Stack = Continuationals.Stack
330 PET.status (* (proof, goal) *) * Stack.t
333 (PET.proof * goal list * goal list) * Stack.t
335 type tactic = PET.tactic
337 let id_tactic = id_tac
341 (fun (proof, goal) as pstatus ->
342 let stack = [ [ 1, Stack.Open goal ], [], [], `NoTag ] in
343 let istatus = pstatus, stack in
344 (* let ostatus = f istatus in
345 let ((proof, opened, _), _) = ostatus in *)
346 let (proof, _, _), stack = f istatus in
347 let opened = Continuationals.Stack.open_goals stack in
350 let apply_tactic tac ((proof, _) as pstatus, stack) =
351 let proof', opened = PET.apply_tactic tac pstatus in
352 (* let _ = prerr_endline ("goal aperti dalla tattica " ^ String.concat "," (List.map string_of_int opened)) in *)
353 let before = PET.goals_of_proof proof in
354 let after = PET.goals_of_proof proof' in
355 let opened_goals, closed_goals = goals_diff ~before ~after ~opened in
356 (* let _ = prerr_endline ("goal ritornati dalla tattica " ^ String.concat "," (List.map string_of_int opened_goals)) in *)
357 (proof', opened_goals, closed_goals), stack
359 let get_status (status, _) = status
360 let get_proof ((proof, _, _), _) = proof
362 let goals ((_, opened, closed), _) = opened, closed
363 let set_goals (opened, closed) ((proof, _, _), stack) =
364 (proof, opened, closed), stack
367 let set_stack stack (opstatus, _) = opstatus, stack
369 let inject ((proof, _), stack) = ((proof, [], []), stack)
370 let focus goal ((proof, _, _), stack) = (proof, goal), stack
373 module ProofEngineTacticals = Make (ProofEngineStatus)
375 include ProofEngineTacticals