]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/grafite/grafiteAstPp.ml
56ac59c7a5d956a456e04139e47af682b80b6858
[helm.git] / helm / software / components / grafite / grafiteAstPp.ml
1 (* Copyright (C) 2004, 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://helm.cs.unibo.it/
24  *)
25
26 (* $Id$ *)
27
28 open GrafiteAst
29
30 let tactical_terminator = ""
31 let tactic_terminator = tactical_terminator
32 let command_terminator = tactical_terminator
33
34 let pp_idents idents = 
35    let map = function Some s -> s | None -> "_" in
36    "(" ^ String.concat " " (List.map map idents) ^ ")"
37 let pp_hyps idents = String.concat " " idents
38
39 let pp_reduction_kind ~term_pp = function
40   | `Normalize -> "normalize"
41   | `Reduce -> "reduce"
42   | `Simpl -> "simplify"
43   | `Unfold (Some t) -> "unfold " ^ term_pp t
44   | `Unfold None -> "unfold"
45   | `Whd -> "whd"
46  
47 let pp_tactic_pattern ~map_unicode_to_tex ~term_pp ~lazy_term_pp (what, hyp, goal) = 
48   if what = None && hyp = [] && goal = None then "" else 
49   let what_text =
50     match what with
51     | None -> ""
52     | Some t -> Printf.sprintf "in match (%s) " (lazy_term_pp t) in
53   let hyp_text =
54     String.concat " "
55       (List.map (fun (name, p) -> Printf.sprintf "%s:(%s)" name (term_pp p)) hyp) in
56   let goal_text =
57     match goal with
58     | None -> ""
59     | Some t ->
60        let vdash = if map_unicode_to_tex then "\\vdash" else "⊢" in
61         Printf.sprintf "%s (%s)" vdash (term_pp t)
62   in
63    Printf.sprintf "%sin %s%s" what_text hyp_text goal_text
64
65 let pp_intros_specs s = function
66    | None, []         -> ""
67    | Some num, []     -> Printf.sprintf " %s%i" s num
68    | None, idents     -> Printf.sprintf " %s%s" s (pp_idents idents)
69    | Some num, idents -> Printf.sprintf " %s%i %s" s num (pp_idents idents)
70
71 let pp_terms ~term_pp terms = String.concat ", " (List.map term_pp terms)
72
73 let opt_string_pp = function
74    | None -> ""
75    | Some what -> what ^ " "
76  
77 let pp_auto_params ~term_pp (univ, params) = 
78    String.concat " " 
79      (List.map (fun (k,v) -> if v <> "" then k ^ "=" ^ v else k) params) ^
80    if univ <> [] then 
81      (if params <> [] then " " else "") ^ "by " ^ 
82      String.concat " " (List.map term_pp univ)
83    else ""
84 ;;
85
86 let pp_just ~term_pp =
87  function
88     `Term term -> "exact " ^ term_pp term
89   | `Auto params -> pp_auto_params ~term_pp params
90 ;;
91
92 let rec pp_tactic ~map_unicode_to_tex ~term_pp ~lazy_term_pp =
93  let pp_terms = pp_terms ~term_pp in
94  let pp_tactics = pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp in
95  let pp_reduction_kind = pp_reduction_kind ~term_pp in
96  let pp_tactic_pattern =
97   pp_tactic_pattern ~map_unicode_to_tex ~lazy_term_pp ~term_pp in
98  let rec pp_tactic =
99   function
100   (* Higher order tactics *)
101   | Do (_, count, tac) ->
102       Printf.sprintf "do %d %s" count (pp_tactic tac)
103   | Repeat (_, tac) -> "repeat " ^ pp_tactic tac
104   | Seq (_, tacs) -> pp_tactics ~sep:"; " tacs
105   | Then (_, tac, tacs) ->
106       Printf.sprintf "%s; [%s]" (pp_tactic tac)
107         (pp_tactics ~sep:" | " tacs)
108   | First (_, tacs) ->
109      Printf.sprintf "tries [%s]" (pp_tactics ~sep:" | " tacs)
110   | Try (_, tac) -> "try " ^ pp_tactic tac
111   | Solve (_, tac) ->
112      Printf.sprintf "solve [%s]" (pp_tactics ~sep:" | " tac)
113   | Progress (_, tac) -> "progress " ^ pp_tactic tac
114   (* First order tactics *)
115   | Absurd (_, term) -> "absurd" ^ term_pp term
116   | Apply (_, term) -> "apply " ^ term_pp term
117   | ApplyRule (_, term) -> "apply rule " ^ term_pp term
118   | ApplyP (_, term) -> "applyP " ^ term_pp term
119   | ApplyS (_, term, params) ->
120      "applyS " ^ term_pp term ^ pp_auto_params ~term_pp params
121   | AutoBatch (_,params) -> "autobatch " ^ 
122       pp_auto_params ~term_pp params
123   | Assumption _ -> "assumption"
124   | Cases (_, term, pattern, specs) -> 
125       Printf.sprintf "cases %s %s%s" 
126       (term_pp term)
127       (pp_tactic_pattern pattern)
128       (pp_intros_specs "names " specs)
129   | Change (_, where, with_what) ->
130       Printf.sprintf "change %s with %s" (pp_tactic_pattern where) (lazy_term_pp with_what)
131   | Clear (_,ids) -> Printf.sprintf "clear %s" (pp_hyps ids)
132   | ClearBody (_,id) -> Printf.sprintf "clearbody %s" (pp_hyps [id])
133   | Constructor (_,n) -> "constructor " ^ string_of_int n
134   | Compose (_,t1, t2, times, intro_specs) -> 
135       Printf.sprintf "compose %s%s %s%s" 
136         (if times > 0 then string_of_int times ^ " " else "")
137         (term_pp t1) (match t2 with None -> "" | Some t2 -> "with "^term_pp t2)
138         (pp_intros_specs " as " intro_specs)
139   | Contradiction _ -> "contradiction"
140   | Cut (_, ident, term) ->
141      "cut " ^ term_pp term ^
142       (match ident with None -> "" | Some id -> " as " ^ id)
143   | Decompose (_, names) ->
144       Printf.sprintf "decompose%s" 
145       (pp_intros_specs "names " (None, names)) 
146   | Demodulate (_, params) -> "demodulate " ^ pp_auto_params ~term_pp params
147   | Destruct (_, None) -> "destruct" 
148   | Destruct (_, Some terms) -> "destruct " ^ pp_terms terms
149   | Elim (_, what, using, pattern, specs) ->
150       Printf.sprintf "elim %s%s %s%s" 
151       (term_pp what)
152       (match using with None -> "" | Some term -> " using " ^ term_pp term)
153       (pp_tactic_pattern pattern)
154       (pp_intros_specs "names " specs) 
155   | ElimType (_, term, using, specs) ->
156       Printf.sprintf "elim type %s%s%s" 
157       (term_pp term)
158       (match using with None -> "" | Some term -> " using " ^ term_pp term)
159       (pp_intros_specs "names " specs)
160   | Exact (_, term) -> "exact " ^ term_pp term
161   | Exists _ -> "exists"
162   | Fold (_, kind, term, pattern) ->
163       Printf.sprintf "fold %s %s %s" (pp_reduction_kind kind)
164        (lazy_term_pp term) (pp_tactic_pattern pattern)
165   | FwdSimpl (_, hyp, names) -> 
166       Printf.sprintf "fwd %s%s" hyp (pp_intros_specs "names " (None, names))
167   | Generalize (_, pattern, ident) ->
168      Printf.sprintf "generalize %s%s" (pp_tactic_pattern pattern)
169       (match ident with None -> "" | Some id -> " as " ^ id)
170   | Fail _ -> "fail"
171   | Fourier _ -> "fourier"
172   | IdTac _ -> "id"
173   | Intros (_, specs) -> Printf.sprintf "intros%s" (pp_intros_specs "" specs)
174   | Inversion (_, term) -> "inversion " ^ term_pp term
175   | LApply (_, linear, level_opt, terms, term, ident_opt) -> 
176       Printf.sprintf "lapply %s%s%s%s%s" 
177         (if linear then " linear " else "")
178         (match level_opt with None -> "" | Some i -> " depth = " ^ string_of_int i ^ " ")  
179         (term_pp term) 
180         (match terms with [] -> "" | _ -> " to " ^ pp_terms terms)
181         (match ident_opt with None -> "" | Some ident -> " as " ^ ident)
182   | Left _ -> "left"
183   | LetIn (_, term, ident) -> 
184      Printf.sprintf "letin %s \\def %s" ident (term_pp term)
185   | Reduce (_, kind, pat) ->
186       Printf.sprintf "%s %s" (pp_reduction_kind kind) (pp_tactic_pattern pat)
187   | Reflexivity _ -> "reflexivity"
188   | Replace (_, pattern, t) ->
189       Printf.sprintf "replace %s with %s" (pp_tactic_pattern pattern) (lazy_term_pp t)
190   | Rewrite (_, pos, t, pattern, names) -> 
191       Printf.sprintf "rewrite %s %s %s%s" 
192         (if pos = `LeftToRight then ">" else "<")
193         (term_pp t)
194         (pp_tactic_pattern pattern)
195         (if names = [] then "" else " as " ^ pp_idents names)
196   | Right _ -> "right"
197   | Ring _ -> "ring"
198   | Split _ -> "split"
199   | Symmetry _ -> "symmetry"
200   | Transitivity (_, term) -> "transitivity " ^ term_pp term
201   (* Tattiche Aggiunte *)
202   | Assume (_, ident , term) -> "assume" ^ ident ^ ":" ^ term_pp term 
203   | Suppose (_, term, ident,term1) -> "suppose" ^ term_pp term ^ "("  ^ ident ^ ")" ^ (match term1 with None -> " " | Some term1 -> term_pp term1)
204   | Bydone (_, just) ->  pp_just ~term_pp just ^ "done"
205   | By_just_we_proved (_, just, term1, ident, term2) -> pp_just ~term_pp just  ^ "we proved" ^ term_pp term1 ^ (match ident with None -> "" | Some ident -> "(" ^ident^ ")") ^
206        (match term2 with  None -> " " | Some term2 -> term_pp term2)
207   | We_need_to_prove (_, term, ident, term1) -> "we need to prove" ^ term_pp term ^ (match ident with None -> "" | Some ident -> "(" ^ ident ^ ")") ^ (match term1 with None -> " " | Some term1 -> term_pp term1)
208   | We_proceed_by_cases_on (_, term, term1) -> "we proceed by cases on" ^ term_pp term ^ "to prove" ^ term_pp term1
209   | We_proceed_by_induction_on (_, term, term1) -> "we proceed by induction on" ^ term_pp term ^ "to prove" ^ term_pp term1
210   | Byinduction (_, term, ident) -> "by induction hypothesis we know" ^ term_pp term ^ "(" ^ ident ^ ")"
211   | Thesisbecomes (_, term) -> "the thesis becomes " ^ term_pp term
212   | ExistsElim (_, just, ident, term, ident1, term1) -> pp_just ~term_pp just ^ "let " ^ ident ^ ":" ^ term_pp term ^ "such that " ^ lazy_term_pp term1 ^ "(" ^ ident1 ^ ")"
213   | AndElim (_, just, ident1, term1, ident2, term2) -> pp_just ~term_pp just ^ "we have " ^ term_pp term1 ^ " (" ^ ident1 ^ ") " ^ "and " ^ term_pp term2 ^ " (" ^ ident2 ^ ")" 
214   | RewritingStep (_, term, term1, term2, cont) -> 
215       (match term with 
216       | None -> " " 
217       | Some (None,term) -> "conclude " ^ term_pp term 
218       | Some (Some name,term) -> 
219           "obtain (" ^ name ^ ") " ^ term_pp term) 
220       ^ "=" ^
221       term_pp term1 ^ 
222       (match term2 with 
223       | `Auto params -> pp_auto_params ~term_pp params
224       | `Term term2 -> " exact " ^ term_pp term2 
225       | `Proof -> " proof"
226       | `SolveWith term -> " using " ^ term_pp term)
227       ^ (if cont then " done" else "")
228   | Case (_, id, args) ->
229      "case" ^ id ^
230        String.concat " "
231         (List.map (function (id,term) -> "(" ^ id ^ ": " ^ term_pp term ^  ")")
232           args)
233  in pp_tactic
234
235 and pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~sep tacs =
236   String.concat sep
237    (List.map (pp_tactic ~map_unicode_to_tex ~lazy_term_pp ~term_pp) tacs)
238
239  let pp_search_kind = function
240   | `Locate -> "locate"
241   | `Hint -> "hint"
242   | `Match -> "match"
243   | `Elim -> "elim"
244   | `Instance -> "instance"
245
246 let pp_arg ~term_pp arg = 
247   let s = term_pp arg in
248    if s = "" || (s.[0] = '(' && s.[String.length s - 1] = ')') then
249      (* _nice_ heuristic *)
250      s
251    else
252      "(" ^ s ^ ")"
253   
254 let pp_macro ~term_pp ~lazy_term_pp = 
255   let term_pp = pp_arg ~term_pp in
256   let style_pp = function
257      | Declarative         -> ""
258      | Procedural None     -> "procedural "
259      | Procedural (Some i) -> Printf.sprintf "procedural %u " i
260   in
261   let prefix_pp prefix = 
262      if prefix = "" then "" else Printf.sprintf " \"%s\"" prefix
263   in
264   let flavour_pp = function
265      | None                   -> ""
266      | Some `Definition       -> " as definition"
267      | Some `MutualDefinition -> " as mutual"
268      | Some `Fact             -> " as fact"
269      | Some `Lemma            -> " as lemma"
270      | Some `Remark           -> " as remark"
271      | Some `Theorem          -> " as theorem"
272      | Some `Variant          -> " as variant"
273      | Some `Axiom            -> " as axiom"
274   in
275   let pp_reduction_kind = pp_reduction_kind ~term_pp:lazy_term_pp in
276   function 
277   (* Whelp *)
278   | WInstance (_, term) -> "whelp instance " ^ term_pp term
279   | WHint (_, t) -> "whelp hint " ^ term_pp t
280   | WLocate (_, s) -> "whelp locate \"" ^ s ^ "\""
281   | WElim (_, t) -> "whelp elim " ^ term_pp t
282   | WMatch (_, term) -> "whelp match " ^ term_pp term
283   (* real macros *)
284   | Eval (_, kind, term) -> 
285       Printf.sprintf "eval %s on %s" (pp_reduction_kind kind) (term_pp term) 
286   | Check (_, term) -> Printf.sprintf "check %s" (term_pp term)
287   | Hint (_, true) -> "hint rewrite"
288   | Hint (_, false) -> "hint"
289   | AutoInteractive (_,params) -> "auto " ^ pp_auto_params ~term_pp params
290   | Inline (_, style, suri, prefix, flavour) ->  
291       Printf.sprintf "inline %s\"%s\"%s%s" (style_pp style) suri (prefix_pp prefix) (flavour_pp flavour) 
292
293 let pp_associativity = function
294   | Gramext.LeftA -> "left associative"
295   | Gramext.RightA -> "right associative"
296   | Gramext.NonA -> "non associative"
297
298 let pp_precedence i = Printf.sprintf "with precedence %d" i
299
300 let pp_dir_opt = function
301   | None -> ""
302   | Some `LeftToRight -> "> "
303   | Some `RightToLeft -> "< "
304
305 let pp_default what uris = 
306   Printf.sprintf "default \"%s\" %s" what
307     (String.concat " " (List.map UriManager.string_of_uri uris))
308
309 let pp_coercion ~term_pp t do_composites arity saturations=
310    Printf.sprintf "coercion %s %d %d %s"
311     (term_pp t) arity saturations
312     (if do_composites then "" else "nocomposites")
313     
314 let pp_command ~term_pp ~obj_pp = function
315   | Index (_,_,uri) -> "Indexing " ^ UriManager.string_of_uri uri
316   | Coercion (_, t, do_composites, i, j) ->
317      pp_coercion ~term_pp t do_composites i j
318   | PreferCoercion (_,t) -> 
319      "prefer coercion " ^ term_pp t
320   | UnificationHint (_,t, n) -> 
321       "unification hint " ^ string_of_int n ^ " " ^ term_pp t
322   | Default (_,what,uris) -> pp_default what uris
323   | Drop _ -> "drop"
324   | Include (_,path) -> "include \"" ^ path ^ "\""
325   | Obj (_,obj) -> obj_pp obj
326   | Qed _ -> "qed"
327   | Relation (_,id,a,aeq,refl,sym,trans) ->
328      "relation " ^ term_pp aeq ^ " on " ^ term_pp a ^
329      (match refl with
330          Some r -> " reflexivity proved by " ^ term_pp r
331        | None -> "") ^
332      (match sym with
333          Some r -> " symmetry proved by " ^ term_pp r
334        | None -> "") ^
335      (match trans with
336          Some r -> " transitivity proved by " ^ term_pp r
337        | None -> "")
338   | Print (_,s) -> "print " ^ s
339   | Set (_, name, value) -> Printf.sprintf "set \"%s\" \"%s\"" name value
340
341 let pp_punctuation_tactical ~term_pp ~lazy_term_pp =
342   function
343   | Dot _ -> "."
344   | Semicolon _ -> ";"
345   | Branch _ -> "["
346   | Shift _ -> "|"
347   | Pos (_, i) -> Printf.sprintf "%s:" (String.concat "," (List.map string_of_int i))
348   | Wildcard _ -> "*:"
349   | Merge _ -> "]"
350
351 let pp_non_punctuation_tactical ~term_pp ~lazy_term_pp =
352   function
353   | Focus (_, goals) ->
354       Printf.sprintf "focus %s" (String.concat " " (List.map string_of_int goals))
355   | Unfocus _ -> "unfocus"
356   | Skip _ -> "skip"
357
358 let pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
359   function
360   | Macro (_, macro) -> pp_macro ~term_pp ~lazy_term_pp macro ^ "."
361   | Tactic (_, Some tac, punct) ->
362       pp_tactic ~map_unicode_to_tex ~lazy_term_pp ~term_pp tac
363       ^ pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
364   | Tactic (_, None, punct) ->
365      pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
366   | NonPunctuationTactical (_, tac, punct) ->
367      pp_non_punctuation_tactical ~lazy_term_pp ~term_pp tac
368      ^ pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
369   | Command (_, cmd) -> pp_command ~term_pp ~obj_pp cmd ^ "."
370                       
371 let pp_comment ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
372   function
373   | Note (_,"") -> Printf.sprintf "\n"
374   | Note (_,str) -> Printf.sprintf "\n(* %s *)" str
375   | Code (_,code) ->
376       Printf.sprintf "\n(** %s. **)" (pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp code)
377
378 let pp_statement ~term_pp ~lazy_term_pp ~obj_pp =
379   function
380   | Executable (_, ex) -> pp_executable ~lazy_term_pp ~term_pp ~obj_pp ex 
381   | Comment (_, c) -> pp_comment ~term_pp ~lazy_term_pp ~obj_pp c