| author | wenzelm | 
| Mon, 26 Sep 2005 19:19:15 +0200 | |
| changeset 17658 | ab7954ba5261 | 
| parent 17475 | d008d04068a1 | 
| child 17704 | f776b3bf4126 | 
| 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  | 
|
| 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 string_of_thm: thm -> string  | 
|
15  | 
val print_thm: thm -> unit  | 
|
16  | 
val print_thms: thm list -> unit  | 
|
17  | 
val prth: thm -> thm  | 
|
18  | 
val prthq: thm Seq.seq -> thm Seq.seq  | 
|
19  | 
val prths: thm list -> thm list  | 
|
20  | 
val string_of_ctyp: ctyp -> string  | 
|
21  | 
val print_ctyp: ctyp -> unit  | 
|
22  | 
val string_of_cterm: cterm -> string  | 
|
23  | 
val print_cterm: cterm -> unit  | 
|
24  | 
val print_syntax: theory -> unit  | 
|
25  | 
val show_consts: bool ref  | 
|
26  | 
end;  | 
|
27  | 
||
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
28  | 
signature DISPLAY =  | 
| 4950 | 29  | 
sig  | 
| 11883 | 30  | 
include BASIC_DISPLAY  | 
| 14876 | 31  | 
val pretty_flexpair: Pretty.pp -> term * term -> Pretty.T  | 
| 17447 | 32  | 
val pretty_thm_aux: Pretty.pp -> bool -> bool -> term list -> thm -> Pretty.T  | 
| 6976 | 33  | 
val pretty_thm_no_quote: thm -> Pretty.T  | 
| 11883 | 34  | 
val pretty_thm: thm -> Pretty.T  | 
35  | 
val pretty_thms: thm list -> Pretty.T  | 
|
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
36  | 
val pretty_thm_sg: theory -> thm -> Pretty.T  | 
| 
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
37  | 
val pretty_thms_sg: theory -> thm list -> Pretty.T  | 
| 11883 | 38  | 
val pprint_thm: thm -> pprint_args -> unit  | 
39  | 
val pretty_ctyp: ctyp -> Pretty.T  | 
|
40  | 
val pprint_ctyp: ctyp -> pprint_args -> unit  | 
|
41  | 
val pretty_cterm: cterm -> Pretty.T  | 
|
42  | 
val pprint_cterm: cterm -> pprint_args -> unit  | 
|
| 8720 | 43  | 
val pretty_full_theory: theory -> Pretty.T list  | 
| 14876 | 44  | 
val pretty_goals_aux: Pretty.pp -> string -> bool * bool -> int -> thm -> Pretty.T list  | 
| 11883 | 45  | 
val pretty_goals: int -> thm -> Pretty.T list  | 
46  | 
val print_goals: int -> thm -> unit  | 
|
47  | 
val current_goals_markers: (string * string * string) ref  | 
|
| 12418 | 48  | 
val pretty_current_goals: int -> int -> thm -> Pretty.T list  | 
49  | 
val print_current_goals_default: int -> int -> thm -> unit  | 
|
50  | 
val print_current_goals_fn: (int -> int -> thm -> unit) ref  | 
|
| 4950 | 51  | 
end;  | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
52  | 
|
| 4950 | 53  | 
structure Display: DISPLAY =  | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
54  | 
struct  | 
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
55  | 
|
| 11883 | 56  | 
|
| 6087 | 57  | 
(** print thm **)  | 
58  | 
||
| 16534 | 59  | 
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: 
12418 
diff
changeset
 | 
60  | 
val show_hyps = ref false; (*false: print meta-hypotheses as dots*)  | 
| 11883 | 61  | 
val show_tags = ref false; (*false: suppress tags*)  | 
| 6087 | 62  | 
|
| 
14598
 
7009f59711e3
Replaced quote by Library.quote, since quote now refers to Symbol.quote
 
berghofe 
parents: 
14472 
diff
changeset
 | 
63  | 
fun pretty_tag (name, args) = Pretty.strs (name :: map Library.quote args);  | 
| 6087 | 64  | 
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
 | 
65  | 
|
| 14876 | 66  | 
fun pretty_flexpair pp (t, u) = Pretty.block  | 
67  | 
[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: 
12831 
diff
changeset
 | 
68  | 
|
| 17447 | 69  | 
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
 | 
70  | 
let  | 
| 17447 | 71  | 
val th = Thm.strip_shyps raw_th;  | 
| 16290 | 72  | 
    val {hyps, tpairs, prop, der = (ora, _), ...} = Thm.rep_thm th;
 | 
| 6087 | 73  | 
val xshyps = Thm.extra_shyps th;  | 
74  | 
val (_, tags) = Thm.get_name_tags th;  | 
|
75  | 
||
| 
13658
 
c9ad3e64ddcf
Changed handling of flex-flex constraints: now stored in separate
 
berghofe 
parents: 
12831 
diff
changeset
 | 
76  | 
val q = if quote then Pretty.quote else I;  | 
| 14876 | 77  | 
val prt_term = q o (Pretty.term pp);  | 
| 6279 | 78  | 
|
| 17468 | 79  | 
val hyps' = if ! show_hyps then hyps else fold (remove (op aconv)) asms hyps;  | 
| 17475 | 80  | 
val ora' = ora andalso (! show_hyps orelse not (! quick_and_dirty));  | 
| 17447 | 81  | 
val hlen = length xshyps + length hyps' + length tpairs;  | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
82  | 
val hsymbs =  | 
| 17475 | 83  | 
if hlen = 0 andalso not ora' then []  | 
| 17447 | 84  | 
else if ! show_hyps orelse show_hyps' then  | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
85  | 
[Pretty.brk 2, Pretty.list "[" "]"  | 
| 17447 | 86  | 
(map (q o pretty_flexpair pp) tpairs @ map prt_term hyps' @  | 
| 14876 | 87  | 
map (Pretty.sort pp) xshyps @  | 
| 17475 | 88  | 
(if ora' then [Pretty.str "!"] else []))]  | 
| 6889 | 89  | 
      else [Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^
 | 
| 17475 | 90  | 
(if ora' then "!" else "") ^ "]")];  | 
| 6087 | 91  | 
val tsymbs =  | 
92  | 
if null tags orelse not (! show_tags) then []  | 
|
93  | 
else [Pretty.brk 1, pretty_tags tags];  | 
|
| 6279 | 94  | 
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
 | 
95  | 
|
| 12067 | 96  | 
fun gen_pretty_thm quote th =  | 
| 17447 | 97  | 
pretty_thm_aux (Sign.pp (Thm.theory_of_thm th)) quote false [] th;  | 
| 6889 | 98  | 
|
| 12067 | 99  | 
val pretty_thm = gen_pretty_thm true;  | 
100  | 
val pretty_thm_no_quote = gen_pretty_thm false;  | 
|
| 6889 | 101  | 
|
102  | 
||
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
103  | 
val string_of_thm = Pretty.string_of o pretty_thm;  | 
| 6279 | 104  | 
val pprint_thm = Pretty.pprint o pretty_thm;  | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
105  | 
|
| 6087 | 106  | 
fun pretty_thms [th] = pretty_thm th  | 
107  | 
| 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
 | 
108  | 
|
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
109  | 
val pretty_thm_sg = pretty_thm oo Thm.transfer;  | 
| 
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
110  | 
val pretty_thms_sg = pretty_thms oo (map o Thm.transfer);  | 
| 10010 | 111  | 
|
| 6087 | 112  | 
|
113  | 
(* top-level commands for printing theorems *)  | 
|
114  | 
||
115  | 
val print_thm = Pretty.writeln o pretty_thm;  | 
|
116  | 
val print_thms = Pretty.writeln o pretty_thms;  | 
|
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
117  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
118  | 
fun prth th = (print_thm th; th);  | 
| 16534 | 119  | 
fun prthq thq = (Seq.print (K print_thm) 100000 thq; thq);  | 
120  | 
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
 | 
121  | 
|
| 
 
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  | 
(* other printing commands *)  | 
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
124  | 
|
| 4126 | 125  | 
fun pretty_ctyp cT =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
126  | 
  let val {thy, T, ...} = rep_ctyp cT in Sign.pretty_typ thy T end;
 | 
| 4126 | 127  | 
|
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
128  | 
fun pprint_ctyp cT =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
129  | 
  let val {thy, T, ...} = rep_ctyp cT in Sign.pprint_typ thy T end;
 | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
130  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
131  | 
fun string_of_ctyp cT =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
132  | 
  let val {thy, T, ...} = rep_ctyp cT in Sign.string_of_typ thy T end;
 | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
133  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
134  | 
val print_ctyp = writeln o string_of_ctyp;  | 
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
135  | 
|
| 3547 | 136  | 
fun pretty_cterm ct =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
137  | 
  let val {thy, t, ...} = rep_cterm ct in Sign.pretty_term thy t end;
 | 
| 3547 | 138  | 
|
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
139  | 
fun pprint_cterm ct =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
140  | 
  let val {thy, t, ...} = rep_cterm ct in Sign.pprint_term thy t end;
 | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
141  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
142  | 
fun string_of_cterm ct =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
143  | 
  let val {thy, t, ...} = rep_cterm ct in Sign.string_of_term thy t end;
 | 
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
144  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
145  | 
val print_cterm = writeln o string_of_cterm;  | 
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
146  | 
|
| 
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
147  | 
|
| 4250 | 148  | 
|
149  | 
(** print theory **)  | 
|
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
150  | 
|
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
151  | 
val print_syntax = Syntax.print_syntax o Sign.syn_of;  | 
| 4498 | 152  | 
|
153  | 
||
| 11883 | 154  | 
(* pretty_full_theory *)  | 
| 4250 | 155  | 
|
| 8720 | 156  | 
fun pretty_full_theory thy =  | 
| 4250 | 157  | 
let  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
158  | 
fun prt_cls c = Sign.pretty_sort thy [c];  | 
| 
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
159  | 
fun prt_sort S = Sign.pretty_sort thy S;  | 
| 
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
160  | 
fun prt_arity t (c, Ss) = Sign.pretty_arity thy (t, Ss, [c]);  | 
| 
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
161  | 
fun prt_typ ty = Pretty.quote (Sign.pretty_typ thy ty);  | 
| 16290 | 162  | 
val prt_typ_no_tvars = prt_typ o Type.freeze_type;  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
163  | 
fun prt_term t = Pretty.quote (Sign.pretty_term thy t);  | 
| 4250 | 164  | 
|
| 14794 | 165  | 
fun pretty_classrel (c, []) = prt_cls c  | 
166  | 
| pretty_classrel (c, cs) = Pretty.block  | 
|
167  | 
(prt_cls c :: Pretty.str " <" :: Pretty.brk 1 ::  | 
|
168  | 
Pretty.commas (map prt_cls cs));  | 
|
| 4250 | 169  | 
|
170  | 
fun pretty_default S = Pretty.block  | 
|
| 14794 | 171  | 
[Pretty.str "default sort:", Pretty.brk 1, prt_sort S];  | 
| 4250 | 172  | 
|
| 15531 | 173  | 
fun pretty_witness NONE = Pretty.str "universal non-emptiness witness: -"  | 
174  | 
| pretty_witness (SOME (T, S)) = Pretty.block  | 
|
| 14794 | 175  | 
[Pretty.str "universal non-emptiness witness:", Pretty.brk 1,  | 
176  | 
prt_typ_no_tvars T, Pretty.str " ::", Pretty.brk 1, prt_sort S];  | 
|
177  | 
||
| 14996 | 178  | 
val tfrees = map (fn v => TFree (v, []));  | 
| 16364 | 179  | 
fun pretty_type syn (t, (Type.LogicalType n, _)) =  | 
| 15531 | 180  | 
if syn then NONE  | 
181  | 
else SOME (prt_typ (Type (t, tfrees (Term.invent_names [] "'a" n))))  | 
|
| 16364 | 182  | 
| pretty_type syn (t, (Type.Abbreviation (vs, U, syn'), _)) =  | 
| 15531 | 183  | 
if syn <> syn' then NONE  | 
184  | 
else SOME (Pretty.block  | 
|
| 14996 | 185  | 
[prt_typ (Type (t, tfrees vs)), Pretty.str " =", Pretty.brk 1, prt_typ U])  | 
| 16364 | 186  | 
| pretty_type syn (t, (Type.Nonterminal, _)) =  | 
| 15531 | 187  | 
if not syn then NONE  | 
188  | 
else SOME (prt_typ (Type (t, [])));  | 
|
| 4250 | 189  | 
|
| 15570 | 190  | 
val pretty_arities = List.concat o map (fn (t, ars) => map (prt_arity t) ars);  | 
| 
14223
 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 
skalberg 
parents: 
14178 
diff
changeset
 | 
191  | 
|
| 16937 | 192  | 
fun pretty_const (c, ty) = Pretty.block  | 
| 10737 | 193  | 
[Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ_no_tvars ty];  | 
| 4250 | 194  | 
|
| 14996 | 195  | 
fun pretty_final (c, []) = Pretty.str c  | 
196  | 
| pretty_final (c, tys) = Pretty.block  | 
|
197  | 
(Pretty.str c :: Pretty.str " ::" :: Pretty.brk 1 ::  | 
|
198  | 
Pretty.commas (map prt_typ_no_tvars tys));  | 
|
199  | 
||
| 8720 | 200  | 
fun prt_axm (a, t) = Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, prt_term t];  | 
201  | 
||
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
202  | 
    val {axioms, defs, oracles} = Theory.rep_theory thy;
 | 
| 16937 | 203  | 
    val {naming, syn = _, tsig, consts = (consts, constraints)} = Sign.rep_sg thy;
 | 
| 14794 | 204  | 
    val {classes, default, types, arities, log_types = _, witness} = Type.rep_tsig tsig;
 | 
| 14996 | 205  | 
|
| 16845 | 206  | 
val clsses = NameSpace.dest_table (apsnd (Symtab.make o Graph.dest) classes);  | 
207  | 
val tdecls = NameSpace.dest_table types;  | 
|
208  | 
val arties = NameSpace.dest_table (Sign.type_space thy, arities);  | 
|
| 16937 | 209  | 
val cnsts = NameSpace.extern_table consts |> map (apsnd fst);  | 
210  | 
val cnsts' = NameSpace.extern_table (#1 consts, constraints);  | 
|
| 16364 | 211  | 
val finals = NameSpace.extern_table (#1 consts, Defs.finals defs);  | 
| 
16334
 
b773132e3715
print_theory: omit name spaces; NameSpace.extern_table;
 
wenzelm 
parents: 
16290 
diff
changeset
 | 
212  | 
val axms = NameSpace.extern_table axioms;  | 
| 
 
b773132e3715
print_theory: omit name spaces; NameSpace.extern_table;
 
wenzelm 
parents: 
16290 
diff
changeset
 | 
213  | 
val oras = NameSpace.extern_table oracles;  | 
| 4250 | 214  | 
in  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
215  | 
    [Pretty.strs ("names:" :: Context.names_of thy),
 | 
| 16534 | 216  | 
      Pretty.strs ("theory data:" :: Context.theory_data_of thy),
 | 
217  | 
      Pretty.strs ("proof data:" :: Context.proof_data_of thy),
 | 
|
| 16127 | 218  | 
Pretty.strs ["name prefix:", NameSpace.path_of naming],  | 
| 16364 | 219  | 
Pretty.big_list "classes:" (map pretty_classrel clsses),  | 
| 8720 | 220  | 
pretty_default default,  | 
| 14794 | 221  | 
pretty_witness witness,  | 
| 15570 | 222  | 
Pretty.big_list "syntactic types:" (List.mapPartial (pretty_type true) tdecls),  | 
223  | 
Pretty.big_list "logical types:" (List.mapPartial (pretty_type false) tdecls),  | 
|
| 16534 | 224  | 
Pretty.big_list "type arities:" (pretty_arities arties),  | 
| 14794 | 225  | 
Pretty.big_list "consts:" (map pretty_const cnsts),  | 
| 16937 | 226  | 
Pretty.big_list "const constraints:" (map pretty_const cnsts'),  | 
| 14996 | 227  | 
Pretty.big_list "finals consts:" (map pretty_final finals),  | 
| 8720 | 228  | 
Pretty.big_list "axioms:" (map prt_axm axms),  | 
229  | 
      Pretty.strs ("oracles:" :: (map #1 oras))]
 | 
|
| 4250 | 230  | 
end;  | 
231  | 
||
232  | 
||
| 11883 | 233  | 
|
234  | 
(** print_goals **)  | 
|
235  | 
||
236  | 
(* print_goals etc. *)  | 
|
237  | 
||
| 16534 | 238  | 
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: 
3811 
diff
changeset
 | 
239  | 
|
| 
1591
 
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
 
paulson 
parents:  
diff
changeset
 | 
240  | 
|
| 11883 | 241  | 
(*print thm A1,...,An/B in "goal style" -- premises as numbered subgoals*)  | 
242  | 
||
243  | 
local  | 
|
244  | 
||
| 12081 | 245  | 
fun ins_entry (x, y) [] = [(x, [y])]  | 
246  | 
| ins_entry (x, y) ((pair as (x', ys')) :: pairs) =  | 
|
247  | 
if x = x' then (x', y ins ys') :: pairs  | 
|
248  | 
else pair :: ins_entry (x, y) pairs;  | 
|
249  | 
||
250  | 
fun add_consts (Const (c, T), env) = ins_entry (T, (c, T)) env  | 
|
251  | 
| add_consts (t $ u, env) = add_consts (u, add_consts (t, env))  | 
|
252  | 
| add_consts (Abs (_, _, t), env) = add_consts (t, env)  | 
|
253  | 
| add_consts (_, env) = env;  | 
|
| 11883 | 254  | 
|
| 12081 | 255  | 
fun add_vars (Free (x, T), env) = ins_entry (T, (x, ~1)) env  | 
256  | 
| add_vars (Var (xi, T), env) = ins_entry (T, xi) env  | 
|
257  | 
| add_vars (Abs (_, _, t), env) = add_vars (t, env)  | 
|
258  | 
| add_vars (t $ u, env) = add_vars (u, add_vars (t, env))  | 
|
259  | 
| add_vars (_, env) = env;  | 
|
| 11883 | 260  | 
|
| 
15574
 
b1d1b5bfc464
Removed practically all references to Library.foldr.
 
skalberg 
parents: 
15570 
diff
changeset
 | 
261  | 
fun add_varsT (Type (_, Ts), env) = foldr add_varsT env Ts  | 
| 12081 | 262  | 
| add_varsT (TFree (x, S), env) = ins_entry (S, (x, ~1)) env  | 
263  | 
| add_varsT (TVar (xi, S), env) = ins_entry (S, xi) env;  | 
|
| 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  | 
||
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 (it_term_types add_varsT (t, [])));  | 
|
271  | 
||
272  | 
in  | 
|
| 11883 | 273  | 
|
| 14876 | 274  | 
fun pretty_goals_aux pp begin_goal (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  | 
|
| 14876 | 294  | 
fun pretty_subgoal (n, A) = Pretty.blk (0,  | 
295  | 
[Pretty.str (begin_goal ^ " " ^ 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: 
12831 
diff
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: 
13658 
diff
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: 
13658 
diff
changeset
 | 
325  | 
(! show_types orelse ! show_sorts orelse ! show_all_types, ! show_sorts)  | 
| 11883 | 326  | 
end;  | 
327  | 
||
| 12081 | 328  | 
fun pretty_goals_marker bg n th =  | 
| 
16437
 
aa87badf7a3c
removed pretty_theory, pprint_theory (see context.ML or thy_info.ML);
 
wenzelm 
parents: 
16364 
diff
changeset
 | 
329  | 
pretty_goals_aux (Sign.pp (Thm.theory_of_thm th)) bg (true, true) n th;  | 
| 12081 | 330  | 
|
331  | 
val pretty_goals = pretty_goals_marker "";  | 
|
| 12418 | 332  | 
val print_goals = (Pretty.writeln o Pretty.chunks) oo pretty_goals_marker "";  | 
| 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  | 
(* print_current_goals *)  | 
|
338  | 
||
339  | 
val current_goals_markers = ref ("", "", "");
 | 
|
340  | 
||
| 12418 | 341  | 
fun pretty_current_goals n m th =  | 
| 11883 | 342  | 
let  | 
343  | 
val ref (begin_state, end_state, begin_goal) = current_goals_markers;  | 
|
344  | 
val ngoals = nprems_of th;  | 
|
345  | 
in  | 
|
| 12418 | 346  | 
(if begin_state = "" then [] else [Pretty.str begin_state]) @  | 
347  | 
    [Pretty.str ("Level " ^ string_of_int n ^
 | 
|
| 11883 | 348  | 
      (if ngoals > 0 then " (" ^ string_of_int ngoals ^ " subgoal" ^
 | 
349  | 
(if ngoals <> 1 then "s" else "") ^ ")"  | 
|
| 12418 | 350  | 
else ""))] @  | 
351  | 
pretty_goals_marker begin_goal m th @  | 
|
352  | 
(if end_state = "" then [] else [Pretty.str end_state])  | 
|
| 11883 | 353  | 
end;  | 
354  | 
||
| 12418 | 355  | 
fun print_current_goals_default n m th =  | 
356  | 
Pretty.writeln (Pretty.chunks (pretty_current_goals n m th));  | 
|
357  | 
||
| 11883 | 358  | 
val print_current_goals_fn = ref print_current_goals_default;  | 
359  | 
||
360  | 
end;  | 
|
361  | 
||
362  | 
structure BasicDisplay: BASIC_DISPLAY = Display;  | 
|
363  | 
open BasicDisplay;  |