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