]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_transformations/tacticAstPp.ml
fixed LApply pretty printing
[helm.git] / helm / ocaml / cic_transformations / tacticAstPp.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 open Printf
27
28 open TacticAst
29
30 let tactical_terminator = "."
31 let tactic_terminator = tactical_terminator
32 let command_terminator = tactical_terminator
33 let tactical_separator = ";"
34
35 let pp_term_ast term = CicAstPp.pp_term term
36 let pp_term_cic term = CicPp.ppterm term
37
38 let pp_idents idents = "[" ^ String.concat "; " idents ^ "]"
39
40 let pp_reduction_kind = function
41   | `Reduce -> "reduce"
42   | `Simpl -> "simplify"
43   | `Whd -> "whd"
44   | `Normalize -> "normalize"
45  
46   
47 let pp_pattern (hyp, goal) = 
48   let pp_hyp_pattern l =
49     String.concat "; "
50       (List.map (fun (name, p) -> sprintf "%s : %s" name (pp_term_ast p)) l)
51   in
52   let pp_goal_pattern p = 
53     match p with 
54     | None -> ""
55     | Some p -> pp_term_ast p
56   in
57   let separator = 
58     if hyp <> [] then " \vdash " else " "
59   in
60    "in " ^ pp_hyp_pattern hyp ^ separator ^ pp_goal_pattern goal
61
62 let rec pp_tactic = function
63   | Absurd (_, term) -> "absurd" ^ pp_term_ast term
64   | Apply (_, term) -> "apply " ^ pp_term_ast term
65   | Auto _ -> "auto"
66   | Assumption _ -> "assumption"
67   | Change (_, t1, t2, where) ->
68       sprintf "change %s with %s%s" (pp_term_ast t1) (pp_term_ast t2)
69        (pp_pattern where)
70 (*   | Change_pattern (_, _, _, _) -> assert false  (* TODO *) *)
71   | Contradiction _ -> "contradiction"
72   | Cut (_, term) -> "cut " ^ pp_term_ast term
73   | Decompose (_, term) ->
74       sprintf "decompose %s" (pp_term_ast term)
75   | Discriminate (_, term) -> "discriminate " ^ pp_term_ast term
76   | Elim (_, term, using) ->
77       sprintf "elim " ^ pp_term_ast term ^
78       (match using with None -> "" | Some term -> " using " ^ pp_term_ast term)
79   | ElimType (_, term) -> "elim type " ^ pp_term_ast term
80   | Exact (_, term) -> "exact " ^ pp_term_ast term
81   | Exists _ -> "exists"
82   | Fold (_, kind, term) ->
83       sprintf "fold %s %s" (pp_reduction_kind kind) (pp_term_ast term)
84   | Generalize (_, term, pattern) ->
85      sprintf "generalize %s %s" (pp_term_ast term) (pp_pattern pattern)
86   | Goal (_, n) -> "goal " ^ string_of_int n
87   | Fourier _ -> "fourier"
88   | Injection (_, term) -> "injection " ^ pp_term_ast term
89   | Intros (_, None, []) -> "intro"
90   | Intros (_, num, idents) ->
91       sprintf "intros%s%s"
92         (match num with None -> "" | Some num -> " " ^ string_of_int num)
93         (match idents with [] -> "" | idents -> " " ^ pp_idents idents)
94   | Left _ -> "left"
95   | LetIn (_, term, ident) -> sprintf "let %s in %s" (pp_term_ast term) ident
96 (*   | Reduce (_, kind, None) *)
97 (*   | Reduce (_, kind, Some ([], `Goal)) -> pp_reduction_kind kind *)
98 (*   | Reduce (_, kind, Some ([], `Everywhere)) -> *)
99 (*       sprintf "%s in hyp" (pp_reduction_kind kind) *)
100 (*   | Reduce (_, kind, Some (terms, `Goal)) -> *)
101 (*       sprintf "%s %s" (pp_reduction_kind kind) *)
102 (*         (String.concat ", " (List.map pp_term_ast terms)) *)
103 (*   | Reduce (_, kind, Some (terms, `Everywhere)) -> *)
104 (*       sprintf "%s in hyp %s" (pp_reduction_kind kind) *)
105 (*         (String.concat ", " (List.map pp_term_ast terms)) *)
106   | Reduce (_, kind, pat) ->
107       sprintf "%s %s" (pp_reduction_kind kind) (pp_pattern pat)
108   | Reflexivity _ -> "reflexivity"
109   | Replace (_, t1, t2) ->
110       sprintf "replace %s with %s" (pp_term_ast t1) (pp_term_ast t2)
111 (*   | Replace_pattern (_, _, _) -> assert false  (* TODO *) *)
112   | Rewrite (_, pos, t, pattern) -> 
113       sprintf "rewrite %s %s %s" 
114         (if pos = `Left then "left" else "right") (pp_term_ast t)
115         (pp_pattern pattern)
116   | Right _ -> "right"
117   | Ring _ -> "ring"
118   | Split _ -> "split"
119   | Symmetry _ -> "symmetry"
120   | Transitivity (_, term) -> "transitivity " ^ pp_term_ast term
121   | FwdSimpl (_, term) -> sprintf "fwd %s" (pp_term_ast term)
122   | LApply (_, term_opt, term) -> 
123       sprintf "lapply %s%s" (pp_term_ast term) 
124         (match term_opt with | None -> "" | Some t -> " to " ^ pp_term_ast t)
125
126 let pp_flavour = function
127   | `Definition -> "Definition"
128   | `Fact -> "Fact"
129   | `Goal -> "Goal"
130   | `Lemma -> "Lemma"
131   | `Remark -> "Remark"
132   | `Theorem -> "Theorem"
133
134 let pp_search_kind = function
135   | `Locate -> "locate"
136   | `Hint -> "hint"
137   | `Match -> "match"
138   | `Elim -> "elim"
139
140 let pp_macro pp_term = function 
141   (* Whelp *)
142   | WInstance (_, term) -> "whelp instance " ^ pp_term term
143   | WHint (_, t) -> "whelp hint " ^ pp_term t
144   | WLocate (_, s) -> "whelp locate " ^ s
145   | WElim (_, t) -> "whelp elim " ^ pp_term t
146   | WMatch (_, term) -> "whelp match " ^ pp_term term
147   (* real macros *)
148 (*   | Abort _ -> "Abort" *)
149   | Check (_, term) -> sprintf "Check %s" (pp_term term)
150   | Hint _ -> "hint"
151 (*   | Redo (_, None) -> "Redo"
152   | Redo (_, Some n) -> sprintf "Redo %d" n *)
153   | Search_pat (_, kind, pat) ->
154       sprintf "search %s \"%s\"" (pp_search_kind kind) pat
155   | Search_term (_, kind, term) ->
156       sprintf "search %s %s" (pp_search_kind kind) (pp_term term)
157 (*   | Undo (_, None) -> "Undo"
158   | Undo (_, Some n) -> sprintf "Undo %d" n *)
159   | Print (_, name) -> sprintf "Print \"%s\"" name
160   | Quit _ -> "Quit"
161
162 let pp_macro_ast = pp_macro pp_term_ast
163 let pp_macro_cic = pp_macro pp_term_cic
164
165 let pp_alias = function
166   | Ident_alias (id, uri) -> sprintf "alias id \"%s\" = \"%s\"" id uri
167   | Symbol_alias (symb, instance, desc) ->
168       sprintf "alias symbol \"%s\" (instance %d) = \"%s\""
169         symb instance desc
170   | Number_alias (instance,desc) ->
171       sprintf "alias num (instance %d) = \"%s\"" instance desc
172   
173 let pp_params = function
174   | [] -> ""
175   | params ->
176       " " ^
177       String.concat " "
178         (List.map
179           (fun (name, typ) -> sprintf "(%s:%s)" name (pp_term_ast typ))
180           params)
181       
182 let pp_fields fields =
183   (if fields <> [] then "\n" else "") ^ 
184   String.concat ";\n" 
185     (List.map (fun (name,ty) -> " " ^ name ^ ": " ^ pp_term_ast ty) fields)
186         
187 let pp_obj = function
188  | Inductive (params, types) ->
189     let pp_constructors constructors =
190       String.concat "\n"
191         (List.map (fun (name, typ) -> sprintf "| %s: %s" name (pp_term_ast typ))
192           constructors)
193     in
194     let pp_type (name, _, typ, constructors) =
195       sprintf "\nwith %s: %s \\def\n%s" name (pp_term_ast typ)
196         (pp_constructors constructors)
197     in
198     (match types with
199     | [] -> assert false
200     | (name, inductive, typ, constructors) :: tl ->
201         let fst_typ_pp =
202           sprintf "%sinductive %s%s: %s \\def\n%s"
203             (if inductive then "" else "co") name (pp_params params)
204             (pp_term_ast typ) (pp_constructors constructors)
205         in
206         fst_typ_pp ^ String.concat "" (List.map pp_type tl))
207  | Theorem (flavour, name, typ, body) ->
208     sprintf "%s %s: %s %s"
209       (pp_flavour flavour)
210       name
211       (pp_term_ast typ)
212       (match body with
213       | None -> ""
214       | Some body -> "\\def " ^ pp_term_ast body)
215  | Record (params,name,ty,fields) ->
216     "record " ^ name ^ " " ^ pp_params params ^ " \\def {" ^
217     pp_fields fields ^ "}"
218
219
220 let pp_command = function
221   | Qed _ -> "qed"
222   | Set (_, name, value) -> sprintf "Set \"%s\" \"%s\"" name value
223   | Coercion (_,_) -> "Coercion IMPLEMENT ME!!!!!"
224   | Alias (_,s) -> pp_alias s
225   | Obj (_,obj) -> pp_obj obj
226
227 let rec pp_tactical = function
228   | Tactic (_, tac) -> pp_tactic tac
229
230   | Fail _ -> "fail"
231   | Do (_, count, tac) -> sprintf "do %d %s" count (pp_tactical tac)
232   | IdTac _ -> "id"
233   | Repeat (_, tac) -> "repeat " ^ pp_tactical tac
234   | Seq (_, tacs) -> pp_tacticals tacs
235   | Then (_, tac, tacs) ->
236       sprintf "%s [%s]" (pp_tactical tac) (pp_tacticals tacs)
237   | Tries (_, tacs) -> sprintf "tries [%s]" (pp_tacticals tacs)
238   | Try (_, tac) -> "try " ^ pp_tactical tac
239
240 and pp_tacticals tacs =
241   String.concat (tactical_separator ^ " ") (List.map pp_tactical tacs)
242
243 let pp_tactical tac = pp_tactical tac ^ tactical_terminator
244 let pp_tactic tac = pp_tactic tac ^ tactic_terminator
245 let pp_command tac = pp_command tac ^ command_terminator
246
247 let pp_executable = function
248   | Macro (_,x) -> pp_macro_ast x
249   | Tactical (_,x) -> pp_tactical x
250   | Command (_,x) -> pp_command x
251                       
252 let pp_comment = function
253   | Note (_,str) -> sprintf "(* %s *)" str
254   | Code (_,code) -> sprintf "(** %s. **)" (pp_executable code)
255
256 let pp_statement = function
257   | Executable (_, ex) -> pp_executable ex
258   | Comment (_, c) -> pp_comment c