]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/grafite/grafiteAstPp.ml
initial implementation of `ncoercion name : type := body on name : pat to pat`
[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_ntactic ~map_unicode_to_tex = function
93   | NApply (_,t) -> "napply " ^ CicNotationPp.pp_term t
94   | NCases (_,what,where) -> "ncases " ^ CicNotationPp.pp_term what ^
95       assert false ^ " " ^ assert false
96   | NCase1 (_,n) -> "*" ^ n ^ ":"
97   | NChange (_,what,wwhat) -> "nchange " ^ assert false ^ 
98       " with " ^ CicNotationPp.pp_term wwhat
99   | NElim (_,what,where) -> "nelim " ^ CicNotationPp.pp_term what ^
100       assert false ^ " " ^ assert false
101   | NId _ -> "nid"
102   | NIntro (_,n) -> "#" ^ n
103   | NRewrite (_,dir,n,where) -> "nrewrite" ^ assert false
104   | NAuto (_,(l,flgs)) ->
105       "nauto" ^ 
106         (if l <> [] then (" by " ^
107          (String.concat "," (List.map CicNotationPp.pp_term l))) else "") ^
108         String.concat " " (List.map (fun a,b -> a ^ "=" ^ b) flgs)
109   | NReduce _ | NGeneralize _ | NLetIn _ | NAssert _ -> assert false
110   | NDot _ -> "##."
111   | NSemicolon _ -> "##;"
112   | NBranch _ -> "##["
113   | NShift _ -> "##|"
114   | NPos (_, l) -> "##" ^String.concat "," (List.map string_of_int l)^ ":"
115   | NWildcard _ -> "##*:"
116   | NMerge _ -> "##]"
117   | NFocus (_,l) -> 
118       Printf.sprintf "##focus %s" 
119         (String.concat " " (List.map string_of_int l))
120   | NUnfocus _ -> "##unfocus"
121   | NSkip _ -> "##skip"
122   | NTry (_,tac) -> "ntry " ^ pp_ntactic ~map_unicode_to_tex tac
123   | NAssumption _ -> "nassumption"
124   | NBlock (_,l) -> 
125      "(" ^ String.concat " " (List.map (pp_ntactic ~map_unicode_to_tex) l)^ ")"
126   | NRepeat (_,t) -> "nrepeat " ^ pp_ntactic ~map_unicode_to_tex t
127 ;;
128
129 let rec pp_tactic ~map_unicode_to_tex ~term_pp ~lazy_term_pp =
130  let pp_terms = pp_terms ~term_pp in
131  let pp_tactics = pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp in
132  let pp_reduction_kind = pp_reduction_kind ~term_pp in
133  let pp_tactic_pattern =
134   pp_tactic_pattern ~map_unicode_to_tex ~lazy_term_pp ~term_pp in
135  let rec pp_tactic =
136   function
137   (* Higher order tactics *)
138   | Do (_, count, tac) ->
139       Printf.sprintf "do %d %s" count (pp_tactic tac)
140   | Repeat (_, tac) -> "repeat " ^ pp_tactic tac
141   | Seq (_, tacs) -> pp_tactics ~sep:"; " tacs
142   | Then (_, tac, tacs) ->
143       Printf.sprintf "%s; [%s]" (pp_tactic tac)
144         (pp_tactics ~sep:" | " tacs)
145   | First (_, tacs) ->
146      Printf.sprintf "tries [%s]" (pp_tactics ~sep:" | " tacs)
147   | Try (_, tac) -> "try " ^ pp_tactic tac
148   | Solve (_, tac) ->
149      Printf.sprintf "solve [%s]" (pp_tactics ~sep:" | " tac)
150   | Progress (_, tac) -> "progress " ^ pp_tactic tac
151   (* First order tactics *)
152   | Absurd (_, term) -> "absurd" ^ term_pp term
153   | Apply (_, term) -> "apply " ^ term_pp term
154   | ApplyRule (_, term) -> "apply rule " ^ term_pp term
155   | ApplyP (_, term) -> "applyP " ^ term_pp term
156   | ApplyS (_, term, params) ->
157      "applyS " ^ term_pp term ^ pp_auto_params ~term_pp params
158   | AutoBatch (_,params) -> "autobatch " ^ 
159       pp_auto_params ~term_pp params
160   | Assumption _ -> "assumption"
161   | Cases (_, term, pattern, specs) -> 
162       Printf.sprintf "cases %s %s%s" 
163       (term_pp term)
164       (pp_tactic_pattern pattern)
165       (pp_intros_specs "names " specs)
166   | Change (_, where, with_what) ->
167       Printf.sprintf "change %s with %s" (pp_tactic_pattern where) (lazy_term_pp with_what)
168   | Clear (_,ids) -> Printf.sprintf "clear %s" (pp_hyps ids)
169   | ClearBody (_,id) -> Printf.sprintf "clearbody %s" (pp_hyps [id])
170   | Constructor (_,n) -> "constructor " ^ string_of_int n
171   | Compose (_,t1, t2, times, intro_specs) -> 
172       Printf.sprintf "compose %s%s %s%s" 
173         (if times > 0 then string_of_int times ^ " " else "")
174         (term_pp t1) (match t2 with None -> "" | Some t2 -> "with "^term_pp t2)
175         (pp_intros_specs " as " intro_specs)
176   | Contradiction _ -> "contradiction"
177   | Cut (_, ident, term) ->
178      "cut " ^ term_pp term ^
179       (match ident with None -> "" | Some id -> " as " ^ id)
180   | Decompose (_, names) ->
181       Printf.sprintf "decompose%s" 
182       (pp_intros_specs "names " (None, names)) 
183   | Demodulate (_, params) -> "demodulate " ^ pp_auto_params ~term_pp params
184   | Destruct (_, None) -> "destruct" 
185   | Destruct (_, Some terms) -> "destruct " ^ pp_terms terms
186   | Elim (_, what, using, pattern, specs) ->
187       Printf.sprintf "elim %s%s %s%s" 
188       (term_pp what)
189       (match using with None -> "" | Some term -> " using " ^ term_pp term)
190       (pp_tactic_pattern pattern)
191       (pp_intros_specs "names " specs) 
192   | ElimType (_, term, using, specs) ->
193       Printf.sprintf "elim type %s%s%s" 
194       (term_pp term)
195       (match using with None -> "" | Some term -> " using " ^ term_pp term)
196       (pp_intros_specs "names " specs)
197   | Exact (_, term) -> "exact " ^ term_pp term
198   | Exists _ -> "exists"
199   | Fold (_, kind, term, pattern) ->
200       Printf.sprintf "fold %s %s %s" (pp_reduction_kind kind)
201        (lazy_term_pp term) (pp_tactic_pattern pattern)
202   | FwdSimpl (_, hyp, names) -> 
203       Printf.sprintf "fwd %s%s" hyp (pp_intros_specs "names " (None, names))
204   | Generalize (_, pattern, ident) ->
205      Printf.sprintf "generalize %s%s" (pp_tactic_pattern pattern)
206       (match ident with None -> "" | Some id -> " as " ^ id)
207   | Fail _ -> "fail"
208   | Fourier _ -> "fourier"
209   | IdTac _ -> "id"
210   | Intros (_, specs) -> Printf.sprintf "intros%s" (pp_intros_specs "" specs)
211   | Inversion (_, term) -> "inversion " ^ term_pp term
212   | LApply (_, linear, level_opt, terms, term, ident_opt) -> 
213       Printf.sprintf "lapply %s%s%s%s%s" 
214         (if linear then " linear " else "")
215         (match level_opt with None -> "" | Some i -> " depth = " ^ string_of_int i ^ " ")  
216         (term_pp term) 
217         (match terms with [] -> "" | _ -> " to " ^ pp_terms terms)
218         (match ident_opt with None -> "" | Some ident -> " as " ^ ident)
219   | Left _ -> "left"
220   | LetIn (_, term, ident) -> 
221      Printf.sprintf "letin %s \\def %s" ident (term_pp term)
222   | Reduce (_, kind, pat) ->
223       Printf.sprintf "%s %s" (pp_reduction_kind kind) (pp_tactic_pattern pat)
224   | Reflexivity _ -> "reflexivity"
225   | Replace (_, pattern, t) ->
226       Printf.sprintf "replace %s with %s" (pp_tactic_pattern pattern) (lazy_term_pp t)
227   | Rewrite (_, pos, t, pattern, names) -> 
228       Printf.sprintf "rewrite %s %s %s%s" 
229         (if pos = `LeftToRight then ">" else "<")
230         (term_pp t)
231         (pp_tactic_pattern pattern)
232         (if names = [] then "" else " as " ^ pp_idents names)
233   | Right _ -> "right"
234   | Ring _ -> "ring"
235   | Split _ -> "split"
236   | Symmetry _ -> "symmetry"
237   | Transitivity (_, term) -> "transitivity " ^ term_pp term
238   (* Tattiche Aggiunte *)
239   | Assume (_, ident , term) -> "assume" ^ ident ^ ":" ^ term_pp term 
240   | Suppose (_, term, ident,term1) -> "suppose" ^ term_pp term ^ "("  ^ ident ^ ")" ^ (match term1 with None -> " " | Some term1 -> term_pp term1)
241   | Bydone (_, just) ->  pp_just ~term_pp just ^ "done"
242   | 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^ ")") ^
243        (match term2 with  None -> " " | Some term2 -> term_pp term2)
244   | 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)
245   | We_proceed_by_cases_on (_, term, term1) -> "we proceed by cases on" ^ term_pp term ^ "to prove" ^ term_pp term1
246   | We_proceed_by_induction_on (_, term, term1) -> "we proceed by induction on" ^ term_pp term ^ "to prove" ^ term_pp term1
247   | Byinduction (_, term, ident) -> "by induction hypothesis we know" ^ term_pp term ^ "(" ^ ident ^ ")"
248   | Thesisbecomes (_, term) -> "the thesis becomes " ^ term_pp term
249   | ExistsElim (_, just, ident, term, ident1, term1) -> pp_just ~term_pp just ^ "let " ^ ident ^ ":" ^ term_pp term ^ "such that " ^ lazy_term_pp term1 ^ "(" ^ ident1 ^ ")"
250   | AndElim (_, just, ident1, term1, ident2, term2) -> pp_just ~term_pp just ^ "we have " ^ term_pp term1 ^ " (" ^ ident1 ^ ") " ^ "and " ^ term_pp term2 ^ " (" ^ ident2 ^ ")" 
251   | RewritingStep (_, term, term1, term2, cont) -> 
252       (match term with 
253       | None -> " " 
254       | Some (None,term) -> "conclude " ^ term_pp term 
255       | Some (Some name,term) -> 
256           "obtain (" ^ name ^ ") " ^ term_pp term) 
257       ^ "=" ^
258       term_pp term1 ^ 
259       (match term2 with 
260       | `Auto params -> pp_auto_params ~term_pp params
261       | `Term term2 -> " exact " ^ term_pp term2 
262       | `Proof -> " proof"
263       | `SolveWith term -> " using " ^ term_pp term)
264       ^ (if cont then " done" else "")
265   | Case (_, id, args) ->
266      "case" ^ id ^
267        String.concat " "
268         (List.map (function (id,term) -> "(" ^ id ^ ": " ^ term_pp term ^  ")")
269           args)
270  in pp_tactic
271
272 and pp_tactics ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~sep tacs =
273   String.concat sep
274    (List.map (pp_tactic ~map_unicode_to_tex ~lazy_term_pp ~term_pp) tacs)
275
276  let pp_search_kind = function
277   | `Locate -> "locate"
278   | `Hint -> "hint"
279   | `Match -> "match"
280   | `Elim -> "elim"
281   | `Instance -> "instance"
282
283 let pp_arg ~term_pp arg = 
284   let s = term_pp arg in
285    if s = "" || (s.[0] = '(' && s.[String.length s - 1] = ')') then
286      (* _nice_ heuristic *)
287      s
288    else
289      "(" ^ s ^ ")"
290   
291 let pp_macro ~term_pp ~lazy_term_pp = 
292   let term_pp = pp_arg ~term_pp in
293   let flavour_pp = function
294      | `Definition       -> "definition"
295      | `Fact             -> "fact"
296      | `Lemma            -> "lemma"
297      | `Remark           -> "remark"
298      | `Theorem          -> "theorem"
299      | `Variant          -> "variant"
300      | `Axiom            -> "axiom"
301      | `MutualDefinition -> assert false
302   in
303   let pp_inline_params l =
304      let pp_param = function
305         | IPPrefix prefix -> "prefix = \"" ^ prefix ^ "\""
306         | IPAs flavour  -> flavour_pp flavour
307         | IPCoercions   -> "coercions"
308         | IPDebug debug -> "debug = " ^ string_of_int debug
309         | IPProcedural  -> "procedural"
310         | IPNoDefaults  -> "nodefaults"
311         | IPDepth depth -> "depth = " ^ string_of_int depth
312         | IPLevel level -> "level = " ^ string_of_int level
313         | IPComments    -> "comments"
314         | IPCR          -> "cr"
315      in
316      let s = String.concat " " (List.map pp_param l) in
317      if s = "" then s else " " ^ s
318   in
319   let pp_reduction_kind = pp_reduction_kind ~term_pp:lazy_term_pp in
320   function 
321   (* Whelp *)
322   | WInstance (_, term) -> "whelp instance " ^ term_pp term
323   | WHint (_, t) -> "whelp hint " ^ term_pp t
324   | WLocate (_, s) -> "whelp locate \"" ^ s ^ "\""
325   | WElim (_, t) -> "whelp elim " ^ term_pp t
326   | WMatch (_, term) -> "whelp match " ^ term_pp term
327   (* real macros *)
328   | Eval (_, kind, term) -> 
329       Printf.sprintf "eval %s on %s" (pp_reduction_kind kind) (term_pp term) 
330   | Check (_, term) -> Printf.sprintf "check %s" (term_pp term)
331   | Hint (_, true) -> "hint rewrite"
332   | Hint (_, false) -> "hint"
333   | AutoInteractive (_,params) -> "auto " ^ pp_auto_params ~term_pp params
334   | Inline (_, suri, params) ->  
335       Printf.sprintf "inline \"%s\"%s" suri (pp_inline_params params) 
336
337 let pp_associativity = function
338   | Gramext.LeftA -> "left associative"
339   | Gramext.RightA -> "right associative"
340   | Gramext.NonA -> "non associative"
341
342 let pp_precedence i = Printf.sprintf "with precedence %d" i
343
344 let pp_dir_opt = function
345   | None -> ""
346   | Some `LeftToRight -> "> "
347   | Some `RightToLeft -> "< "
348
349 let pp_default what uris = 
350   Printf.sprintf "default \"%s\" %s" what
351     (String.concat " " (List.map UriManager.string_of_uri uris))
352
353 let pp_coercion ~term_pp t do_composites arity saturations=
354    Printf.sprintf "coercion %s %d %d %s"
355     (term_pp t) arity saturations
356     (if do_composites then "" else "nocomposites")
357
358 let pp_ncommand = function
359   | UnificationHint (_,t, n) -> 
360       "unification hint " ^ string_of_int n ^ " " ^ CicNotationPp.pp_term t
361   | NObj (_,_)
362   | NUnivConstraint (_) -> "not supported"
363   | NCoercion (_) -> "not supported"
364   | NQed (_) -> "nqed"
365     
366 let pp_command ~term_pp ~obj_pp = function
367   | Index (_,_,uri) -> "Indexing " ^ UriManager.string_of_uri uri
368   | Select (_,uri) -> "Selecting " ^ UriManager.string_of_uri uri
369   | Coercion (_, t, do_composites, i, j) ->
370      pp_coercion ~term_pp t do_composites i j
371   | PreferCoercion (_,t) -> 
372      "prefer coercion " ^ term_pp t
373   | Inverter (_,n,ty,params) ->
374      "inverter " ^ n ^ " for " ^ term_pp ty ^ " " ^ List.fold_left (fun acc x -> acc ^ (match x with true -> "%" | _ -> "?")) "" params
375   | Default (_,what,uris) -> pp_default what uris
376   | Drop _ -> "drop"
377   | Include (_,true,`OldAndNew,path) -> "include \"" ^ path ^ "\""
378   | Include (_,false,`OldAndNew,path) -> "include source \"" ^ path ^ "\""
379   | Include (_,_,`New,path) -> "RECURSIVELY INCLUDING " ^ path
380   | Obj (_,obj) -> obj_pp obj
381   | Qed _ -> "qed"
382   | Relation (_,id,a,aeq,refl,sym,trans) ->
383      "relation " ^ term_pp aeq ^ " on " ^ term_pp a ^
384      (match refl with
385          Some r -> " reflexivity proved by " ^ term_pp r
386        | None -> "") ^
387      (match sym with
388          Some r -> " symmetry proved by " ^ term_pp r
389        | None -> "") ^
390      (match trans with
391          Some r -> " transitivity proved by " ^ term_pp r
392        | None -> "")
393   | Print (_,s) -> "print " ^ s
394   | Set (_, name, value) -> Printf.sprintf "set \"%s\" \"%s\"" name value
395   | Pump (_) -> "not supported"
396
397 let pp_punctuation_tactical =
398   function
399   | Dot _ -> "."
400   | Semicolon _ -> ";"
401   | Branch _ -> "["
402   | Shift _ -> "|"
403   | Pos (_, i) -> Printf.sprintf "%s:" (String.concat "," (List.map string_of_int i))
404   | Wildcard _ -> "*:"
405   | Merge _ -> "]"
406
407 let pp_non_punctuation_tactical =
408   function
409   | Focus (_, goals) ->
410       Printf.sprintf "focus %s" (String.concat " " (List.map string_of_int goals))
411   | Unfocus _ -> "unfocus"
412   | Skip _ -> "skip"
413
414 let pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
415   function
416   | Macro (_, macro) -> pp_macro ~term_pp ~lazy_term_pp macro ^ "."
417   | Tactic (_, Some tac, punct) ->
418       pp_tactic ~map_unicode_to_tex ~term_pp ~lazy_term_pp tac
419       ^ pp_punctuation_tactical punct
420   | Tactic (_, None, punct) ->
421      pp_punctuation_tactical punct
422   | NTactic (_,tacl) ->
423       String.concat " " (List.map (pp_ntactic ~map_unicode_to_tex) tacl)
424   | NonPunctuationTactical (_, tac, punct) ->
425      pp_non_punctuation_tactical tac
426      ^ pp_punctuation_tactical punct
427   | Command (_, cmd) -> pp_command ~term_pp ~obj_pp cmd ^ "."
428   | NCommand (_, cmd) -> pp_ncommand cmd ^ "."
429                       
430 let pp_comment ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =
431   function
432   | Note (_,"") -> Printf.sprintf "\n"
433   | Note (_,str) -> Printf.sprintf "\n(* %s *)" str
434   | Code (_,code) ->
435       Printf.sprintf "\n(** %s. **)" (pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp code)
436
437 let pp_statement ~term_pp ~lazy_term_pp ~obj_pp =
438   function
439   | Executable (_, ex) -> pp_executable ~lazy_term_pp ~term_pp ~obj_pp ex 
440   | Comment (_, c) -> pp_comment ~term_pp ~lazy_term_pp ~obj_pp c