| author | paulson | 
| Fri, 18 Sep 1998 14:39:51 +0200 | |
| changeset 5501 | a63e0c326e6c | 
| parent 5245 | a6167c446b0b | 
| child 5902 | c39b23d752b6 | 
| permissions | -rw-r--r-- | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 1 | (* Title: Pure/display.ML | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 2 | ID: $Id$ | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 3 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 4 | Copyright 1993 University of Cambridge | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 5 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 6 | Printing of theories, theorems, etc. | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 7 | *) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 8 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 9 | signature DISPLAY = | 
| 4950 | 10 | sig | 
| 11 | val show_hyps : bool ref | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 12 | val pretty_thm : thm -> Pretty.T | 
| 4950 | 13 | val string_of_thm : thm -> string | 
| 14 | val pprint_thm : thm -> pprint_args -> unit | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 15 | val print_thm : thm -> unit | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 16 | val prth : thm -> thm | 
| 4270 | 17 | val prthq : thm Seq.seq -> thm Seq.seq | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 18 | val prths : thm list -> thm list | 
| 4950 | 19 | val pretty_ctyp : ctyp -> Pretty.T | 
| 20 | val pprint_ctyp : ctyp -> pprint_args -> unit | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 21 | val string_of_ctyp : ctyp -> string | 
| 4950 | 22 | val print_ctyp : ctyp -> unit | 
| 23 | val pretty_cterm : cterm -> Pretty.T | |
| 24 | val pprint_cterm : cterm -> pprint_args -> unit | |
| 25 | val string_of_cterm : cterm -> string | |
| 26 | val print_cterm : cterm -> unit | |
| 27 | val pretty_theory : theory -> Pretty.T | |
| 28 | val pprint_theory : theory -> pprint_args -> unit | |
| 29 | val print_syntax : theory -> unit | |
| 30 | val print_theory : theory -> unit | |
| 31 | val pretty_name_space : string * NameSpace.T -> Pretty.T | |
| 32 | val show_consts : bool ref | |
| 5245 | 33 | |
| 4950 | 34 | end; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 35 | |
| 4950 | 36 | structure Display: DISPLAY = | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 37 | struct | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 38 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 39 | (*If false, hypotheses are printed as dots*) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 40 | val show_hyps = ref true; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 41 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 42 | fun pretty_thm th = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 43 | let | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 44 |     val {sign, hyps, prop, ...} = rep_thm th;
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 45 | val xshyps = extra_shyps th; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 46 | val hlen = length xshyps + length hyps; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 47 | val hsymbs = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 48 | if hlen = 0 then [] | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 49 | else if ! show_hyps then | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 50 | [Pretty.brk 2, Pretty.list "[" "]" | 
| 3785 | 51 | (map (Sign.pretty_term sign) hyps @ | 
| 52 | map (Sign.pretty_sort sign) xshyps)] | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 53 | else | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 54 |         [Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^ "]")];
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 55 | in | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 56 | Pretty.block (Sign.pretty_term sign prop :: hsymbs) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 57 | end; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 58 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 59 | val string_of_thm = Pretty.string_of o pretty_thm; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 60 | val pprint_thm = Pretty.pprint o Pretty.quote o pretty_thm; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 61 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 62 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 63 | (** Top-level commands for printing theorems **) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 64 | val print_thm = writeln o string_of_thm; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 65 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 66 | fun prth th = (print_thm th; th); | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 67 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 68 | (*Print and return a sequence of theorems, separated by blank lines. *) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 69 | fun prthq thseq = | 
| 4270 | 70 | (Seq.print (fn _ => print_thm) 100000 thseq; thseq); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 71 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 72 | (*Print and return a list of theorems, separated by blank lines. *) | 
| 4210 | 73 | fun prths ths = (seq (fn th => (print_thm th; writeln "")) ths; ths); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 74 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 75 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 76 | (* other printing commands *) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 77 | |
| 4126 | 78 | fun pretty_ctyp cT = | 
| 79 |   let val {sign, T} = rep_ctyp cT in Sign.pretty_typ sign T end;
 | |
| 80 | ||
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 81 | fun pprint_ctyp cT = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 82 |   let val {sign, T} = rep_ctyp cT in Sign.pprint_typ sign T end;
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 83 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 84 | fun string_of_ctyp cT = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 85 |   let val {sign, T} = rep_ctyp cT in Sign.string_of_typ sign T end;
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 86 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 87 | val print_ctyp = writeln o string_of_ctyp; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 88 | |
| 3547 | 89 | fun pretty_cterm ct = | 
| 90 |   let val {sign, t, ...} = rep_cterm ct in Sign.pretty_term sign t end;
 | |
| 91 | ||
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 92 | fun pprint_cterm ct = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 93 |   let val {sign, t, ...} = rep_cterm ct in Sign.pprint_term sign t end;
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 94 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 95 | fun string_of_cterm ct = | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 96 |   let val {sign, t, ...} = rep_cterm ct in Sign.string_of_term sign t end;
 | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 97 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 98 | val print_cterm = writeln o string_of_cterm; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 99 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 100 | |
| 4250 | 101 | |
| 102 | (** print theory **) | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 103 | |
| 4950 | 104 | val pretty_theory = Sign.pretty_sg o sign_of; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 105 | val pprint_theory = Sign.pprint_sg o sign_of; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 106 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 107 | val print_syntax = Syntax.print_syntax o syn_of; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 108 | |
| 4250 | 109 | |
| 4498 | 110 | (* pretty_name_space *) | 
| 111 | ||
| 112 | fun pretty_name_space (kind, space) = | |
| 113 | let | |
| 114 | fun prt_entry (name, accs) = Pretty.block | |
| 115 | (Pretty.str (quote name ^ " =") :: Pretty.brk 1 :: | |
| 116 | Pretty.commas (map (Pretty.str o quote) accs)); | |
| 117 | in | |
| 118 | Pretty.fbreaks (Pretty.str (kind ^ ":") :: map prt_entry (NameSpace.dest space)) | |
| 119 | |> Pretty.block | |
| 120 | end; | |
| 121 | ||
| 122 | ||
| 123 | ||
| 4250 | 124 | (* print signature *) | 
| 125 | ||
| 126 | fun print_sign sg = | |
| 127 | let | |
| 128 | fun prt_cls c = Sign.pretty_sort sg [c]; | |
| 129 | fun prt_sort S = Sign.pretty_sort sg S; | |
| 130 | fun prt_arity t (c, Ss) = Sign.pretty_arity sg (t, Ss, [c]); | |
| 131 | fun prt_typ ty = Pretty.quote (Sign.pretty_typ sg ty); | |
| 132 | ||
| 133 | val ext_class = Sign.cond_extern sg Sign.classK; | |
| 134 | val ext_tycon = Sign.cond_extern sg Sign.typeK; | |
| 135 | val ext_const = Sign.cond_extern sg Sign.constK; | |
| 136 | ||
| 137 | ||
| 138 | fun pretty_classes cs = Pretty.block | |
| 139 | (Pretty.breaks (Pretty.str "classes:" :: map prt_cls cs)); | |
| 140 | ||
| 141 | fun pretty_classrel (c, cs) = Pretty.block | |
| 142 | (prt_cls c :: Pretty.str " <" :: Pretty.brk 1 :: | |
| 143 | Pretty.commas (map prt_cls cs)); | |
| 144 | ||
| 145 | fun pretty_default S = Pretty.block | |
| 146 | [Pretty.str "default:", Pretty.brk 1, prt_sort S]; | |
| 147 | ||
| 148 | fun pretty_ty (t, n) = Pretty.block | |
| 149 |       [Pretty.str (ext_tycon t), Pretty.str (" " ^ string_of_int n)];
 | |
| 150 | ||
| 151 | fun pretty_abbr (t, (vs, rhs)) = Pretty.block | |
| 152 | [prt_typ (Type (t, map (fn v => TVar ((v, 0), [])) vs)), | |
| 153 | Pretty.str " =", Pretty.brk 1, prt_typ rhs]; | |
| 154 | ||
| 155 | fun pretty_arities (t, ars) = map (prt_arity t) ars; | |
| 156 | ||
| 157 | fun pretty_const (c, ty) = Pretty.block | |
| 158 | [Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ ty]; | |
| 159 | ||
| 160 |     val {self = _, tsig, const_tab, syn = _, path, spaces, data} = Sign.rep_sg sg;
 | |
| 4440 | 161 | val spaces' = sort_wrt fst spaces; | 
| 4250 | 162 |     val {classes, classrel, default, tycons, abbrs, arities} =
 | 
| 163 | Type.rep_tsig tsig; | |
| 164 | val consts = sort_wrt fst (map (apfst ext_const) (Symtab.dest const_tab)); | |
| 165 | in | |
| 166 |     Pretty.writeln (Pretty.strs ("stamps:" :: Sign.stamp_names_of sg));
 | |
| 4256 | 167 |     Pretty.writeln (Pretty.strs ("data:" :: Sign.data_kinds data));
 | 
| 4782 | 168 | Pretty.writeln (Pretty.strs ["name prefix:", NameSpace.pack path]); | 
| 4498 | 169 | Pretty.writeln (Pretty.big_list "name spaces:" (map pretty_name_space spaces')); | 
| 4250 | 170 | Pretty.writeln (pretty_classes classes); | 
| 171 | Pretty.writeln (Pretty.big_list "class relation:" (map pretty_classrel classrel)); | |
| 172 | Pretty.writeln (pretty_default default); | |
| 173 | Pretty.writeln (Pretty.big_list "type constructors:" (map pretty_ty tycons)); | |
| 174 | Pretty.writeln (Pretty.big_list "type abbreviations:" (map pretty_abbr abbrs)); | |
| 175 | Pretty.writeln (Pretty.big_list "type arities:" (flat (map pretty_arities arities))); | |
| 176 | Pretty.writeln (Pretty.big_list "consts:" (map pretty_const consts)) | |
| 177 | end; | |
| 178 | ||
| 179 | ||
| 180 | (* print axioms, oracles, theorems *) | |
| 181 | ||
| 3811 | 182 | fun print_thy thy = | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 183 | let | 
| 3990 | 184 |     val {sign, axioms, oracles, ...} = rep_theory thy;
 | 
| 185 | val axioms = Symtab.dest axioms; | |
| 3811 | 186 | val oras = map fst (Symtab.dest oracles); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 187 | |
| 3936 | 188 | fun prt_axm (a, t) = Pretty.block | 
| 3990 | 189 | [Pretty.str (Sign.cond_extern sign Theory.axiomK a ^ ":"), Pretty.brk 1, | 
| 3936 | 190 | Pretty.quote (Sign.pretty_term sign t)]; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 191 | in | 
| 3990 | 192 | Pretty.writeln (Pretty.big_list "axioms:" (map prt_axm axioms)); | 
| 4993 | 193 |     Pretty.writeln (Pretty.strs ("oracles:" :: oras))
 | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 194 | end; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 195 | |
| 4250 | 196 | fun print_theory thy = (print_sign (sign_of thy); print_thy thy); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 197 | |
| 4250 | 198 | (*also show consts in case of showing types?*) | 
| 3851 
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
 wenzelm parents: 
3811diff
changeset | 199 | val show_consts = ref false; | 
| 
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
 wenzelm parents: 
3811diff
changeset | 200 | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 201 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 202 | end; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 203 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 204 | open Display; |