1 (* Copyright (C) 2004, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
31 let tactical_terminator = ""
32 let tactic_terminator = tactical_terminator
33 let command_terminator = tactical_terminator
35 let pp_tactic_pattern status ~map_unicode_to_tex (what, hyp, goal) =
36 if what = None && hyp = [] && goal = None then "" else
40 | Some t -> Printf.sprintf "in match (%s) " (NotationPp.pp_term status t) in
43 (List.map (fun (name, p) -> Printf.sprintf "%s:(%s)" name
44 (NotationPp.pp_term status p)) hyp) in
49 let vdash = if map_unicode_to_tex then "\\vdash" else "⊢" in
50 Printf.sprintf "%s (%s)" vdash (NotationPp.pp_term status t)
52 Printf.sprintf "%sin %s%s" what_text hyp_text goal_text
54 let rec pp_ntactic status ~map_unicode_to_tex =
55 let pp_tactic_pattern = pp_tactic_pattern ~map_unicode_to_tex in
57 | NApply (_,t) -> "napply " ^ NotationPp.pp_term status t
58 | NSmartApply (_,t) -> "fixme"
59 | NAuto (_,(None,flgs)) ->
61 String.concat " " (List.map (fun a,b -> a ^ "=" ^ b) flgs)
62 | NAuto (_,(Some l,flgs)) ->
63 "nautobatch" ^ " by " ^
64 (String.concat "," (List.map (NotationPp.pp_term status) l)) ^
65 String.concat " " (List.map (fun a,b -> a ^ "=" ^ b) flgs)
66 | NCases (_,what,where) -> "ncases " ^ NotationPp.pp_term status what ^
67 "...to be implemented..." ^ " " ^ "...to be implemented..."
68 | NConstructor (_,None,l) -> "@ " ^
69 String.concat " " (List.map (NotationPp.pp_term status) l)
70 | NConstructor (_,Some x,l) -> "@" ^ string_of_int x ^ " " ^
71 String.concat " " (List.map (NotationPp.pp_term status) l)
72 | NCase1 (_,n) -> "*" ^ n ^ ":"
73 | NChange (_,what,wwhat) -> "nchange " ^ "...to be implemented..." ^
74 " with " ^ NotationPp.pp_term status wwhat
75 | NCut (_,t) -> "ncut " ^ NotationPp.pp_term status t
76 (*| NDiscriminate (_,t) -> "ndiscriminate " ^ NotationPp.pp_term status t
77 | NSubst (_,t) -> "nsubst " ^ NotationPp.pp_term status t *)
78 | NClear (_,l) -> "nclear " ^ String.concat " " l
79 | NDestruct (_,dom,skip) -> "ndestruct ..."
80 | NElim (_,what,where) -> "nelim " ^ NotationPp.pp_term status what ^
81 "...to be implemented..." ^ " " ^ "...to be implemented..."
83 | NIntro (_,n) -> "#" ^ n
84 | NIntros (_,l) -> "#" ^ String.concat " " l
85 | NInversion (_,what,where) -> "ninversion " ^ NotationPp.pp_term status what ^
86 assert false ^ " " ^ assert false
87 | NLApply (_,t) -> "lapply " ^ NotationPp.pp_term status t
88 | NRewrite (_,dir,n,where) -> "nrewrite " ^
89 (match dir with `LeftToRight -> ">" | `RightToLeft -> "<") ^
90 " " ^ NotationPp.pp_term status n ^ " " ^ pp_tactic_pattern status where
91 | NReduce _ | NGeneralize _ | NLetIn _ | NAssert _ -> "TO BE IMPLEMENTED"
96 | NPos (_, l) -> String.concat "," (List.map string_of_int l)^ ":"
97 | NPosbyname (_, s) -> s ^ ":"
101 Printf.sprintf "focus %s"
102 (String.concat " " (List.map string_of_int l))
103 | NUnfocus _ -> "unfocus"
105 | NTry (_,tac) -> "ntry " ^ pp_ntactic status ~map_unicode_to_tex tac
106 | NAssumption _ -> "nassumption"
108 "(" ^ String.concat " " (List.map (pp_ntactic status ~map_unicode_to_tex) l)^ ")"
109 | NRepeat (_,t) -> "nrepeat " ^ pp_ntactic status ~map_unicode_to_tex t
112 let pp_nmacro status = function
113 | NCheck (_, term) -> Printf.sprintf "ncheck %s" (NotationPp.pp_term status term)
114 | Screenshot (_, name) -> Printf.sprintf "screenshot \"%s\"" name
117 let pp_l1_pattern = NotationPp.pp_term
118 let pp_l2_pattern = NotationPp.pp_term
120 let pp_alias = function
121 | Ident_alias (id, uri) -> sprintf "alias id \"%s\" = \"%s\"." id uri
122 | Symbol_alias (symb, instance, desc) ->
123 sprintf "alias symbol \"%s\" %s= \"%s\"."
125 (if instance=0 then "" else "(instance "^ string_of_int instance ^ ") ")
127 | Number_alias (instance,desc) ->
128 sprintf "alias num (instance %d) = \"%s\"." instance desc
130 let pp_associativity = function
131 | Gramext.LeftA -> "left associative"
132 | Gramext.RightA -> "right associative"
133 | Gramext.NonA -> "non associative"
135 let pp_precedence i = sprintf "with precedence %d" i
137 let pp_argument_pattern = function
138 | NotationPt.IdentArg (eta_depth, name) ->
139 let eta_buf = Buffer.create 5 in
140 for i = 1 to eta_depth do
141 Buffer.add_string eta_buf "\\eta."
143 sprintf "%s%s" (Buffer.contents eta_buf) name
145 let pp_interpretation dsc symbol arg_patterns cic_appl_pattern =
146 sprintf "interpretation \"%s\" '%s %s = %s."
148 (String.concat " " (List.map pp_argument_pattern arg_patterns))
149 (NotationPp.pp_cic_appl_pattern cic_appl_pattern)
151 let pp_dir_opt = function
153 | Some `LeftToRight -> "> "
154 | Some `RightToLeft -> "< "
156 let pp_notation status dir_opt l1_pattern assoc prec l2_pattern =
157 sprintf "notation %s\"%s\" %s %s for %s."
159 (pp_l1_pattern status l1_pattern)
160 (pp_associativity assoc)
162 (pp_l2_pattern status l2_pattern)
164 let pp_ncommand status = function
165 | UnificationHint (_,t, n) ->
166 "unification hint " ^ string_of_int n ^ " " ^ NotationPp.pp_term status t
167 | NDiscriminator (_,_)
168 | NInverter (_,_,_,_,_)
169 | NUnivConstraint (_) -> "not supported"
170 | NCoercion (_) -> "not supported"
171 | NObj (_,obj) -> NotationPp.pp_obj (NotationPp.pp_term status) obj
173 | NCopy (_,name,uri,map) ->
174 "copy " ^ name ^ " from " ^ NUri.string_of_uri uri ^ " with " ^
175 String.concat " and "
177 (fun (a,b) -> NUri.string_of_uri a ^ " ↦ " ^ NUri.string_of_uri b)
179 | Include (_,mode,path) -> (* not precise, since path is absolute *)
180 if mode = WithPreferences then
181 "include \"" ^ path ^ "\""
183 "include' \"" ^ path ^ "\""
184 | Alias (_,s) -> pp_alias s
185 | Interpretation (_, dsc, (symbol, arg_patterns), cic_appl_pattern) ->
186 pp_interpretation dsc symbol arg_patterns cic_appl_pattern
187 | Notation (_, dir_opt, l1_pattern, assoc, prec, l2_pattern) ->
188 pp_notation status dir_opt l1_pattern assoc prec l2_pattern
191 let pp_executable status ~map_unicode_to_tex =
193 | NMacro (_, macro) -> pp_nmacro status macro ^ "."
194 | NTactic (_,tacl) ->
195 String.concat " " (List.map (pp_ntactic status ~map_unicode_to_tex) tacl)
196 | NCommand (_, cmd) -> pp_ncommand status cmd ^ "."
198 let pp_comment status ~map_unicode_to_tex =
200 | Note (_,"") -> Printf.sprintf "\n"
201 | Note (_,str) -> Printf.sprintf "\n(* %s *)" str
203 Printf.sprintf "\n(** %s. **)" (pp_executable status ~map_unicode_to_tex code)
205 let pp_statement status =
207 | Executable (_, ex) -> pp_executable status ex
208 | Comment (_, c) -> pp_comment status c