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