| author | wenzelm | 
| Thu, 01 Jan 2009 10:42:48 +0100 | |
| changeset 29283 | f4743512b12d | 
| parent 29091 | b81fe045e799 | 
| child 29606 | fedb8be05f24 | 
| 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 | |
| 19420 | 6 | Printing of theorems, goals, results etc. | 
| 1591 
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 | |
| 11883 | 9 | signature BASIC_DISPLAY = | 
| 10 | sig | |
| 12081 | 11 | val goals_limit: int ref | 
| 11883 | 12 | val show_hyps: bool ref | 
| 13 | val show_tags: bool ref | |
| 14 | val show_consts: bool ref | |
| 15 | end; | |
| 16 | ||
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 17 | signature DISPLAY = | 
| 4950 | 18 | sig | 
| 11883 | 19 | include BASIC_DISPLAY | 
| 14876 | 20 | val pretty_flexpair: Pretty.pp -> term * term -> Pretty.T | 
| 17447 | 21 | val pretty_thm_aux: Pretty.pp -> bool -> bool -> term list -> thm -> Pretty.T | 
| 11883 | 22 | val pretty_thm: thm -> Pretty.T | 
| 26928 | 23 | val string_of_thm: thm -> string | 
| 11883 | 24 | val pretty_thms: thm list -> Pretty.T | 
| 16437 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 wenzelm parents: 
16364diff
changeset | 25 | val pretty_thm_sg: theory -> thm -> Pretty.T | 
| 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 wenzelm parents: 
16364diff
changeset | 26 | val pretty_thms_sg: theory -> thm list -> Pretty.T | 
| 26928 | 27 | val print_thm: thm -> unit | 
| 28 | val print_thms: thm list -> unit | |
| 29 | val prth: thm -> thm | |
| 30 | val prthq: thm Seq.seq -> thm Seq.seq | |
| 31 | val prths: thm list -> thm list | |
| 11883 | 32 | val pretty_ctyp: ctyp -> Pretty.T | 
| 26928 | 33 | val string_of_ctyp: ctyp -> string | 
| 34 | val print_ctyp: ctyp -> unit | |
| 11883 | 35 | val pretty_cterm: cterm -> Pretty.T | 
| 26928 | 36 | val string_of_cterm: cterm -> string | 
| 37 | val print_cterm: cterm -> unit | |
| 38 | val print_syntax: theory -> unit | |
| 20629 
8f6cc81ba4a3
pretty_full_theory: suppress internal entities by default;
 wenzelm parents: 
20226diff
changeset | 39 | val pretty_full_theory: bool -> theory -> Pretty.T list | 
| 23634 | 40 | val pretty_goals_aux: Pretty.pp -> Markup.T -> bool * bool -> int -> thm -> Pretty.T list | 
| 11883 | 41 | val pretty_goals: int -> thm -> Pretty.T list | 
| 42 | val print_goals: int -> thm -> unit | |
| 4950 | 43 | end; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 44 | |
| 4950 | 45 | structure Display: DISPLAY = | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 46 | struct | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 47 | |
| 11883 | 48 | |
| 6087 | 49 | (** print thm **) | 
| 50 | ||
| 16534 | 51 | val goals_limit = ref 10; (*max number of goals to print*) | 
| 12831 
a2a3896f9c48
reset show_hyps by default (in accordance to existing Isar practice);
 wenzelm parents: 
12418diff
changeset | 52 | val show_hyps = ref false; (*false: print meta-hypotheses as dots*) | 
| 11883 | 53 | val show_tags = ref false; (*false: suppress tags*) | 
| 6087 | 54 | |
| 28840 | 55 | fun pretty_tag (name, arg) = Pretty.strs [name, quote arg]; | 
| 6087 | 56 | val pretty_tags = Pretty.list "[" "]" o map pretty_tag; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 57 | |
| 14876 | 58 | fun pretty_flexpair pp (t, u) = Pretty.block | 
| 59 | [Pretty.term pp t, Pretty.str " =?=", Pretty.brk 1, Pretty.term pp u]; | |
| 13658 
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
 berghofe parents: 
12831diff
changeset | 60 | |
| 17447 | 61 | fun pretty_thm_aux pp quote show_hyps' asms raw_th = | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 62 | let | 
| 17447 | 63 | val th = Thm.strip_shyps raw_th; | 
| 28316 
b17d863a050f
type thm: fully internal derivation, no longer exported;
 wenzelm parents: 
28290diff
changeset | 64 |     val {hyps, tpairs, prop, ...} = Thm.rep_thm th;
 | 
| 6087 | 65 | val xshyps = Thm.extra_shyps th; | 
| 21646 
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
 wenzelm parents: 
20629diff
changeset | 66 | val tags = Thm.get_tags th; | 
| 6087 | 67 | |
| 13658 
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
 berghofe parents: 
12831diff
changeset | 68 | val q = if quote then Pretty.quote else I; | 
| 22878 | 69 | val prt_term = q o Pretty.term pp; | 
| 6279 | 70 | |
| 19300 | 71 | val hyps' = if ! show_hyps then hyps else subtract (op aconv) asms hyps; | 
| 28802 
9ba30eeec7ce
pretty_thm: oracle flag is always false for now (would require detailed check wrt. promises);
 wenzelm parents: 
28316diff
changeset | 72 | (* FIXME | 
| 
9ba30eeec7ce
pretty_thm: oracle flag is always false for now (would require detailed check wrt. promises);
 wenzelm parents: 
28316diff
changeset | 73 | val ora' = Thm.oracle_of th andalso (! show_hyps orelse not (! quick_and_dirty)); *) | 
| 
9ba30eeec7ce
pretty_thm: oracle flag is always false for now (would require detailed check wrt. promises);
 wenzelm parents: 
28316diff
changeset | 74 | val ora' = false; | 
| 
9ba30eeec7ce
pretty_thm: oracle flag is always false for now (would require detailed check wrt. promises);
 wenzelm parents: 
28316diff
changeset | 75 | |
| 17447 | 76 | val hlen = length xshyps + length hyps' + length tpairs; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 77 | val hsymbs = | 
| 17475 | 78 | if hlen = 0 andalso not ora' then [] | 
| 17447 | 79 | else if ! show_hyps orelse show_hyps' then | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 80 | [Pretty.brk 2, Pretty.list "[" "]" | 
| 17447 | 81 | (map (q o pretty_flexpair pp) tpairs @ map prt_term hyps' @ | 
| 14876 | 82 | map (Pretty.sort pp) xshyps @ | 
| 17475 | 83 | (if ora' then [Pretty.str "!"] else []))] | 
| 6889 | 84 |       else [Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^
 | 
| 17475 | 85 | (if ora' then "!" else "") ^ "]")]; | 
| 6087 | 86 | val tsymbs = | 
| 87 | if null tags orelse not (! show_tags) then [] | |
| 88 | else [Pretty.brk 1, pretty_tags tags]; | |
| 6279 | 89 | in Pretty.block (prt_term prop :: (hsymbs @ tsymbs)) end; | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 90 | |
| 20226 | 91 | fun pretty_thm th = | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 92 | pretty_thm_aux (Syntax.pp_global (Thm.theory_of_thm th)) true false [] th; | 
| 6889 | 93 | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 94 | 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 | 95 | |
| 6087 | 96 | fun pretty_thms [th] = pretty_thm th | 
| 97 | | pretty_thms ths = Pretty.block (Pretty.fbreaks (map pretty_thm ths)); | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 98 | |
| 16437 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 wenzelm parents: 
16364diff
changeset | 99 | val pretty_thm_sg = pretty_thm oo Thm.transfer; | 
| 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 wenzelm parents: 
16364diff
changeset | 100 | val pretty_thms_sg = pretty_thms oo (map o Thm.transfer); | 
| 10010 | 101 | |
| 6087 | 102 | |
| 103 | (* top-level commands for printing theorems *) | |
| 104 | ||
| 105 | val print_thm = Pretty.writeln o pretty_thm; | |
| 106 | val print_thms = Pretty.writeln o pretty_thms; | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 107 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 108 | fun prth th = (print_thm th; th); | 
| 16534 | 109 | fun prthq thq = (Seq.print (K print_thm) 100000 thq; thq); | 
| 110 | fun prths ths = (prthq (Seq.of_list ths); ths); | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 111 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 112 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 113 | (* other printing commands *) | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 114 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 115 | fun pretty_ctyp cT = Syntax.pretty_typ_global (Thm.theory_of_ctyp cT) (Thm.typ_of cT); | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 116 | fun string_of_ctyp cT = Syntax.string_of_typ_global (Thm.theory_of_ctyp cT) (Thm.typ_of cT); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 117 | val print_ctyp = writeln o string_of_ctyp; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 118 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 119 | fun pretty_cterm ct = Syntax.pretty_term_global (Thm.theory_of_cterm ct) (Thm.term_of ct); | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 120 | fun string_of_cterm ct = Syntax.string_of_term_global (Thm.theory_of_cterm ct) (Thm.term_of ct); | 
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 121 | val print_cterm = writeln o string_of_cterm; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 122 | |
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 123 | |
| 4250 | 124 | |
| 125 | (** print theory **) | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 126 | |
| 16437 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 wenzelm parents: 
16364diff
changeset | 127 | val print_syntax = Syntax.print_syntax o Sign.syn_of; | 
| 4498 | 128 | |
| 129 | ||
| 11883 | 130 | (* pretty_full_theory *) | 
| 4250 | 131 | |
| 20629 
8f6cc81ba4a3
pretty_full_theory: suppress internal entities by default;
 wenzelm parents: 
20226diff
changeset | 132 | fun pretty_full_theory verbose thy = | 
| 4250 | 133 | let | 
| 24920 | 134 | val ctxt = ProofContext.init thy; | 
| 135 | ||
| 136 | fun prt_cls c = Syntax.pretty_sort ctxt [c]; | |
| 137 | fun prt_sort S = Syntax.pretty_sort ctxt S; | |
| 138 | fun prt_arity t (c, (_, Ss)) = Syntax.pretty_arity ctxt (t, Ss, [c]); | |
| 139 | fun prt_typ ty = Pretty.quote (Syntax.pretty_typ ctxt ty); | |
| 19806 | 140 | val prt_typ_no_tvars = prt_typ o Logic.unvarifyT; | 
| 24920 | 141 | fun prt_term t = Pretty.quote (Syntax.pretty_term ctxt t); | 
| 18936 | 142 | val prt_term_no_vars = prt_term o Logic.unvarify; | 
| 19698 | 143 | fun prt_const (c, ty) = [Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ_no_tvars ty]; | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 144 | val prt_const' = Defs.pretty_const (Syntax.pp ctxt); | 
| 4250 | 145 | |
| 14794 | 146 | fun pretty_classrel (c, []) = prt_cls c | 
| 147 | | pretty_classrel (c, cs) = Pretty.block | |
| 148 | (prt_cls c :: Pretty.str " <" :: Pretty.brk 1 :: | |
| 149 | Pretty.commas (map prt_cls cs)); | |
| 4250 | 150 | |
| 151 | fun pretty_default S = Pretty.block | |
| 14794 | 152 | [Pretty.str "default sort:", Pretty.brk 1, prt_sort S]; | 
| 4250 | 153 | |
| 14996 | 154 | val tfrees = map (fn v => TFree (v, [])); | 
| 27302 | 155 | fun pretty_type syn (t, ((Type.LogicalType n, _), _)) = | 
| 15531 | 156 | if syn then NONE | 
| 24848 | 157 | else SOME (prt_typ (Type (t, tfrees (Name.invents Name.context Name.aT n)))) | 
| 27302 | 158 | | pretty_type syn (t, ((Type.Abbreviation (vs, U, syn'), _), _)) = | 
| 15531 | 159 | if syn <> syn' then NONE | 
| 160 | else SOME (Pretty.block | |
| 14996 | 161 | [prt_typ (Type (t, tfrees vs)), Pretty.str " =", Pretty.brk 1, prt_typ U]) | 
| 27302 | 162 | | pretty_type syn (t, ((Type.Nonterminal, _), _)) = | 
| 15531 | 163 | if not syn then NONE | 
| 164 | else SOME (prt_typ (Type (t, []))); | |
| 4250 | 165 | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19420diff
changeset | 166 | val pretty_arities = maps (fn (t, ars) => map (prt_arity t) ars); | 
| 14223 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14178diff
changeset | 167 | |
| 19698 | 168 | fun pretty_abbrev (c, (ty, t)) = Pretty.block | 
| 169 | (prt_const (c, ty) @ [Pretty.str " ==", Pretty.brk 1, prt_term_no_vars t]); | |
| 170 | ||
| 171 | fun pretty_axm (a, t) = Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, prt_term_no_vars t]; | |
| 19365 | 172 | |
| 19702 | 173 | fun pretty_finals reds = Pretty.block | 
| 19703 | 174 | (Pretty.str "final:" :: Pretty.brk 1 :: Pretty.commas (map (prt_const' o fst) reds)); | 
| 19702 | 175 | |
| 19698 | 176 | fun pretty_reduct (lhs, rhs) = Pretty.block | 
| 19702 | 177 | ([prt_const' lhs, Pretty.str " ->", Pretty.brk 2] @ | 
| 178 | Pretty.commas (map prt_const' (sort_wrt #1 rhs))); | |
| 4250 | 179 | |
| 19698 | 180 | fun pretty_restrict (const, name) = | 
| 181 |       Pretty.block ([prt_const' const, Pretty.brk 2, Pretty.str ("(from " ^ quote name ^ ")")]);
 | |
| 8720 | 182 | |
| 24665 | 183 | val axioms = (Theory.axiom_space thy, Theory.axiom_table thy); | 
| 184 | val defs = Theory.defs_of thy; | |
| 19698 | 185 |     val {restricts, reducts} = Defs.dest defs;
 | 
| 18061 | 186 |     val {naming, syn = _, tsig, consts} = Sign.rep_sg thy;
 | 
| 18936 | 187 |     val {constants, constraints} = Consts.dest consts;
 | 
| 19698 | 188 | val extern_const = NameSpace.extern (#1 constants); | 
| 26637 | 189 |     val {classes, default, types, ...} = Type.rep_tsig tsig;
 | 
| 19698 | 190 | val (class_space, class_algebra) = classes; | 
| 19642 | 191 |     val {classes, arities} = Sorts.rep_algebra class_algebra;
 | 
| 14996 | 192 | |
| 24774 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 193 | val clsses = NameSpace.dest_table (class_space, Symtab.make (Graph.dest classes)); | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 194 | val tdecls = NameSpace.dest_table types; | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 195 | val arties = NameSpace.dest_table (Sign.type_space thy, arities); | 
| 20629 
8f6cc81ba4a3
pretty_full_theory: suppress internal entities by default;
 wenzelm parents: 
20226diff
changeset | 196 | |
| 24774 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 197 | fun prune_const c = not verbose andalso | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 198 | member (op =) (Consts.the_tags consts c) Markup.property_internal; | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 199 | val cnsts = NameSpace.extern_table (#1 constants, | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 200 | Symtab.make (filter_out (prune_const o fst) (Symtab.dest (#2 constants)))); | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 201 | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19420diff
changeset | 202 | val log_cnsts = map_filter (fn (c, (ty, NONE)) => SOME (c, ty) | _ => NONE) cnsts; | 
| 25405 | 203 | val abbrevs = map_filter (fn (c, (ty, SOME t)) => SOME (c, (ty, t)) | _ => NONE) cnsts; | 
| 24774 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 204 | val cnstrs = NameSpace.extern_table constraints; | 
| 19698 | 205 | |
| 24774 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 206 | val axms = NameSpace.extern_table axioms; | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 207 | |
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 208 | val (reds0, (reds1, reds2)) = filter_out (prune_const o fst o fst) reducts | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 209 | |> map (fn (lhs, rhs) => | 
| 
bc31c318e673
print_theory: observe Markup.internal_property of consts, discontinued special treatment of internal names elsewhere;
 wenzelm parents: 
24665diff
changeset | 210 | (apfst extern_const lhs, map (apfst extern_const) (filter_out (prune_const o fst) rhs))) | 
| 19702 | 211 | |> sort_wrt (#1 o #1) | 
| 212 | |> List.partition (null o #2) | |
| 213 | ||> List.partition (Defs.plain_args o #2 o #1); | |
| 19698 | 214 | val rests = restricts |> map (apfst (apfst extern_const)) |> sort_wrt (#1 o #1); | 
| 4250 | 215 | in | 
| 29091 | 216 |     [Pretty.strs ("names:" :: Context.display_names thy)] @
 | 
| 20629 
8f6cc81ba4a3
pretty_full_theory: suppress internal entities by default;
 wenzelm parents: 
20226diff
changeset | 217 | [Pretty.strs ["name prefix:", NameSpace.path_of naming], | 
| 16364 | 218 | Pretty.big_list "classes:" (map pretty_classrel clsses), | 
| 8720 | 219 | pretty_default default, | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19420diff
changeset | 220 | Pretty.big_list "syntactic types:" (map_filter (pretty_type true) tdecls), | 
| 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19420diff
changeset | 221 | Pretty.big_list "logical types:" (map_filter (pretty_type false) tdecls), | 
| 16534 | 222 | Pretty.big_list "type arities:" (pretty_arities arties), | 
| 19698 | 223 | Pretty.big_list "logical consts:" (map (Pretty.block o prt_const) log_cnsts), | 
| 19365 | 224 | Pretty.big_list "abbreviations:" (map pretty_abbrev abbrevs), | 
| 19698 | 225 | Pretty.big_list "constraints:" (map (Pretty.block o prt_const) cnstrs), | 
| 226 | Pretty.big_list "axioms:" (map pretty_axm axms), | |
| 28290 | 227 |       Pretty.strs ("oracles:" :: Thm.extern_oracles thy),
 | 
| 19698 | 228 | Pretty.big_list "definitions:" | 
| 19702 | 229 | [pretty_finals reds0, | 
| 230 | Pretty.big_list "non-overloaded:" (map pretty_reduct reds1), | |
| 231 | Pretty.big_list "overloaded:" (map pretty_reduct reds2), | |
| 232 | Pretty.big_list "pattern restrictions:" (map pretty_restrict rests)]] | |
| 4250 | 233 | end; | 
| 234 | ||
| 235 | ||
| 11883 | 236 | |
| 237 | (** print_goals **) | |
| 238 | ||
| 239 | (* print_goals etc. *) | |
| 240 | ||
| 16534 | 241 | val show_consts = ref false; (*true: show consts with types in proof state output*) | 
| 3851 
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
 wenzelm parents: 
3811diff
changeset | 242 | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 243 | |
| 11883 | 244 | (*print thm A1,...,An/B in "goal style" -- premises as numbered subgoals*) | 
| 245 | ||
| 246 | local | |
| 247 | ||
| 18980 | 248 | fun ins_entry (x, y) = | 
| 249 | AList.default (op =) (x, []) #> | |
| 250 | AList.map_entry (op =) x (insert (op =) y); | |
| 12081 | 251 | |
| 18980 | 252 | val add_consts = Term.fold_aterms | 
| 253 | (fn Const (c, T) => ins_entry (T, (c, T)) | |
| 254 | | _ => I); | |
| 11883 | 255 | |
| 18980 | 256 | val add_vars = Term.fold_aterms | 
| 257 | (fn Free (x, T) => ins_entry (T, (x, ~1)) | |
| 258 | | Var (xi, T) => ins_entry (T, xi) | |
| 259 | | _ => I); | |
| 11883 | 260 | |
| 18980 | 261 | val add_varsT = Term.fold_atyps | 
| 262 | (fn TFree (x, S) => ins_entry (S, (x, ~1)) | |
| 263 | | TVar (xi, S) => ins_entry (S, xi) | |
| 264 | | _ => I); | |
| 11883 | 265 | |
| 16490 | 266 | fun sort_idxs vs = map (apsnd (sort (prod_ord string_ord int_ord))) vs; | 
| 12081 | 267 | fun sort_cnsts cs = map (apsnd (sort_wrt fst)) cs; | 
| 268 | ||
| 18980 | 269 | fun consts_of t = sort_cnsts (add_consts t []); | 
| 270 | fun vars_of t = sort_idxs (add_vars t []); | |
| 271 | fun varsT_of t = rev (sort_idxs (Term.fold_types add_varsT t [])); | |
| 12081 | 272 | |
| 273 | in | |
| 11883 | 274 | |
| 23634 | 275 | fun pretty_goals_aux pp markup (msg, main) maxgoals state = | 
| 12081 | 276 | let | 
| 277 | fun prt_atoms prt prtT (X, xs) = Pretty.block | |
| 278 | [Pretty.block (Pretty.commas (map prt xs)), Pretty.str " ::", | |
| 279 | Pretty.brk 1, prtT X]; | |
| 11883 | 280 | |
| 14876 | 281 | fun prt_var (x, ~1) = Pretty.term pp (Syntax.free x) | 
| 282 | | prt_var xi = Pretty.term pp (Syntax.var xi); | |
| 12081 | 283 | |
| 14876 | 284 | fun prt_varT (x, ~1) = Pretty.typ pp (TFree (x, [])) | 
| 285 | | prt_varT xi = Pretty.typ pp (TVar (xi, [])); | |
| 12081 | 286 | |
| 14876 | 287 | val prt_consts = prt_atoms (Pretty.term pp o Const) (Pretty.typ pp); | 
| 288 | val prt_vars = prt_atoms prt_var (Pretty.typ pp); | |
| 289 | val prt_varsT = prt_atoms prt_varT (Pretty.sort pp); | |
| 11883 | 290 | |
| 291 | ||
| 12081 | 292 | fun pretty_list _ _ [] = [] | 
| 293 | | pretty_list name prt lst = [Pretty.big_list name (map prt lst)]; | |
| 11883 | 294 | |
| 23634 | 295 | fun pretty_subgoal (n, A) = Pretty.markup markup | 
| 296 |       [Pretty.str (" " ^ string_of_int n ^ ". "), Pretty.term pp A];
 | |
| 12081 | 297 | fun pretty_subgoals As = map pretty_subgoal (1 upto length As ~~ As); | 
| 11883 | 298 | |
| 14876 | 299 | val pretty_ffpairs = pretty_list "flex-flex pairs:" (pretty_flexpair pp); | 
| 11883 | 300 | |
| 12081 | 301 | val pretty_consts = pretty_list "constants:" prt_consts o consts_of; | 
| 302 | val pretty_vars = pretty_list "variables:" prt_vars o vars_of; | |
| 303 | val pretty_varsT = pretty_list "type variables:" prt_varsT o varsT_of; | |
| 11883 | 304 | |
| 305 | ||
| 16290 | 306 |     val {prop, tpairs, ...} = Thm.rep_thm state;
 | 
| 13658 
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
 berghofe parents: 
12831diff
changeset | 307 | val (As, B) = Logic.strip_horn prop; | 
| 12081 | 308 | val ngoals = length As; | 
| 11883 | 309 | |
| 12081 | 310 | fun pretty_gs (types, sorts) = | 
| 14876 | 311 | (if main then [Pretty.term pp B] else []) @ | 
| 12081 | 312 | (if ngoals = 0 then [Pretty.str "No subgoals!"] | 
| 313 | else if ngoals > maxgoals then | |
| 15570 | 314 | pretty_subgoals (Library.take (maxgoals, As)) @ | 
| 12081 | 315 |           (if msg then [Pretty.str ("A total of " ^ string_of_int ngoals ^ " subgoals...")]
 | 
| 316 | else []) | |
| 317 | else pretty_subgoals As) @ | |
| 318 | pretty_ffpairs tpairs @ | |
| 319 | (if ! show_consts then pretty_consts prop else []) @ | |
| 320 | (if types then pretty_vars prop else []) @ | |
| 321 | (if sorts then pretty_varsT prop else []); | |
| 322 | in | |
| 323 | setmp show_no_free_types true | |
| 14178 
14a12da7288e
Makes interactive proof scripting recognize the show_all_types flag.
 skalberg parents: 
13658diff
changeset | 324 | (setmp show_types (! show_types orelse ! show_sorts orelse ! show_all_types) | 
| 12081 | 325 | (setmp show_sorts false pretty_gs)) | 
| 14178 
14a12da7288e
Makes interactive proof scripting recognize the show_all_types flag.
 skalberg parents: 
13658diff
changeset | 326 | (! show_types orelse ! show_sorts orelse ! show_all_types, ! show_sorts) | 
| 11883 | 327 | end; | 
| 328 | ||
| 23634 | 329 | fun pretty_goals n th = | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26928diff
changeset | 330 | pretty_goals_aux (Syntax.pp_global (Thm.theory_of_thm th)) Markup.none (true, true) n th; | 
| 12081 | 331 | |
| 23634 | 332 | val print_goals = (Pretty.writeln o Pretty.chunks) oo pretty_goals; | 
| 12081 | 333 | |
| 1591 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 334 | end; | 
| 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 paulson parents: diff
changeset | 335 | |
| 11883 | 336 | |
| 337 | end; | |
| 338 | ||
| 339 | structure BasicDisplay: BASIC_DISPLAY = Display; | |
| 340 | open BasicDisplay; |