1 (* Title: Pure/display.ML
3 Author: Lawrence C Paulson, Cambridge University Computer Laboratory
4 Copyright 1993 University of Cambridge
6 Printing of theories, theorems, etc.
11 val show_hyps : bool ref
12 val show_tags : bool ref
13 val pretty_thm_no_quote: thm -> Pretty.T
14 val pretty_thm : thm -> Pretty.T
15 val pretty_thms : thm list -> Pretty.T
16 val string_of_thm : thm -> string
17 val pprint_thm : thm -> pprint_args -> unit
18 val print_thm : thm -> unit
19 val print_thms : thm list -> unit
21 val prthq : thm Seq.seq -> thm Seq.seq
22 val prths : thm list -> thm list
23 val pretty_ctyp : ctyp -> Pretty.T
24 val pprint_ctyp : ctyp -> pprint_args -> unit
25 val string_of_ctyp : ctyp -> string
26 val print_ctyp : ctyp -> unit
27 val pretty_cterm : cterm -> Pretty.T
28 val pprint_cterm : cterm -> pprint_args -> unit
29 val string_of_cterm : cterm -> string
30 val print_cterm : cterm -> unit
31 val pretty_theory : theory -> Pretty.T
32 val pprint_theory : theory -> pprint_args -> unit
33 val print_syntax : theory -> unit
34 val print_theory : theory -> unit
35 val pretty_name_space : string * NameSpace.T -> Pretty.T
36 val show_consts : bool ref
39 structure Display: DISPLAY =
44 val show_hyps = ref true; (*false: print meta-hypotheses as dots*)
45 val show_tags = ref false; (*false: suppress tags*)
49 fun pretty_tag (name, args) = Pretty.strs (name :: args);
50 val pretty_tags = Pretty.list "[" "]" o map pretty_tag;
52 fun is_oracle (Thm.Oracle _) = true
53 | is_oracle _ = false;
55 fun ex_oracle (Join (der, ders)) = is_oracle der orelse exists ex_oracle ders;
57 fun pretty_thm_aux quote th =
59 val {sign, hyps, prop, der, ...} = rep_thm th;
60 val xshyps = Thm.extra_shyps th;
61 val (_, tags) = Thm.get_name_tags th;
63 val prt_term = (if quote then Pretty.quote else I) o Sign.pretty_term sign;
65 val hlen = length xshyps + length hyps;
66 val ex_ora = ex_oracle der;
68 if hlen = 0 andalso not ex_ora then []
69 else if ! show_hyps then
70 [Pretty.brk 2, Pretty.list "[" "]"
71 (map prt_term hyps @ map (Sign.pretty_sort sign) xshyps @
72 (if ex_ora then [Pretty.str "!"] else []))]
73 else [Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^
74 (if ex_ora then "!" else "") ^ "]")];
76 if null tags orelse not (! show_tags) then []
77 else [Pretty.brk 1, pretty_tags tags];
78 in Pretty.block (prt_term prop :: (hsymbs @ tsymbs)) end;
82 val pretty_thm = pretty_thm_aux true;
83 val pretty_thm_no_quote = pretty_thm_aux false;
88 val string_of_thm = Pretty.string_of o pretty_thm;
89 val pprint_thm = Pretty.pprint o pretty_thm;
91 fun pretty_thms [th] = pretty_thm th
92 | pretty_thms ths = Pretty.block (Pretty.fbreaks (map pretty_thm ths));
95 (* top-level commands for printing theorems *)
97 val print_thm = Pretty.writeln o pretty_thm;
98 val print_thms = Pretty.writeln o pretty_thms;
100 fun prth th = (print_thm th; th);
102 (*Print and return a sequence of theorems, separated by blank lines. *)
104 (Seq.print (fn _ => print_thm) 100000 thseq; thseq);
106 (*Print and return a list of theorems, separated by blank lines. *)
107 fun prths ths = (seq (fn th => (print_thm th; writeln "")) ths; ths);
110 (* other printing commands *)
113 let val {sign, T} = rep_ctyp cT in Sign.pretty_typ sign T end;
116 let val {sign, T} = rep_ctyp cT in Sign.pprint_typ sign T end;
118 fun string_of_ctyp cT =
119 let val {sign, T} = rep_ctyp cT in Sign.string_of_typ sign T end;
121 val print_ctyp = writeln o string_of_ctyp;
123 fun pretty_cterm ct =
124 let val {sign, t, ...} = rep_cterm ct in Sign.pretty_term sign t end;
126 fun pprint_cterm ct =
127 let val {sign, t, ...} = rep_cterm ct in Sign.pprint_term sign t end;
129 fun string_of_cterm ct =
130 let val {sign, t, ...} = rep_cterm ct in Sign.string_of_term sign t end;
132 val print_cterm = writeln o string_of_cterm;
138 val pretty_theory = Sign.pretty_sg o Theory.sign_of;
139 val pprint_theory = Sign.pprint_sg o Theory.sign_of;
141 val print_syntax = Syntax.print_syntax o Theory.syn_of;
144 (* pretty_name_space *)
146 fun pretty_name_space (kind, space) =
148 fun prt_entry (name, accs) = Pretty.block
149 (Pretty.str (quote name ^ " =") :: Pretty.brk 1 ::
150 Pretty.commas (map (Pretty.str o quote) accs));
152 Pretty.fbreaks (Pretty.str (kind ^ ":") :: map prt_entry (NameSpace.dest space))
158 (* print signature *)
162 fun prt_cls c = Sign.pretty_sort sg [c];
163 fun prt_sort S = Sign.pretty_sort sg S;
164 fun prt_arity t (c, Ss) = Sign.pretty_arity sg (t, Ss, [c]);
165 fun prt_typ ty = Pretty.quote (Sign.pretty_typ sg ty);
168 fun pretty_classes cs = Pretty.block
169 (Pretty.breaks (Pretty.str "classes:" :: map prt_cls cs));
171 fun pretty_classrel (c, cs) = Pretty.block
172 (prt_cls c :: Pretty.str " <" :: Pretty.brk 1 ::
173 Pretty.commas (map prt_cls cs));
175 fun pretty_default S = Pretty.block
176 [Pretty.str "default:", Pretty.brk 1, prt_sort S];
178 fun pretty_ty (t, n) = Pretty.block
179 [Pretty.str t, Pretty.spc 1, Pretty.str (string_of_int n)];
181 fun pretty_log_types ts = Pretty.block
182 (Pretty.breaks (Pretty.str "logical types:" :: map Pretty.str ts));
184 fun pretty_witness None = Pretty.str "universal non-emptiness witness: --"
185 | pretty_witness (Some (T, S)) = Pretty.block
186 [Pretty.str "universal non-emptiness witness:", Pretty.brk 1, prt_typ T, Pretty.brk 1, prt_sort S];
188 fun pretty_abbr (t, (vs, rhs)) = Pretty.block
189 [prt_typ (Type (t, map (fn v => TVar ((v, 0), [])) vs)),
190 Pretty.str " =", Pretty.brk 1, prt_typ rhs];
192 fun pretty_arities (t, ars) = map (prt_arity t) ars;
194 fun pretty_const (c, ty) = Pretty.block
195 [Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ ty];
197 val {self = _, tsig, const_tab, syn = _, path, spaces, data} = Sign.rep_sg sg;
198 val spaces' = Library.sort_wrt fst spaces;
199 val {classes, classrel, default, tycons = type_tab, log_types, univ_witness, abbrs, arities} =
201 val tycons = Sign.cond_extern_table sg Sign.typeK type_tab;
202 val consts = Sign.cond_extern_table sg Sign.constK const_tab;
204 Pretty.writeln (Pretty.strs ("stamps:" :: Sign.stamp_names_of sg));
205 Pretty.writeln (Pretty.strs ("data:" :: Sign.data_kinds data));
206 Pretty.writeln (Pretty.strs ["name prefix:", NameSpace.pack path]);
207 Pretty.writeln (Pretty.big_list "name spaces:" (map pretty_name_space spaces'));
208 Pretty.writeln (pretty_classes classes);
209 Pretty.writeln (Pretty.big_list "class relation:" (map pretty_classrel (Symtab.dest classrel)));
210 Pretty.writeln (pretty_default default);
211 Pretty.writeln (pretty_log_types log_types);
212 Pretty.writeln (pretty_witness univ_witness);
213 Pretty.writeln (Pretty.big_list "type constructors:" (map pretty_ty tycons));
214 Pretty.writeln (Pretty.big_list "type abbreviations:" (map pretty_abbr (Symtab.dest abbrs)));
215 Pretty.writeln (Pretty.big_list "type arities:" (flat (map pretty_arities (Symtab.dest arities))));
216 Pretty.writeln (Pretty.big_list "consts:" (map pretty_const consts))
220 (* print axioms, oracles, theorems *)
224 val {sign, axioms, oracles, ...} = Theory.rep_theory thy;
225 fun cond_externs kind = Sign.cond_extern_table sign kind;
227 fun prt_axm (a, t) = Pretty.block
228 [Pretty.str (a ^ ":"), Pretty.brk 1, Pretty.quote (Sign.pretty_term sign t)];
230 Pretty.writeln (Pretty.big_list "axioms:" (map prt_axm (cond_externs Theory.axiomK axioms)));
231 Pretty.writeln (Pretty.strs ("oracles:" :: (map #1 (cond_externs Theory.oracleK oracles))))
234 fun print_theory thy = (print_sign (Theory.sign_of thy); print_thy thy);
236 (*also show consts in case of showing types?*)
237 val show_consts = ref false;