]> matita.cs.unibo.it Git - helm.git/blob - components/grafite/grafiteAstPp.ml
eb1a18e5ad00d365ba23e3db088b620ece02ceab
[helm.git] / 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 terms_pp ~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 rec pp_tactic ~map_unicode_to_tex ~term_pp ~lazy_term_pp =
78  let pp_tactics = pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp in
79  let pp_reduction_kind = pp_reduction_kind ~term_pp in
80  let pp_tactic_pattern =
81   pp_tactic_pattern ~map_unicode_to_tex ~lazy_term_pp ~term_pp in
82  let rec pp_tactic =
83   function
84   (* Higher order tactics *)
85   | Do (_, count, tac) ->
86       Printf.sprintf "do %d %s" count (pp_tactic tac)
87   | Repeat (_, tac) -> "repeat " ^ pp_tactic tac
88   | Seq (_, tacs) -> pp_tactics ~sep:"; " tacs
89   | Then (_, tac, tacs) ->
90       Printf.sprintf "%s; [%s]" (pp_tactic tac)
91         (pp_tactics ~sep:" | " tacs)
92   | First (_, tacs) ->
93      Printf.sprintf "tries [%s]" (pp_tactics ~sep:" | " tacs)
94   | Try (_, tac) -> "try " ^ pp_tactic tac
95   | Solve (_, tac) ->
96      Printf.sprintf "solve [%s]" (pp_tactics ~sep:" | " tac)
97   | Progress (_, tac) -> "progress " ^ pp_tactic tac
98   (* First order tactics *)
99   | Absurd (_, term) -> "absurd" ^ term_pp term
100   | Apply (_, term) -> "apply " ^ term_pp term
101   | ApplyS (_, term, params) ->
102      "applyS " ^ term_pp term ^
103       String.concat " " 
104         (List.map (fun (k,v) -> if v <> "" then k ^ "=" ^ v else k) params)
105   | AutoBatch (_,params) -> "auto batch " ^ 
106       String.concat " " 
107         (List.map (fun (k,v) -> if v <> "" then k ^ "=" ^ v else k) params)
108   | Assumption _ -> "assumption"
109   | Cases (_, term, specs) -> Printf.sprintf "cases " ^ term_pp term ^
110       pp_intros_specs "names " specs 
111   | Change (_, where, with_what) ->
112       Printf.sprintf "change %s with %s" (pp_tactic_pattern where) (lazy_term_pp with_what)
113   | Clear (_,ids) -> Printf.sprintf "clear %s" (pp_hyps ids)
114   | ClearBody (_,id) -> Printf.sprintf "clearbody %s" (pp_hyps [id])
115   | Constructor (_,n) -> "constructor " ^ string_of_int n
116   | Compose (_,t1, t2, times, intro_specs) -> 
117       Printf.sprintf "compose %s%s %s%s" 
118         (if times > 0 then string_of_int times ^ " " else "")
119         (term_pp t1) (match t2 with None -> "" | Some t2 -> "with "^term_pp t2)
120         (pp_intros_specs " as " intro_specs)
121   | Contradiction _ -> "contradiction"
122   | Cut (_, ident, term) ->
123      "cut " ^ term_pp term ^
124       (match ident with None -> "" | Some id -> " as " ^ id)
125   | Decompose (_, names) ->
126       Printf.sprintf "decompose%s" 
127       (pp_intros_specs "names " (None, names)) 
128   | Demodulate _ -> "demodulate"
129   | Destruct (_, None) -> "destruct" 
130   | Destruct (_, Some term) -> "destruct " ^ term_pp term
131   | Elim (_, what, using, pattern, specs) ->
132       Printf.sprintf "elim %s%s %s%s" 
133       (term_pp what)
134       (match using with None -> "" | Some term -> " using " ^ term_pp term)
135       (pp_tactic_pattern pattern)
136       (pp_intros_specs "names " specs) 
137   | ElimType (_, term, using, specs) ->
138       Printf.sprintf "elim type %s%s%s" 
139       (term_pp term)
140       (match using with None -> "" | Some term -> " using " ^ term_pp term)
141       (pp_intros_specs "names " specs)
142   | Exact (_, term) -> "exact " ^ term_pp term
143   | Exists _ -> "exists"
144   | Fold (_, kind, term, pattern) ->
145       Printf.sprintf "fold %s %s %s" (pp_reduction_kind kind)
146        (lazy_term_pp term) (pp_tactic_pattern pattern)
147   | FwdSimpl (_, hyp, names) -> 
148       Printf.sprintf "fwd %s%s" hyp (pp_intros_specs "names " (None, names))
149   | Generalize (_, pattern, ident) ->
150      Printf.sprintf "generalize %s%s" (pp_tactic_pattern pattern)
151       (match ident with None -> "" | Some id -> " as " ^ id)
152   | Fail _ -> "fail"
153   | Fourier _ -> "fourier"
154   | IdTac _ -> "id"
155   | Intros (_, specs) -> Printf.sprintf "intros%s" (pp_intros_specs "" specs)
156   | Inversion (_, term) -> "inversion " ^ term_pp term
157   | LApply (_, linear, level_opt, terms, term, ident_opt) -> 
158       Printf.sprintf "lapply %s%s%s%s%s" 
159         (if linear then " linear " else "")
160         (match level_opt with None -> "" | Some i -> " depth = " ^ string_of_int i ^ " ")  
161         (term_pp term) 
162         (match terms with [] -> "" | _ -> " to " ^ terms_pp ~term_pp terms)
163         (match ident_opt with None -> "" | Some ident -> " as " ^ ident)
164   | Left _ -> "left"
165   | LetIn (_, term, ident) -> 
166      Printf.sprintf "letin %s \\def %s" ident (term_pp term)
167   | Reduce (_, kind, pat) ->
168       Printf.sprintf "%s %s" (pp_reduction_kind kind) (pp_tactic_pattern pat)
169   | Reflexivity _ -> "reflexivity"
170   | Replace (_, pattern, t) ->
171       Printf.sprintf "replace %s with %s" (pp_tactic_pattern pattern) (lazy_term_pp t)
172   | Rewrite (_, pos, t, pattern, names) -> 
173       Printf.sprintf "rewrite %s %s %s%s" 
174         (if pos = `LeftToRight then ">" else "<")
175         (term_pp t)
176         (pp_tactic_pattern pattern)
177         (if names = [] then "" else " as " ^ pp_idents names)
178   | Right _ -> "right"
179   | Ring _ -> "ring"
180   | Split _ -> "split"
181   | Symmetry _ -> "symmetry"
182   | Transitivity (_, term) -> "transitivity " ^ term_pp term
183   (* Tattiche Aggiunte *)
184   | Assume (_, ident , term) -> "assume" ^ ident ^ ":" ^ term_pp term 
185   | Suppose (_, term, ident,term1) -> "suppose" ^ term_pp term ^ "("  ^ ident ^ ")" ^ (match term1 with None -> " " | Some term1 -> term_pp term1)
186   | Bydone (_, term) -> "by" ^ (match term with None -> "_" | Some term -> term_pp term) ^ "done"
187   | By_term_we_proved (_, term, term1, ident, term2) -> "by" ^ (match term with None -> "_" | Some term -> term_pp term)  ^ "we proved" ^ term_pp term1 ^ (match ident with None -> "" | Some ident -> "(" ^ident^ ")") ^
188        (match term2 with  None -> " " | Some term2 -> term_pp term2)
189   | 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)
190   | We_proceed_by_cases_on (_, term, term1) -> "we proceed by cases on" ^ term_pp term ^ "to prove" ^ term_pp term1
191   | We_proceed_by_induction_on (_, term, term1) -> "we proceed by induction on" ^ term_pp term ^ "to prove" ^ term_pp term1
192   | Byinduction (_, term, ident) -> "by induction hypothesis we know" ^ term_pp term ^ "(" ^ ident ^ ")"
193   | Thesisbecomes (_, term) -> "the thesis becomes " ^ term_pp term
194   | ExistsElim (_, term0, ident, term, ident1, term1) -> "by " ^ (match term0 with None -> "_" | Some term -> term_pp term) ^ "let " ^ ident ^ ":" ^ term_pp term ^ "such that " ^ lazy_term_pp term1 ^ "(" ^ ident1 ^ ")"
195   | AndElim (_, term, ident1, term1, ident2, term2) -> "by " ^ term_pp term ^ "we have " ^ term_pp term1 ^ " (" ^ ident1 ^ ") " ^ "and " ^ term_pp term2 ^ " (" ^ ident2 ^ ")" 
196   | RewritingStep (_, term, term1, term2, cont) -> (match term with None -> " " | Some (None,term) -> "conclude " ^ term_pp term | Some (Some name,term) -> "obtain (" ^ name ^ ") " ^ term_pp term) ^ "=" ^ term_pp term1 ^ " by " ^ (match term2 with `Auto params -> "_" ^ String.concat " " (List.map (fun (k,v) -> if v <> "" then k ^ "=" ^ v else k) params)  | `Term term2 -> term_pp term2 | `Proof -> "proof") ^ (if cont then " done" else "")
197   | Case (_, id, args) ->
198      "case" ^ id ^
199        String.concat " "
200         (List.map (function (id,term) -> "(" ^ id ^ ": " ^ term_pp term ^  ")")
201           args)
202  in pp_tactic
203
204 and pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~sep tacs =
205   String.concat sep
206    (List.map (pp_tactic ~map_unicode_to_tex ~lazy_term_pp ~term_pp) tacs)
207
208  let pp_search_kind = function
209   | `Locate -> "locate"
210   | `Hint -> "hint"
211   | `Match -> "match"
212   | `Elim -> "elim"
213   | `Instance -> "instance"
214
215 let pp_arg ~term_pp arg = 
216   let s = term_pp arg in
217    if s = "" || (s.[0] = '(' && s.[String.length s - 1] = ')') then
218      (* _nice_ heuristic *)
219      s
220    else
221      "(" ^ s ^ ")"
222   
223 let pp_macro ~term_pp = 
224   let term_pp = pp_arg ~term_pp in
225   let style_pp = function
226      | Declarative         -> ""
227      | Procedural None     -> "procedural "
228      | Procedural (Some i) -> Printf.sprintf "procedural %u " i
229   in
230   let prefix_pp prefix = 
231      if prefix = "" then "" else Printf.sprintf " \"%s\"" prefix
232   in
233   function 
234   (* Whelp *)
235   | WInstance (_, term) -> "whelp instance " ^ term_pp term
236   | WHint (_, t) -> "whelp hint " ^ term_pp t
237   | WLocate (_, s) -> "whelp locate \"" ^ s ^ "\""
238   | WElim (_, t) -> "whelp elim " ^ term_pp t
239   | WMatch (_, term) -> "whelp match " ^ term_pp term
240   (* real macros *)
241   | Check (_, term) -> Printf.sprintf "check %s" (term_pp term)
242   | Hint (_, true) -> "hint rewrite"
243   | Hint (_, false) -> "hint"
244   | AutoInteractive (_,params) -> "auto " ^ 
245       String.concat " " 
246         (List.map (fun (k,v) -> if v <> "" then k ^ "=" ^ v else k) params)
247   | Inline (_, style, suri, prefix) ->  
248       Printf.sprintf "inline %s\"%s\"%s" (style_pp style) suri (prefix_pp prefix) 
249
250 let pp_associativity = function
251   | Gramext.LeftA -> "left associative"
252   | Gramext.RightA -> "right associative"
253   | Gramext.NonA -> "non associative"
254
255 let pp_precedence i = Printf.sprintf "with precedence %d" i
256
257 let pp_dir_opt = function
258   | None -> ""
259   | Some `LeftToRight -> "> "
260   | Some `RightToLeft -> "< "
261
262 let pp_default what uris = 
263   Printf.sprintf "default \"%s\" %s" what
264     (String.concat " " (List.map UriManager.string_of_uri uris))
265
266 let pp_coercion uri do_composites arity saturations=
267    Printf.sprintf "coercion %s %d %d (* %s *)"
268     (UriManager.string_of_uri uri) arity saturations
269     (if do_composites then "compounds" else "no compounds")
270     
271 let pp_command ~term_pp ~obj_pp = function
272   | Index (_,_,uri) -> "Indexing " ^ UriManager.string_of_uri uri
273   | Coercion (_, uri, do_composites, i, j) ->
274      pp_coercion uri do_composites i j
275   | Default (_,what,uris) -> pp_default what uris
276   | Drop _ -> "drop"
277   | Include (_,path) -> "include \"" ^ path ^ "\""
278   | Obj (_,obj) -> obj_pp obj
279   | Qed _ -> "qed"
280   | Relation (_,id,a,aeq,refl,sym,trans) ->
281      "relation " ^ term_pp aeq ^ " on " ^ term_pp a ^
282      (match refl with
283          Some r -> " reflexivity proved by " ^ term_pp r
284        | None -> "") ^
285      (match sym with
286          Some r -> " symmetry proved by " ^ term_pp r
287        | None -> "") ^
288      (match trans with
289          Some r -> " transitivity proved by " ^ term_pp r
290        | None -> "")
291   | Print (_,s) -> "print " ^ s
292   | Set (_, name, value) -> Printf.sprintf "set \"%s\" \"%s\"" name value
293
294 let pp_punctuation_tactical ~term_pp ~lazy_term_pp =
295   function
296   | Dot _ -> "."
297   | Semicolon _ -> ";"
298   | Branch _ -> "["
299   | Shift _ -> "|"
300   | Pos (_, i) -> Printf.sprintf "%s:" (String.concat "," (List.map string_of_int i))
301   | Wildcard _ -> "*:"
302   | Merge _ -> "]"
303
304 let pp_non_punctuation_tactical ~term_pp ~lazy_term_pp =
305   function
306   | Focus (_, goals) ->
307       Printf.sprintf "focus %s" (String.concat " " (List.map string_of_int goals))
308   | Unfocus _ -> "unfocus"
309   | Skip _ -> "skip"
310
311 let pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
312   function
313   | Macro (_, macro) -> pp_macro ~term_pp macro ^ "."
314   | Tactic (_, Some tac, punct) ->
315       pp_tactic ~map_unicode_to_tex ~lazy_term_pp ~term_pp tac
316       ^ pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
317   | Tactic (_, None, punct) ->
318      pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
319   | NonPunctuationTactical (_, tac, punct) ->
320      pp_non_punctuation_tactical ~lazy_term_pp ~term_pp tac
321      ^ pp_punctuation_tactical ~lazy_term_pp ~term_pp punct
322   | Command (_, cmd) -> pp_command ~term_pp ~obj_pp cmd ^ "."
323                       
324 let pp_comment ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
325   function
326   | Note (_,"") -> Printf.sprintf "\n"
327   | Note (_,str) -> Printf.sprintf "\n(* %s *)" str
328   | Code (_,code) ->
329       Printf.sprintf "\n(** %s. **)" (pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp code)
330
331 let pp_statement ~term_pp ~lazy_term_pp ~obj_pp =
332   function
333   | Executable (_, ex) -> pp_executable ~lazy_term_pp ~term_pp ~obj_pp ex 
334   | Comment (_, c) -> pp_comment ~term_pp ~lazy_term_pp ~obj_pp c