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