author | wenzelm |
Wed, 20 May 1998 18:56:00 +0200 | |
changeset 4950 | 226f2cde9f4d |
parent 4782 | 9c0b31da51c6 |
child 4993 | 2055bfbb186c |
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_data : theory -> string -> unit |
|
31 |
val print_theory : theory -> unit |
|
32 |
val pretty_name_space : string * NameSpace.T -> Pretty.T |
|
33 |
val show_consts : bool ref |
|
34 |
val print_goals : int -> thm -> unit |
|
35 |
end; |
|
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
36 |
|
4950 | 37 |
structure Display: DISPLAY = |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
38 |
struct |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
39 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
40 |
(*If false, hypotheses are printed as dots*) |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
41 |
val show_hyps = ref true; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
42 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
43 |
fun pretty_thm th = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
44 |
let |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
45 |
val {sign, hyps, prop, ...} = rep_thm th; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
46 |
val xshyps = extra_shyps th; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
47 |
val hlen = length xshyps + length hyps; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
48 |
val hsymbs = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
49 |
if hlen = 0 then [] |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
50 |
else if ! show_hyps then |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
51 |
[Pretty.brk 2, Pretty.list "[" "]" |
3785 | 52 |
(map (Sign.pretty_term sign) hyps @ |
53 |
map (Sign.pretty_sort sign) xshyps)] |
|
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
54 |
else |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
55 |
[Pretty.brk 2, Pretty.str ("[" ^ implode (replicate hlen ".") ^ "]")]; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
56 |
in |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
57 |
Pretty.block (Sign.pretty_term sign prop :: hsymbs) |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
58 |
end; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
59 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
60 |
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
|
61 |
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
|
62 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
63 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
64 |
(** Top-level commands for printing theorems **) |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
65 |
val print_thm = writeln o string_of_thm; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
66 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
67 |
fun prth th = (print_thm th; th); |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
68 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
69 |
(*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
|
70 |
fun prthq thseq = |
4270 | 71 |
(Seq.print (fn _ => print_thm) 100000 thseq; thseq); |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
72 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
73 |
(*Print and return a list of theorems, separated by blank lines. *) |
4210 | 74 |
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
|
75 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
76 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
77 |
(* other printing commands *) |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
78 |
|
4126 | 79 |
fun pretty_ctyp cT = |
80 |
let val {sign, T} = rep_ctyp cT in Sign.pretty_typ sign T end; |
|
81 |
||
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
82 |
fun pprint_ctyp cT = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
83 |
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
|
84 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
85 |
fun string_of_ctyp cT = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
86 |
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
|
87 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
88 |
val print_ctyp = writeln o string_of_ctyp; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
89 |
|
3547 | 90 |
fun pretty_cterm ct = |
91 |
let val {sign, t, ...} = rep_cterm ct in Sign.pretty_term sign t end; |
|
92 |
||
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
93 |
fun pprint_cterm ct = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
94 |
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
|
95 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
96 |
fun string_of_cterm ct = |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
97 |
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
|
98 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
99 |
val print_cterm = writeln o string_of_cterm; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
100 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
101 |
|
4250 | 102 |
|
103 |
(** print theory **) |
|
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
104 |
|
4950 | 105 |
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
|
106 |
val pprint_theory = Sign.pprint_sg o sign_of; |
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 |
val print_syntax = Syntax.print_syntax o syn_of; |
3873 | 109 |
val print_data = Sign.print_data o sign_of; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
110 |
|
4250 | 111 |
|
4498 | 112 |
(* pretty_name_space *) |
113 |
||
114 |
fun pretty_name_space (kind, space) = |
|
115 |
let |
|
116 |
fun prt_entry (name, accs) = Pretty.block |
|
117 |
(Pretty.str (quote name ^ " =") :: Pretty.brk 1 :: |
|
118 |
Pretty.commas (map (Pretty.str o quote) accs)); |
|
119 |
in |
|
120 |
Pretty.fbreaks (Pretty.str (kind ^ ":") :: map prt_entry (NameSpace.dest space)) |
|
121 |
|> Pretty.block |
|
122 |
end; |
|
123 |
||
124 |
||
125 |
||
4250 | 126 |
(* print signature *) |
127 |
||
128 |
fun print_sign sg = |
|
129 |
let |
|
130 |
fun prt_cls c = Sign.pretty_sort sg [c]; |
|
131 |
fun prt_sort S = Sign.pretty_sort sg S; |
|
132 |
fun prt_arity t (c, Ss) = Sign.pretty_arity sg (t, Ss, [c]); |
|
133 |
fun prt_typ ty = Pretty.quote (Sign.pretty_typ sg ty); |
|
134 |
||
135 |
val ext_class = Sign.cond_extern sg Sign.classK; |
|
136 |
val ext_tycon = Sign.cond_extern sg Sign.typeK; |
|
137 |
val ext_const = Sign.cond_extern sg Sign.constK; |
|
138 |
||
139 |
||
140 |
fun pretty_classes cs = Pretty.block |
|
141 |
(Pretty.breaks (Pretty.str "classes:" :: map prt_cls cs)); |
|
142 |
||
143 |
fun pretty_classrel (c, cs) = Pretty.block |
|
144 |
(prt_cls c :: Pretty.str " <" :: Pretty.brk 1 :: |
|
145 |
Pretty.commas (map prt_cls cs)); |
|
146 |
||
147 |
fun pretty_default S = Pretty.block |
|
148 |
[Pretty.str "default:", Pretty.brk 1, prt_sort S]; |
|
149 |
||
150 |
fun pretty_ty (t, n) = Pretty.block |
|
151 |
[Pretty.str (ext_tycon t), Pretty.str (" " ^ string_of_int n)]; |
|
152 |
||
153 |
fun pretty_abbr (t, (vs, rhs)) = Pretty.block |
|
154 |
[prt_typ (Type (t, map (fn v => TVar ((v, 0), [])) vs)), |
|
155 |
Pretty.str " =", Pretty.brk 1, prt_typ rhs]; |
|
156 |
||
157 |
fun pretty_arities (t, ars) = map (prt_arity t) ars; |
|
158 |
||
159 |
fun pretty_const (c, ty) = Pretty.block |
|
160 |
[Pretty.str c, Pretty.str " ::", Pretty.brk 1, prt_typ ty]; |
|
161 |
||
162 |
val {self = _, tsig, const_tab, syn = _, path, spaces, data} = Sign.rep_sg sg; |
|
4440 | 163 |
val spaces' = sort_wrt fst spaces; |
4250 | 164 |
val {classes, classrel, default, tycons, abbrs, arities} = |
165 |
Type.rep_tsig tsig; |
|
166 |
val consts = sort_wrt fst (map (apfst ext_const) (Symtab.dest const_tab)); |
|
167 |
in |
|
168 |
Pretty.writeln (Pretty.strs ("stamps:" :: Sign.stamp_names_of sg)); |
|
4256 | 169 |
Pretty.writeln (Pretty.strs ("data:" :: Sign.data_kinds data)); |
4782 | 170 |
Pretty.writeln (Pretty.strs ["name prefix:", NameSpace.pack path]); |
4498 | 171 |
Pretty.writeln (Pretty.big_list "name spaces:" (map pretty_name_space spaces')); |
4250 | 172 |
Pretty.writeln (pretty_classes classes); |
173 |
Pretty.writeln (Pretty.big_list "class relation:" (map pretty_classrel classrel)); |
|
174 |
Pretty.writeln (pretty_default default); |
|
175 |
Pretty.writeln (Pretty.big_list "type constructors:" (map pretty_ty tycons)); |
|
176 |
Pretty.writeln (Pretty.big_list "type abbreviations:" (map pretty_abbr abbrs)); |
|
177 |
Pretty.writeln (Pretty.big_list "type arities:" (flat (map pretty_arities arities))); |
|
178 |
Pretty.writeln (Pretty.big_list "consts:" (map pretty_const consts)) |
|
179 |
end; |
|
180 |
||
181 |
||
182 |
(* print axioms, oracles, theorems *) |
|
183 |
||
3811 | 184 |
fun print_thy thy = |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
185 |
let |
3990 | 186 |
val {sign, axioms, oracles, ...} = rep_theory thy; |
187 |
val axioms = Symtab.dest axioms; |
|
3811 | 188 |
val oras = map fst (Symtab.dest oracles); |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
189 |
|
3936 | 190 |
fun prt_axm (a, t) = Pretty.block |
3990 | 191 |
[Pretty.str (Sign.cond_extern sign Theory.axiomK a ^ ":"), Pretty.brk 1, |
3936 | 192 |
Pretty.quote (Sign.pretty_term sign t)]; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
193 |
in |
3990 | 194 |
Pretty.writeln (Pretty.big_list "axioms:" (map prt_axm axioms)); |
195 |
Pretty.writeln (Pretty.strs ("oracles:" :: oras)); |
|
4782 | 196 |
print_data thy "Pure/theorems" (*forward reference!*) |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
197 |
end; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
198 |
|
4250 | 199 |
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
|
200 |
|
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 |
|
4250 | 203 |
(** print_goals **) |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
204 |
|
4250 | 205 |
(*print thm A1,...,An/B in "goal style" -- premises as numbered subgoals*) |
206 |
||
207 |
(*also show consts in case of showing types?*) |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
208 |
val show_consts = ref false; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
209 |
|
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
210 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
211 |
local |
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
212 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
213 |
(* utils *) |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
214 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
215 |
fun ins_entry (x, y) [] = [(x, [y])] |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
216 |
| ins_entry (x, y) ((pair as (x', ys')) :: pairs) = |
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
217 |
if x = x' then (x', y ins ys') :: pairs |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
218 |
else pair :: ins_entry (x, y) pairs; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
219 |
|
3990 | 220 |
fun add_consts (Const (c, T), env) = ins_entry (T, (c, T)) env |
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
221 |
| add_consts (t $ u, env) = add_consts (u, add_consts (t, env)) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
222 |
| add_consts (Abs (_, _, t), env) = add_consts (t, env) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
223 |
| add_consts (_, env) = env; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
224 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
225 |
fun add_vars (Free (x, T), env) = ins_entry (T, (x, ~1)) env |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
226 |
| add_vars (Var (xi, T), env) = ins_entry (T, xi) env |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
227 |
| add_vars (Abs (_, _, t), env) = add_vars (t, env) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
228 |
| add_vars (t $ u, env) = add_vars (u, add_vars (t, env)) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
229 |
| add_vars (_, env) = env; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
230 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
231 |
fun add_varsT (Type (_, Ts), env) = foldr add_varsT (Ts, env) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
232 |
| add_varsT (TFree (x, S), env) = ins_entry (S, (x, ~1)) env |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
233 |
| add_varsT (TVar (xi, S), env) = ins_entry (S, xi) env; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
234 |
|
4440 | 235 |
fun sort_idxs vs = map (apsnd (sort (prod_ord string_ord int_ord))) vs; |
236 |
fun sort_cnsts cs = map (apsnd (sort_wrt fst)) cs; |
|
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
237 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
238 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
239 |
(* prepare atoms *) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
240 |
|
3990 | 241 |
fun consts_of t = sort_cnsts (add_consts (t, [])); |
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
242 |
fun vars_of t = sort_idxs (add_vars (t, [])); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
243 |
fun varsT_of t = rev (sort_idxs (it_term_types add_varsT (t, []))); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
244 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
245 |
in |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
246 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
247 |
fun print_goals maxgoals state = |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
248 |
let |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
249 |
val {sign, ...} = rep_thm state; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
250 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
251 |
val prt_term = Sign.pretty_term sign; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
252 |
val prt_typ = Sign.pretty_typ sign; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
253 |
val prt_sort = Sign.pretty_sort sign; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
254 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
255 |
fun prt_atoms prt prtT (X, xs) = Pretty.block |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
256 |
[Pretty.block (Pretty.commas (map prt xs)), Pretty.str " ::", |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
257 |
Pretty.brk 1, prtT X]; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
258 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
259 |
fun prt_var (x, ~1) = prt_term (Syntax.free x) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
260 |
| prt_var xi = prt_term (Syntax.var xi); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
261 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
262 |
fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
263 |
| prt_varT xi = prt_typ (TVar (xi, [])); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
264 |
|
3990 | 265 |
val prt_consts = prt_atoms (prt_term o Const) prt_typ; |
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
266 |
val prt_vars = prt_atoms prt_var prt_typ; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
267 |
val prt_varsT = prt_atoms prt_varT prt_sort; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
268 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
269 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
270 |
fun print_list _ _ [] = () |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
271 |
| print_list name prt lst = (writeln ""; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
272 |
Pretty.writeln (Pretty.big_list name (map prt lst))); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
273 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
274 |
fun print_subgoals (_, []) = () |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
275 |
| print_subgoals (n, A :: As) = (Pretty.writeln (Pretty.blk (0, |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
276 |
[Pretty.str (" " ^ string_of_int n ^ ". "), prt_term A])); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
277 |
print_subgoals (n + 1, As)); |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
278 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
279 |
val print_ffpairs = |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
280 |
print_list "Flex-flex pairs:" (prt_term o Logic.mk_flexpair); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
281 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
282 |
val print_consts = print_list "Constants:" prt_consts o consts_of; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
283 |
val print_vars = print_list "Variables:" prt_vars o vars_of; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
284 |
val print_varsT = print_list "Type variables:" prt_varsT o varsT_of; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
285 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
286 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
287 |
val {prop, ...} = rep_thm state; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
288 |
val (tpairs, As, B) = Logic.strip_horn prop; |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
289 |
val ngoals = length As; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
290 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
291 |
fun print_gs (types, sorts) = |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
292 |
(Pretty.writeln (prt_term B); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
293 |
if ngoals = 0 then writeln "No subgoals!" |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
294 |
else if ngoals > maxgoals then |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
295 |
(print_subgoals (1, take (maxgoals, As)); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
296 |
writeln ("A total of " ^ string_of_int ngoals ^ " subgoals...")) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
297 |
else print_subgoals (1, As); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
298 |
|
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
299 |
print_ffpairs tpairs; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
300 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
301 |
if types andalso ! show_consts then print_consts prop else (); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
302 |
if types then print_vars prop else (); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
303 |
if sorts then print_varsT prop else ()); |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
304 |
in |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
305 |
setmp show_no_free_types true |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
306 |
(setmp show_types (! show_types orelse ! show_sorts) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
307 |
(setmp show_sorts false print_gs)) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
308 |
(! show_types orelse ! show_sorts, ! show_sorts) |
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
309 |
end; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
310 |
|
3851
fe9932a7cd46
print_goals: optional output of const types (set show_consts);
wenzelm
parents:
3811
diff
changeset
|
311 |
end; |
1591
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
312 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
313 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
314 |
end; |
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
315 |
|
7fa0265dcd13
New module for display/printing operations, taken from drule.ML
paulson
parents:
diff
changeset
|
316 |
open Display; |