author | quigley |
Wed, 20 Apr 2005 16:03:17 +0200 | |
changeset 15779 | aed221aff642 |
parent 15758 | 07e382399a96 |
child 15798 | 016f3be5a5ec |
permissions | -rw-r--r-- |
5819 | 1 |
(* Title: Pure/Isar/proof_context.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
5 |
The key concept of Isar proof contexts. |
5819 | 6 |
*) |
7 |
||
14707 | 8 |
val show_structs = ref false; |
9 |
||
5819 | 10 |
signature PROOF_CONTEXT = |
11 |
sig |
|
12 |
type context |
|
9470 | 13 |
type exporter |
5819 | 14 |
exception CONTEXT of string * context |
15 |
val theory_of: context -> theory |
|
16 |
val sign_of: context -> Sign.sg |
|
14828 | 17 |
val is_fixed: context -> string -> bool |
12057 | 18 |
val fixed_names_of: context -> string list |
19 |
val assumptions_of: context -> (cterm list * exporter) list |
|
7557 | 20 |
val prems_of: context -> thm list |
5819 | 21 |
val print_proof_data: theory -> unit |
5874 | 22 |
val init: theory -> context |
14828 | 23 |
val pretty_term: context -> term -> Pretty.T |
24 |
val pretty_typ: context -> typ -> Pretty.T |
|
25 |
val pretty_sort: context -> sort -> Pretty.T |
|
26 |
val pp: context -> Pretty.pp |
|
27 |
val pretty_thm: context -> thm -> Pretty.T |
|
28 |
val pretty_thms: context -> thm list -> Pretty.T |
|
29 |
val pretty_fact: context -> string * thm list -> Pretty.T |
|
30 |
val string_of_term: context -> term -> string |
|
12414 | 31 |
val default_type: context -> string -> typ option |
12504 | 32 |
val used_types: context -> string list |
5819 | 33 |
val read_typ: context -> string -> typ |
14780 | 34 |
val read_typ_raw: context -> string -> typ |
5819 | 35 |
val cert_typ: context -> typ -> typ |
14780 | 36 |
val cert_typ_raw: context -> typ -> typ |
10583 | 37 |
val get_skolem: context -> string -> string |
9133 | 38 |
val extern_skolem: context -> term -> term |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
39 |
val read_termTs: context -> (string -> bool) -> (indexname -> typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
40 |
-> (indexname -> sort option) -> string list -> (string * typ) list |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
41 |
-> term list * (indexname * typ) list |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
42 |
val read_termTs_schematic: context -> (string -> bool) -> (indexname -> typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
43 |
-> (indexname -> sort option) -> string list -> (string * typ) list |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
44 |
-> term list * (indexname * typ) list |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
45 |
val read_term_liberal: context -> string -> term |
5819 | 46 |
val read_term: context -> string -> term |
47 |
val read_prop: context -> string -> term |
|
11925 | 48 |
val read_prop_schematic: context -> string -> term |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
49 |
val read_terms: context -> string list -> term list |
8096 | 50 |
val read_term_pats: typ -> context -> string list -> term list |
51 |
val read_prop_pats: context -> string list -> term list |
|
5819 | 52 |
val cert_term: context -> term -> term |
53 |
val cert_prop: context -> term -> term |
|
8096 | 54 |
val cert_term_pats: typ -> context -> term list -> term list |
55 |
val cert_prop_pats: context -> term list -> term list |
|
5819 | 56 |
val declare_term: term -> context -> context |
57 |
val declare_terms: term list -> context -> context |
|
15703 | 58 |
val read_tyname: context -> string -> typ |
59 |
val read_const: context -> string -> term |
|
7925 | 60 |
val warn_extra_tfrees: context -> context -> context |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
61 |
val generalize: context -> context -> term list -> term list |
9470 | 62 |
val find_free: term -> string -> term option |
12008 | 63 |
val export: bool -> context -> context -> thm -> thm Seq.seq |
13415 | 64 |
val export_standard: cterm list -> context -> context -> thm -> thm |
15696 | 65 |
val export_plain: cterm list -> context -> context -> thm -> thm |
10810 | 66 |
val drop_schematic: indexname * term option -> indexname * term option |
67 |
val add_binds: (indexname * string option) list -> context -> context |
|
68 |
val add_binds_i: (indexname * term option) list -> context -> context |
|
12147 | 69 |
val auto_bind_goal: term list -> context -> context |
70 |
val auto_bind_facts: term list -> context -> context |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
71 |
val match_bind: bool -> (string list * string) list -> context -> context |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
72 |
val match_bind_i: bool -> (term list * term) list -> context -> context |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
73 |
val read_propp: context * (string * (string list * string list)) list list |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
74 |
-> context * (term * (term list * term list)) list list |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
75 |
val cert_propp: context * (term * (term list * term list)) list list |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
76 |
-> context * (term * (term list * term list)) list list |
10554 | 77 |
val read_propp_schematic: context * (string * (string list * string list)) list list |
78 |
-> context * (term * (term list * term list)) list list |
|
79 |
val cert_propp_schematic: context * (term * (term list * term list)) list list |
|
80 |
-> context * (term * (term list * term list)) list list |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
81 |
val bind_propp: context * (string * (string list * string list)) list list |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
82 |
-> context * (term list list * (context -> context)) |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
83 |
val bind_propp_i: context * (term * (term list * term list)) list list |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
84 |
-> context * (term list list * (context -> context)) |
10554 | 85 |
val bind_propp_schematic: context * (string * (string list * string list)) list list |
86 |
-> context * (term list list * (context -> context)) |
|
87 |
val bind_propp_schematic_i: context * (term * (term list * term list)) list list |
|
88 |
-> context * (term list list * (context -> context)) |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
89 |
val get_thm: context -> thmref -> thm |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
90 |
val get_thm_closure: context -> thmref -> thm |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
91 |
val get_thms: context -> thmref -> thm list |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
92 |
val get_thms_closure: context -> thmref -> thm list |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
93 |
val cond_extern: context -> string -> xstring |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13378
diff
changeset
|
94 |
val qualified: bool -> context -> context |
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13378
diff
changeset
|
95 |
val restore_qualified: context -> context -> context |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
96 |
val hide_thms: bool -> string list -> context -> context |
6091 | 97 |
val put_thm: string * thm -> context -> context |
98 |
val put_thms: string * thm list -> context -> context |
|
99 |
val put_thmss: (string * thm list) list -> context -> context |
|
7606 | 100 |
val reset_thms: string -> context -> context |
14564 | 101 |
val note_thmss: |
15696 | 102 |
((bstring * context attribute list) * |
103 |
(thmref * context attribute list) list) list -> |
|
104 |
context -> context * (bstring * thm list) list |
|
14564 | 105 |
val note_thmss_i: |
15696 | 106 |
((bstring * context attribute list) * |
107 |
(thm list * context attribute list) list) list -> |
|
108 |
context -> context * (bstring * thm list) list |
|
109 |
val note_thmss_accesses: |
|
110 |
(string -> string list) -> |
|
111 |
((bstring * context attribute list) * |
|
112 |
(thmref * context attribute list) list) list -> |
|
113 |
context -> context * (bstring * thm list) list |
|
114 |
val note_thmss_accesses_i: |
|
115 |
(string -> string list) -> |
|
116 |
((bstring * context attribute list) * |
|
117 |
(thm list * context attribute list) list) list -> |
|
118 |
context -> context * (bstring * thm list) list |
|
11918
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
119 |
val export_assume: exporter |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
120 |
val export_presume: exporter |
12086 | 121 |
val cert_def: context -> term -> string * term |
11918
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
122 |
val export_def: exporter |
9470 | 123 |
val assume: exporter |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
124 |
-> ((string * context attribute list) * (string * (string list * string list)) list) list |
12835 | 125 |
-> context -> context * (bstring * thm list) list |
9470 | 126 |
val assume_i: exporter |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
127 |
-> ((string * context attribute list) * (term * (term list * term list)) list) list |
12835 | 128 |
-> context -> context * (bstring * thm list) list |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
129 |
val read_vars: context * (string list * string option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
130 |
-> context * (string list * typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
131 |
val cert_vars: context * (string list * typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
132 |
-> context * (string list * typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
133 |
val read_vars_liberal: context * (string list * string option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
134 |
-> context * (string list * typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
135 |
val cert_vars_liberal: context * (string list * typ option) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
136 |
-> context * (string list * typ option) |
7411 | 137 |
val fix: (string list * string option) list -> context -> context |
7663 | 138 |
val fix_i: (string list * typ option) list -> context -> context |
14643 | 139 |
val add_fixes: (string * typ option * Syntax.mixfix option) list -> context -> context |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
140 |
val add_fixes_liberal: (string * typ option * Syntax.mixfix option) list -> context -> context |
12016 | 141 |
val fix_frees: term list -> context -> context |
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
142 |
val bind_skolem: context -> string list -> term -> term |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
143 |
val get_case: context -> string -> string option list -> RuleCases.T |
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
144 |
val add_cases: (string * RuleCases.T) list -> context -> context |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
145 |
val apply_case: RuleCases.T -> context |
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
146 |
-> context * ((indexname * term option) list * (string * term list) list) |
10810 | 147 |
val verbose: bool ref |
148 |
val setmp_verbose: ('a -> 'b) -> 'a -> 'b |
|
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
149 |
val print_syntax: context -> unit |
10810 | 150 |
val print_binds: context -> unit |
12057 | 151 |
val print_lthms: context -> unit |
10810 | 152 |
val print_cases: context -> unit |
153 |
val prems_limit: int ref |
|
12057 | 154 |
val pretty_asms: context -> Pretty.T list |
10810 | 155 |
val pretty_context: context -> Pretty.T list |
13284 | 156 |
val thms_containing_limit: int ref |
157 |
val print_thms_containing: context -> int option -> string list -> unit |
|
5819 | 158 |
val setup: (theory -> theory) list |
159 |
end; |
|
160 |
||
8151 | 161 |
signature PRIVATE_PROOF_CONTEXT = |
5819 | 162 |
sig |
163 |
include PROOF_CONTEXT |
|
164 |
val init_data: Object.kind -> (theory -> Object.T) * (context -> Object.T -> unit) |
|
165 |
-> theory -> theory |
|
166 |
val print_data: Object.kind -> context -> unit |
|
167 |
val get_data: Object.kind -> (Object.T -> 'a) -> context -> 'a |
|
168 |
val put_data: Object.kind -> ('a -> Object.T) -> 'a -> context -> context |
|
169 |
end; |
|
170 |
||
8151 | 171 |
structure ProofContext: PRIVATE_PROOF_CONTEXT = |
5819 | 172 |
struct |
173 |
||
174 |
||
175 |
(** datatype context **) |
|
176 |
||
11816 | 177 |
type exporter = bool -> cterm list -> thm -> thm Seq.seq; |
9470 | 178 |
|
5819 | 179 |
datatype context = |
180 |
Context of |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
181 |
{thy: theory, (*current theory*) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
182 |
syntax: Syntax.syntax * string list * string list, (*syntax with structs and mixfixed*) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
183 |
data: Object.T Symtab.table, (*user data*) |
5819 | 184 |
asms: |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
185 |
((cterm list * exporter) list * (*assumes: A ==> _*) |
14697 | 186 |
(string * thm list) list) * (*prems: A |- A *) |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
187 |
(string * string) list, (*fixes: !!x. _*) |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
188 |
binds: (term * typ) Vartab.table, (*term bindings*) |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
189 |
thms: bool * NameSpace.T * thm list Symtab.table |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
190 |
* FactIndex.T, (*local thms*) |
14697 | 191 |
(*thms is of the form (q, n, t, i) where |
14508
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14287
diff
changeset
|
192 |
q: indicates whether theorems with qualified names may be stored; |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14287
diff
changeset
|
193 |
this is initially forbidden (false); flag may be changed with |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14287
diff
changeset
|
194 |
qualified and restore_qualified; |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14287
diff
changeset
|
195 |
n: theorem namespace; |
859b11514537
Experimental command for instantiation of locales in proof contexts:
ballarin
parents:
14287
diff
changeset
|
196 |
t: table of theorems; |
14697 | 197 |
i: index for theorem lookup (cf. thms_containing) *) |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
198 |
cases: (string * RuleCases.T) list, (*local contexts*) |
5819 | 199 |
defs: |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
200 |
typ Vartab.table * (*type constraints*) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
201 |
sort Vartab.table * (*default sorts*) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
202 |
string list * (*used type variables*) |
15735 | 203 |
term list Symtab.table}; (*type variable occurrences*) |
5819 | 204 |
|
205 |
exception CONTEXT of string * context; |
|
206 |
||
207 |
||
15735 | 208 |
fun make_context (thy, syntax, data, asms, binds, thms, cases, defs) = |
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
209 |
Context {thy = thy, syntax = syntax, data = data, asms = asms, binds = binds, |
15735 | 210 |
thms = thms, cases = cases, defs = defs}; |
5819 | 211 |
|
15735 | 212 |
fun map_context f (Context {thy, syntax, data, asms, binds, thms, cases, defs}) = |
213 |
make_context (f (thy, syntax, data, asms, binds, thms, cases, defs)); |
|
5819 | 214 |
|
215 |
fun theory_of (Context {thy, ...}) = thy; |
|
216 |
val sign_of = Theory.sign_of o theory_of; |
|
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
217 |
fun syntax_of (Context {syntax, ...}) = syntax; |
5819 | 218 |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
219 |
fun fixes_of (Context {asms = (_, fixes), ...}) = fixes; |
12057 | 220 |
val fixed_names_of = map #2 o fixes_of; |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
221 |
fun is_fixed ctxt x = exists (equal x o #2) (fixes_of ctxt); |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
222 |
fun is_known (ctxt as Context {defs = (types, _, _, _), ...}) x = |
15570 | 223 |
isSome (Vartab.lookup (types, (x, ~1))) orelse is_fixed ctxt x; |
12291 | 224 |
fun type_occs (Context {defs = (_, _, _, tab), ...}) = tab; |
12057 | 225 |
|
226 |
fun assumptions_of (Context {asms = ((asms, _), _), ...}) = asms; |
|
15570 | 227 |
fun prems_of (Context {asms = ((_, prems), _), ...}) = List.concat (map #2 prems); |
12057 | 228 |
|
7270 | 229 |
|
5819 | 230 |
|
231 |
(** user data **) |
|
232 |
||
233 |
(* errors *) |
|
234 |
||
235 |
fun of_theory thy = "\nof theory " ^ Sign.str_of_sg (Theory.sign_of thy); |
|
236 |
||
237 |
fun err_inconsistent kinds = |
|
238 |
error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " proof data"); |
|
239 |
||
240 |
fun err_dup_init thy kind = |
|
241 |
error ("Duplicate initialization of " ^ quote kind ^ " proof data" ^ of_theory thy); |
|
242 |
||
243 |
fun err_undef ctxt kind = |
|
244 |
raise CONTEXT ("Tried to access undefined " ^ quote kind ^ " proof data", ctxt); |
|
245 |
||
246 |
fun err_uninit ctxt kind = |
|
247 |
raise CONTEXT ("Tried to access uninitialized " ^ quote kind ^ " proof data" ^ |
|
248 |
of_theory (theory_of ctxt), ctxt); |
|
249 |
||
250 |
fun err_access ctxt kind = |
|
251 |
raise CONTEXT ("Unauthorized access to " ^ quote kind ^ " proof data" ^ |
|
252 |
of_theory (theory_of ctxt), ctxt); |
|
253 |
||
254 |
||
255 |
(* data kind 'Isar/proof_data' *) |
|
256 |
||
257 |
structure ProofDataDataArgs = |
|
258 |
struct |
|
259 |
val name = "Isar/proof_data"; |
|
260 |
type T = (Object.kind * ((theory -> Object.T) * (context -> Object.T -> unit))) Symtab.table; |
|
261 |
||
262 |
val empty = Symtab.empty; |
|
6550 | 263 |
val copy = I; |
5819 | 264 |
val prep_ext = I; |
265 |
fun merge tabs = Symtab.merge (Object.eq_kind o pairself fst) tabs |
|
266 |
handle Symtab.DUPS kinds => err_inconsistent kinds; |
|
267 |
fun print _ tab = Pretty.writeln (Pretty.strs (map #1 (Symtab.dest tab))); |
|
268 |
end; |
|
269 |
||
270 |
structure ProofDataData = TheoryDataFun(ProofDataDataArgs); |
|
271 |
val print_proof_data = ProofDataData.print; |
|
272 |
||
273 |
||
274 |
(* init proof data *) |
|
275 |
||
276 |
fun init_data kind meths thy = |
|
277 |
let |
|
278 |
val name = Object.name_of_kind kind; |
|
279 |
val tab = Symtab.update_new ((name, (kind, meths)), ProofDataData.get thy) |
|
280 |
handle Symtab.DUP _ => err_dup_init thy name; |
|
281 |
in thy |> ProofDataData.put tab end; |
|
282 |
||
283 |
||
284 |
(* access data *) |
|
285 |
||
286 |
fun lookup_data (ctxt as Context {data, ...}) kind = |
|
287 |
let |
|
288 |
val thy = theory_of ctxt; |
|
289 |
val name = Object.name_of_kind kind; |
|
290 |
in |
|
291 |
(case Symtab.lookup (ProofDataData.get thy, name) of |
|
15531 | 292 |
SOME (k, meths) => |
5819 | 293 |
if Object.eq_kind (kind, k) then |
294 |
(case Symtab.lookup (data, name) of |
|
15531 | 295 |
SOME x => (x, meths) |
296 |
| NONE => err_undef ctxt name) |
|
5819 | 297 |
else err_access ctxt name |
15531 | 298 |
| NONE => err_uninit ctxt name) |
5819 | 299 |
end; |
300 |
||
301 |
fun get_data kind f ctxt = |
|
302 |
let val (x, _) = lookup_data ctxt kind |
|
303 |
in f x handle Match => Object.kind_error kind end; |
|
304 |
||
305 |
fun print_data kind ctxt = |
|
306 |
let val (x, (_, prt)) = lookup_data ctxt kind |
|
307 |
in prt ctxt x end; |
|
308 |
||
309 |
fun put_data kind f x ctxt = |
|
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
310 |
(lookup_data ctxt kind; |
15735 | 311 |
map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) => |
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
312 |
(thy, syntax, Symtab.update ((Object.name_of_kind kind, f x), data), |
15735 | 313 |
asms, binds, thms, cases, defs)) ctxt); |
5819 | 314 |
|
315 |
||
316 |
(* init context *) |
|
317 |
||
5874 | 318 |
fun init thy = |
319 |
let val data = Symtab.map (fn (_, (f, _)) => f thy) (ProofDataData.get thy) in |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
320 |
make_context (thy, (Theory.syn_of thy, [], []), data, (([], []), []), Vartab.empty, |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
321 |
(false, NameSpace.empty, Symtab.empty, FactIndex.empty), [], |
15735 | 322 |
(Vartab.empty, Vartab.empty, [], Symtab.empty)) |
5819 | 323 |
end; |
324 |
||
325 |
||
8096 | 326 |
|
12093 | 327 |
(** local syntax **) |
328 |
||
329 |
val fixedN = "\\<^fixed>"; |
|
330 |
val structN = "\\<^struct>"; |
|
331 |
||
12100 | 332 |
|
14697 | 333 |
(* translation functions *) |
14665
d2e5df3d1201
index syntax: support for general expressions (input only);
wenzelm
parents:
14643
diff
changeset
|
334 |
|
d2e5df3d1201
index syntax: support for general expressions (input only);
wenzelm
parents:
14643
diff
changeset
|
335 |
fun fixed_tr x = (fixedN ^ x, curry Term.list_comb (Syntax.free x)); |
d2e5df3d1201
index syntax: support for general expressions (input only);
wenzelm
parents:
14643
diff
changeset
|
336 |
|
12100 | 337 |
fun context_tr' ctxt = |
338 |
let |
|
339 |
val (_, structs, mixfixed) = syntax_of ctxt; |
|
340 |
||
341 |
fun tr' (t $ u) = tr' t $ tr' u |
|
342 |
| tr' (Abs (x, T, t)) = Abs (x, T, tr' t) |
|
343 |
| tr' (t as Free (x, T)) = |
|
14697 | 344 |
let val i = Library.find_index_eq x structs + 1 in |
345 |
if i = 0 andalso x mem_string mixfixed then Const (fixedN ^ x, T) |
|
14707 | 346 |
else if i = 1 andalso not (! show_structs) then |
347 |
Syntax.const "_struct" $ Syntax.const "_indexdefault" |
|
12100 | 348 |
else t |
349 |
end |
|
350 |
| tr' a = a; |
|
351 |
in tr' end; |
|
352 |
||
353 |
||
12576
9fd10052c3f7
added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents:
12550
diff
changeset
|
354 |
(* add syntax *) |
9fd10052c3f7
added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents:
12550
diff
changeset
|
355 |
|
9fd10052c3f7
added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents:
12550
diff
changeset
|
356 |
fun mixfix_type mx = replicate (Syntax.mixfix_args mx) TypeInfer.logicT ---> TypeInfer.logicT; |
12093 | 357 |
|
358 |
local |
|
359 |
||
15531 | 360 |
fun mixfix x NONE mx = (fixedN ^ x, mixfix_type mx, Syntax.fix_mixfix x mx) |
361 |
| mixfix x (SOME T) mx = (fixedN ^ x, T, Syntax.fix_mixfix x mx); |
|
12093 | 362 |
|
15531 | 363 |
fun prep_mixfix (_, _, NONE) = NONE |
364 |
| prep_mixfix (x, opt_T, SOME mx) = SOME (mixfix x opt_T mx); |
|
12093 | 365 |
|
15531 | 366 |
fun prep_mixfix' (_, _, NONE) = NONE |
367 |
| prep_mixfix' (x, _, SOME Syntax.NoSyn) = NONE |
|
368 |
| prep_mixfix' (x, opt_T, _) = SOME (x, mixfix x opt_T (Syntax.literal x)); |
|
12093 | 369 |
|
15531 | 370 |
fun prep_struct (x, _, NONE) = SOME x |
371 |
| prep_struct _ = NONE; |
|
12093 | 372 |
|
15750 | 373 |
fun mk trs = map Syntax.mk_trfun trs; |
374 |
||
12093 | 375 |
in |
376 |
||
377 |
fun add_syntax decls = |
|
15735 | 378 |
map_context (fn (thy, (syn, structs, mixfixed), data, asms, binds, thms, cases, defs) => |
12093 | 379 |
let |
14901 | 380 |
val is_logtype = Sign.is_logtype (Theory.sign_of thy); |
15570 | 381 |
val structs' = structs @ List.mapPartial prep_struct decls; |
382 |
val mxs = List.mapPartial prep_mixfix decls; |
|
383 |
val (fixed, mxs_output) = Library.split_list (List.mapPartial prep_mixfix' decls); |
|
12093 | 384 |
val trs = map fixed_tr fixed; |
385 |
val syn' = syn |
|
14901 | 386 |
|> Syntax.extend_const_gram is_logtype ("", false) mxs_output |
387 |
|> Syntax.extend_const_gram is_logtype ("", true) mxs |
|
15750 | 388 |
|> Syntax.extend_trfuns ([], mk trs, [], []); |
389 |
in (thy, (syn', structs', fixed @ mixfixed), data, asms, binds, thms, cases, defs) end); |
|
12093 | 390 |
|
391 |
fun syn_of (Context {syntax = (syn, structs, _), ...}) = |
|
15750 | 392 |
let val (atrs, trs, trs', atrs') = Syntax.struct_trfuns structs |
393 |
in syn |> Syntax.extend_trfuns (mk atrs, mk trs, mk trs', mk atrs') end; |
|
14697 | 394 |
|
12093 | 395 |
end; |
396 |
||
397 |
||
398 |
||
14828 | 399 |
(** pretty printing **) |
400 |
||
14974
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
401 |
fun pretty_term ctxt t = Sign.pretty_term' (syn_of ctxt) (sign_of ctxt) (context_tr' ctxt t); |
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
402 |
fun pretty_typ ctxt T = Sign.pretty_typ (sign_of ctxt) T; |
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
403 |
fun pretty_sort ctxt S = Sign.pretty_sort (sign_of ctxt) S; |
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
404 |
fun pretty_classrel ctxt cs = Sign.pretty_classrel (sign_of ctxt) cs; |
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
405 |
fun pretty_arity ctxt ar = Sign.pretty_arity (sign_of ctxt) ar; |
14828 | 406 |
|
14974
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
407 |
fun pp ctxt = Pretty.pp (pretty_term ctxt, pretty_typ ctxt, pretty_sort ctxt, |
b1ecb7859c99
avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents:
14901
diff
changeset
|
408 |
pretty_classrel ctxt, pretty_arity ctxt); |
14828 | 409 |
|
410 |
val string_of_term = Pretty.string_of oo pretty_term; |
|
411 |
||
412 |
fun pretty_thm ctxt thm = |
|
413 |
if ! Display.show_hyps then |
|
14876 | 414 |
Display.pretty_thm_aux (pp ctxt) false thm |
14828 | 415 |
else pretty_term ctxt (Thm.prop_of thm); |
416 |
||
417 |
fun pretty_thms ctxt [th] = pretty_thm ctxt th |
|
418 |
| pretty_thms ctxt ths = Pretty.blk (0, Pretty.fbreaks (map (pretty_thm ctxt) ths)); |
|
419 |
||
420 |
fun pretty_fact ctxt ("", ths) = pretty_thms ctxt ths |
|
421 |
| pretty_fact ctxt (a, [th]) = |
|
422 |
Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, pretty_thm ctxt th] |
|
423 |
| pretty_fact ctxt (a, ths) = |
|
424 |
Pretty.block (Pretty.fbreaks (Pretty.str (a ^ ":") :: map (pretty_thm ctxt) ths)); |
|
425 |
||
426 |
||
427 |
||
7663 | 428 |
(** default sorts and types **) |
429 |
||
12291 | 430 |
fun def_sort (Context {defs = (_, sorts, _, _), ...}) xi = Vartab.lookup (sorts, xi); |
7663 | 431 |
|
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
432 |
fun def_type (Context {binds, defs = (types, _, _, _), ...}) pattern xi = |
7663 | 433 |
(case Vartab.lookup (types, xi) of |
15531 | 434 |
NONE => |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
435 |
if pattern then NONE |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
436 |
else Vartab.lookup (binds, xi) |> Option.map (TypeInfer.polymorphicT o #2) |
7663 | 437 |
| some => some); |
438 |
||
12504 | 439 |
fun default_type (Context {defs = (types, _, _, _), ...}) x = Vartab.lookup (types, (x, ~1)); |
440 |
fun used_types (Context {defs = (_, _, used, _), ...}) = used; |
|
12414 | 441 |
|
7663 | 442 |
|
5819 | 443 |
|
444 |
(** prepare types **) |
|
445 |
||
9504 | 446 |
local |
447 |
||
448 |
fun read_typ_aux read ctxt s = |
|
12093 | 449 |
transform_error (read (syn_of ctxt) (sign_of ctxt, def_sort ctxt)) s |
7663 | 450 |
handle ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt); |
5819 | 451 |
|
10554 | 452 |
fun cert_typ_aux cert ctxt raw_T = |
453 |
cert (sign_of ctxt) raw_T |
|
454 |
handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt); |
|
9504 | 455 |
|
456 |
in |
|
457 |
||
14780 | 458 |
val read_typ = read_typ_aux Sign.read_typ'; |
459 |
val read_typ_raw = read_typ_aux Sign.read_typ_raw'; |
|
460 |
val cert_typ = cert_typ_aux Sign.certify_typ; |
|
461 |
val cert_typ_raw = cert_typ_aux Sign.certify_typ_raw; |
|
9504 | 462 |
|
463 |
end; |
|
464 |
||
5819 | 465 |
|
7679 | 466 |
(* internalize Skolem constants *) |
467 |
||
10583 | 468 |
fun lookup_skolem ctxt x = assoc (fixes_of ctxt, x); |
15570 | 469 |
fun get_skolem ctxt x = getOpt (lookup_skolem ctxt x, x); |
7679 | 470 |
|
12504 | 471 |
fun no_skolem internal ctxt x = |
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
472 |
if can Syntax.dest_skolem x then |
7679 | 473 |
raise CONTEXT ("Illegal reference to internal Skolem constant: " ^ quote x, ctxt) |
12504 | 474 |
else if not internal andalso can Syntax.dest_internal x then |
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
475 |
raise CONTEXT ("Illegal reference to internal variable: " ^ quote x, ctxt) |
7679 | 476 |
else x; |
477 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
478 |
fun intern_skolem ctxt internal = |
7679 | 479 |
let |
480 |
fun intern (t as Free (x, T)) = |
|
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
481 |
if internal x then t |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
482 |
else |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
483 |
(case lookup_skolem ctxt (no_skolem false ctxt x) of |
15531 | 484 |
SOME x' => Free (x', T) |
485 |
| NONE => t) |
|
7679 | 486 |
| intern (t $ u) = intern t $ intern u |
487 |
| intern (Abs (x, T, t)) = Abs (x, T, intern t) |
|
488 |
| intern a = a; |
|
489 |
in intern end; |
|
490 |
||
491 |
||
9133 | 492 |
(* externalize Skolem constants -- for printing purposes only *) |
493 |
||
494 |
fun extern_skolem ctxt = |
|
495 |
let |
|
496 |
val rev_fixes = map Library.swap (fixes_of ctxt); |
|
497 |
||
498 |
fun extern (t as Free (x, T)) = |
|
499 |
(case assoc (rev_fixes, x) of |
|
15531 | 500 |
SOME x' => Free (if lookup_skolem ctxt x' = SOME x then x' else NameSpace.hidden x', T) |
501 |
| NONE => t) |
|
9133 | 502 |
| extern (t $ u) = extern t $ extern u |
503 |
| extern (Abs (x, T, t)) = Abs (x, T, extern t) |
|
504 |
| extern a = a; |
|
505 |
in extern end |
|
506 |
||
8096 | 507 |
|
5819 | 508 |
(** prepare terms and propositions **) |
509 |
||
510 |
(* |
|
511 |
(1) read / certify wrt. signature of context |
|
512 |
(2) intern Skolem constants |
|
513 |
(3) expand term bindings |
|
514 |
*) |
|
515 |
||
516 |
||
517 |
(* read / certify wrt. signature *) (*exception ERROR*) (*exception TERM*) |
|
518 |
||
14828 | 519 |
fun read_def_termTs freeze pp syn sg (types, sorts, used) sTs = |
14901 | 520 |
Sign.read_def_terms' pp (Sign.is_logtype sg) syn (sg, types, sorts) used freeze sTs; |
5874 | 521 |
|
14828 | 522 |
fun read_def_termT freeze pp syn sg defs sT = |
523 |
apfst hd (read_def_termTs freeze pp syn sg defs [sT]); |
|
524 |
||
525 |
fun read_term_sg freeze pp syn sg defs s = |
|
526 |
#1 (read_def_termT freeze pp syn sg defs (s, TypeInfer.logicT)); |
|
5874 | 527 |
|
14828 | 528 |
fun read_prop_sg freeze pp syn sg defs s = |
529 |
#1 (read_def_termT freeze pp syn sg defs (s, propT)); |
|
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
530 |
|
14828 | 531 |
fun read_terms_sg freeze pp syn sg defs = |
532 |
#1 o read_def_termTs freeze pp syn sg defs o map (rpair TypeInfer.logicT); |
|
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
533 |
|
14828 | 534 |
fun read_props_sg freeze pp syn sg defs = |
535 |
#1 o read_def_termTs freeze pp syn sg defs o map (rpair propT); |
|
5819 | 536 |
|
537 |
||
14828 | 538 |
fun cert_term_sg pp sg t = #1 (Sign.certify_term pp sg t); |
5819 | 539 |
|
14828 | 540 |
fun cert_prop_sg pp sg tm = |
541 |
let val (t, T, _) = Sign.certify_term pp sg tm |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
542 |
in if T = propT then t else raise TERM ("Term not of type prop", [t]) end; |
5819 | 543 |
|
544 |
||
545 |
(* norm_term *) |
|
546 |
||
547 |
(*beta normal form for terms (not eta normal form), chase variables in |
|
548 |
bindings environment (code taken from Pure/envir.ML)*) |
|
549 |
||
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
550 |
fun unifyT ctxt (T, U) = |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
551 |
let val maxidx = Int.max (Term.maxidx_of_typ T, Term.maxidx_of_typ U) |
12530 | 552 |
in #1 (Type.unify (Sign.tsig_of (sign_of ctxt)) (Vartab.empty, maxidx) (T, U)) end; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
553 |
|
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
554 |
fun norm_term (ctxt as Context {binds, ...}) schematic = |
5819 | 555 |
let |
556 |
(*raised when norm has no effect on a term, to do sharing instead of copying*) |
|
557 |
exception SAME; |
|
558 |
||
559 |
fun norm (t as Var (xi, T)) = |
|
560 |
(case Vartab.lookup (binds, xi) of |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
561 |
SOME (u, U) => |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
562 |
let |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
563 |
val env = unifyT ctxt (T, U) handle Type.TUNIFY => |
14174
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
ballarin
parents:
13629
diff
changeset
|
564 |
raise TYPE ("norm_term: ill-typed variable assignment", [T, U], [t, u]); |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
565 |
val u' = Term.subst_TVars_Vartab env u; |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
566 |
in norm u' handle SAME => u' end |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
567 |
| NONE => |
10554 | 568 |
if schematic then raise SAME |
569 |
else raise CONTEXT ("Unbound schematic variable: " ^ Syntax.string_of_vname xi, ctxt)) |
|
5819 | 570 |
| norm (Abs (a, T, body)) = Abs (a, T, norm body) |
571 |
| norm (Abs (_, _, body) $ t) = normh (subst_bound (t, body)) |
|
572 |
| norm (f $ t) = |
|
573 |
((case norm f of |
|
574 |
Abs (_, _, body) => normh (subst_bound (t, body)) |
|
575 |
| nf => nf $ (norm t handle SAME => t)) handle SAME => f $ norm t) |
|
576 |
| norm _ = raise SAME |
|
577 |
and normh t = norm t handle SAME => t |
|
578 |
in normh end; |
|
579 |
||
580 |
||
6550 | 581 |
(* dummy patterns *) |
582 |
||
9540 | 583 |
fun prepare_dummies t = #2 (Term.replace_dummy_patterns (1, t)); |
6762 | 584 |
|
9540 | 585 |
fun reject_dummies ctxt t = Term.no_dummy_patterns t |
586 |
handle TERM _ => raise CONTEXT ("Illegal dummy pattern(s) in term", ctxt); |
|
6550 | 587 |
|
588 |
||
5819 | 589 |
(* read terms *) |
590 |
||
10554 | 591 |
local |
592 |
||
15531 | 593 |
fun append_env e1 e2 x = (case e2 x of NONE => e1 x | some => some); |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
594 |
|
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
595 |
fun gen_read' read app pattern dummies schematic |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
596 |
ctxt internal more_types more_sorts more_used s = |
14174
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
ballarin
parents:
13629
diff
changeset
|
597 |
let |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
598 |
val types = append_env (def_type ctxt pattern) more_types; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
599 |
val sorts = append_env (def_sort ctxt) more_sorts; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
600 |
val used = used_types ctxt @ more_used; |
14174
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
ballarin
parents:
13629
diff
changeset
|
601 |
in |
14828 | 602 |
(transform_error (read (pp ctxt) (syn_of ctxt) (sign_of ctxt) (types, sorts, used)) s |
14174
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
ballarin
parents:
13629
diff
changeset
|
603 |
handle TERM (msg, _) => raise CONTEXT (msg, ctxt) |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
604 |
| ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt)) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
605 |
|> app (intern_skolem ctxt internal) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
606 |
|> app (if pattern then I else norm_term ctxt schematic) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
607 |
|> app (if pattern then prepare_dummies else if dummies then I else reject_dummies ctxt) |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
608 |
end; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
609 |
|
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
610 |
fun gen_read read app pattern dummies schematic ctxt = |
15531 | 611 |
gen_read' read app pattern dummies schematic ctxt (K false) (K NONE) (K NONE) []; |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
612 |
|
10554 | 613 |
in |
614 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
615 |
val read_termTs = gen_read' (read_def_termTs false) (apfst o map) false false false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
616 |
val read_termTs_schematic = gen_read' (read_def_termTs false) (apfst o map) false false true; |
8096 | 617 |
|
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
618 |
fun read_term_pats T ctxt = |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
619 |
#1 o gen_read (read_def_termTs false) (apfst o map) true false false ctxt o map (rpair T); |
8096 | 620 |
val read_prop_pats = read_term_pats propT; |
621 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
622 |
fun read_term_liberal ctxt = |
15531 | 623 |
gen_read' (read_term_sg true) I false false false ctxt (K true) (K NONE) (K NONE) []; |
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
624 |
|
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
625 |
val read_term = gen_read (read_term_sg true) I false false false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
626 |
val read_term_dummies = gen_read (read_term_sg true) I false true false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
627 |
val read_prop = gen_read (read_prop_sg true) I false false false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
628 |
val read_prop_schematic = gen_read (read_prop_sg true) I false false true; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
629 |
val read_terms = gen_read (read_terms_sg true) map false false false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
630 |
fun read_props schematic = gen_read (read_props_sg true) map false false schematic; |
5819 | 631 |
|
10554 | 632 |
end; |
633 |
||
5819 | 634 |
|
635 |
(* certify terms *) |
|
636 |
||
10554 | 637 |
local |
638 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
639 |
fun gen_cert cert pattern schematic ctxt t = t |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
640 |
|> (if pattern then I else norm_term ctxt schematic) |
14828 | 641 |
|> (fn t' => cert (pp ctxt) (sign_of ctxt) t' |
642 |
handle TERM (msg, _) => raise CONTEXT (msg, ctxt)); |
|
5819 | 643 |
|
10554 | 644 |
in |
8096 | 645 |
|
10554 | 646 |
val cert_term = gen_cert cert_term_sg false false; |
647 |
val cert_prop = gen_cert cert_prop_sg false false; |
|
648 |
val cert_props = map oo gen_cert cert_prop_sg false; |
|
649 |
||
650 |
fun cert_term_pats _ = map o gen_cert cert_term_sg true false; |
|
651 |
val cert_prop_pats = map o gen_cert cert_prop_sg true false; |
|
652 |
||
653 |
end; |
|
5819 | 654 |
|
655 |
||
656 |
(* declare terms *) |
|
657 |
||
10381 | 658 |
local |
659 |
||
5819 | 660 |
val ins_types = foldl_aterms |
661 |
(fn (types, Free (x, T)) => Vartab.update (((x, ~1), T), types) |
|
662 |
| (types, Var v) => Vartab.update (v, types) |
|
663 |
| (types, _) => types); |
|
664 |
||
665 |
val ins_sorts = foldl_types (foldl_atyps |
|
666 |
(fn (sorts, TFree (x, S)) => Vartab.update (((x, ~1), S), sorts) |
|
667 |
| (sorts, TVar v) => Vartab.update (v, sorts) |
|
668 |
| (sorts, _) => sorts)); |
|
669 |
||
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
670 |
val ins_used = foldl_term_types (fn t => foldl_atyps |
12504 | 671 |
(fn (used, TFree (x, _)) => x ins_string used |
672 |
| (used, _) => used)); |
|
12291 | 673 |
|
674 |
val ins_occs = foldl_term_types (fn t => foldl_atyps |
|
675 |
(fn (tab, TFree (x, _)) => Symtab.update_multi ((x, t), tab) | (tab, _) => tab)); |
|
5819 | 676 |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
677 |
fun ins_skolem def_ty = foldr |
5994 | 678 |
(fn ((x, x'), types) => |
7663 | 679 |
(case def_ty x' of |
15531 | 680 |
SOME T => Vartab.update (((x, ~1), T), types) |
681 |
| NONE => types)); |
|
5994 | 682 |
|
15735 | 683 |
fun map_defaults f = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) => |
684 |
(thy, syntax, data, asms, binds, thms, cases, f defs)); |
|
5819 | 685 |
|
10381 | 686 |
fun declare_syn (ctxt, t) = |
5819 | 687 |
ctxt |
12291 | 688 |
|> map_defaults (fn (types, sorts, used, occ) => (ins_types (types, t), sorts, used, occ)) |
689 |
|> map_defaults (fn (types, sorts, used, occ) => (types, ins_sorts (sorts, t), used, occ)) |
|
690 |
|> map_defaults (fn (types, sorts, used, occ) => (types, sorts, ins_used (used, t), occ)); |
|
10381 | 691 |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
692 |
fun declare_occ (ctxt as Context {asms = (_, fixes), ...}, t) = |
10381 | 693 |
declare_syn (ctxt, t) |
12291 | 694 |
|> map_defaults (fn (types, sorts, used, occ) => (types, sorts, used, ins_occs (occ, t))) |
695 |
|> map_defaults (fn (types, sorts, used, occ) => |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
696 |
(ins_skolem (fn x => Vartab.lookup (types, (x, ~1))) types fixes, sorts, used, occ)); |
5819 | 697 |
|
10381 | 698 |
in |
5819 | 699 |
|
10381 | 700 |
fun declare_term t ctxt = declare_occ (ctxt, t); |
15570 | 701 |
fun declare_terms ts ctxt = Library.foldl declare_occ (ctxt, ts); |
702 |
fun declare_terms_syntax ts ctxt = Library.foldl declare_syn (ctxt, ts); |
|
10381 | 703 |
|
704 |
end; |
|
5819 | 705 |
|
706 |
||
15703 | 707 |
(* type and constant names *) |
708 |
||
709 |
fun read_tyname ctxt c = |
|
710 |
if c mem_string used_types ctxt then |
|
711 |
TFree (c, getOpt (def_sort ctxt (c, ~1), Sign.defaultS (sign_of ctxt))) |
|
712 |
else Sign.read_tyname (sign_of ctxt) c; |
|
713 |
||
714 |
fun read_const ctxt c = |
|
715 |
(case lookup_skolem ctxt c of |
|
716 |
SOME c' => Free (c', dummyT) |
|
717 |
| NONE => Sign.read_const (sign_of ctxt) c); |
|
718 |
||
719 |
||
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
720 |
|
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
721 |
(** Hindley-Milner polymorphism **) |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
722 |
|
7925 | 723 |
(* warn_extra_tfrees *) |
724 |
||
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
725 |
fun warn_extra_tfrees |
12291 | 726 |
(ctxt1 as Context {defs = (_, _, _, occ1), ...}) |
727 |
(ctxt2 as Context {defs = (_, _, _, occ2), ...}) = |
|
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
728 |
let |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
729 |
fun known_tfree a (Type (_, Ts)) = exists (known_tfree a) Ts |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
730 |
| known_tfree a (TFree (a', _)) = a = a' |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
731 |
| known_tfree _ _ = false; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
732 |
|
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
733 |
val extras = |
12291 | 734 |
Library.gen_rems Library.eq_fst (Symtab.dest occ2, Symtab.dest occ1) |
15570 | 735 |
|> map (fn (a, ts) => map (pair a) (List.mapPartial (try (#1 o Term.dest_Free)) ts)) |> List.concat |
736 |
|> List.mapPartial (fn (a, x) => |
|
15531 | 737 |
(case def_type ctxt1 false (x, ~1) of NONE => SOME (a, x) |
738 |
| SOME T => if known_tfree a T then NONE else SOME (a, x))); |
|
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
739 |
val tfrees = map #1 extras |> Library.sort_strings |> Library.unique_strings; |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
740 |
val frees = map #2 extras |> Library.sort_strings |> Library.unique_strings; |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
741 |
in |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
742 |
if null extras then () |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
743 |
else warning ("Just introduced free type variable(s): " ^ commas tfrees ^ " in " ^ |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
744 |
space_implode " or " frees); |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
745 |
ctxt2 |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
746 |
end; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
747 |
|
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
748 |
|
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
749 |
(* generalize type variables *) |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
750 |
|
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
751 |
fun generalize_tfrees inner outer = |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
752 |
let |
12057 | 753 |
val extra_fixes = fixed_names_of inner \\ fixed_names_of outer; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
754 |
fun still_fixed (Free (x, _)) = not (x mem_string extra_fixes) |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
755 |
| still_fixed _ = false; |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
756 |
val occs_inner = type_occs inner; |
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
757 |
val occs_outer = type_occs outer; |
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
758 |
fun add (gen, a) = |
15570 | 759 |
if isSome (Symtab.lookup (occs_outer, a)) orelse |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
760 |
exists still_fixed (Symtab.lookup_multi (occs_inner, a)) |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
761 |
then gen else a :: gen; |
15570 | 762 |
in fn tfrees => Library.foldl add ([], tfrees) end; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
763 |
|
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
764 |
fun generalize inner outer ts = |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
765 |
let |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
766 |
val tfrees = generalize_tfrees inner outer (foldr Term.add_term_tfree_names [] ts); |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
767 |
fun gen (x, S) = if x mem_string tfrees then TVar ((x, 0), S) else TFree (x, S); |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
768 |
in map (Term.map_term_types (Term.map_type_tfree gen)) ts end; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
769 |
|
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
770 |
|
9553 | 771 |
|
772 |
(** export theorems **) |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
773 |
|
15531 | 774 |
fun get_free x (NONE, t as Free (y, _)) = if x = y then SOME t else NONE |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
775 |
| get_free _ (opt, _) = opt; |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
776 |
|
15531 | 777 |
fun find_free t x = foldl_aterms (get_free x) (NONE, t); |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
778 |
|
13415 | 779 |
fun export_view view is_goal inner outer = |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
780 |
let |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
781 |
val gen = generalize_tfrees inner outer; |
12057 | 782 |
val fixes = fixed_names_of inner \\ fixed_names_of outer; |
783 |
val asms = Library.drop (length (assumptions_of outer), assumptions_of inner); |
|
11816 | 784 |
val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms; |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
785 |
in fn thm => thm |
12804 | 786 |
|> Tactic.norm_hhf_rule |
11816 | 787 |
|> Seq.EVERY (rev exp_asms) |
13415 | 788 |
|> Seq.map (Drule.implies_intr_list view) |
11816 | 789 |
|> Seq.map (fn rule => |
790 |
let |
|
791 |
val {sign, prop, ...} = Thm.rep_thm rule; |
|
15570 | 792 |
val frees = map (Thm.cterm_of sign) (List.mapPartial (find_free prop) fixes); |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
793 |
val tfrees = gen (Term.add_term_tfree_names (prop, [])); |
11816 | 794 |
in |
795 |
rule |
|
796 |
|> Drule.forall_intr_list frees |
|
12804 | 797 |
|> Tactic.norm_hhf_rule |
12504 | 798 |
|> (#1 o Drule.tvars_intr_list tfrees) |
11816 | 799 |
end) |
800 |
end; |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
801 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
802 |
(*without varification*) |
15696 | 803 |
fun export_view' view is_goal inner outer = |
804 |
let |
|
805 |
val asms = Library.drop (length (assumptions_of outer), assumptions_of inner); |
|
806 |
val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms; |
|
807 |
in fn thm =>thm |
|
808 |
|> Tactic.norm_hhf_plain |
|
809 |
|> Seq.EVERY (rev exp_asms) |
|
810 |
|> Seq.map (Drule.implies_intr_list view) |
|
811 |
|> Seq.map Tactic.norm_hhf_plain |
|
812 |
end; |
|
813 |
||
13415 | 814 |
val export = export_view []; |
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13378
diff
changeset
|
815 |
|
15696 | 816 |
fun gen_export_std exp_view view inner outer = |
817 |
let val exp = exp_view view false inner outer in |
|
13378 | 818 |
fn th => |
819 |
(case Seq.pull (exp th) of |
|
15531 | 820 |
SOME (th', _) => th' |> Drule.local_standard |
821 |
| NONE => raise CONTEXT ("Internal failure while exporting theorem", inner)) |
|
13378 | 822 |
end; |
12704 | 823 |
|
15696 | 824 |
val export_standard = gen_export_std export_view; |
825 |
val export_plain = gen_export_std export_view'; |
|
7925 | 826 |
|
5819 | 827 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
828 |
|
5819 | 829 |
(** bindings **) |
830 |
||
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
831 |
(* delete_update_binds *) |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
832 |
|
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
833 |
local |
5819 | 834 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
835 |
fun del_bind xi = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) => |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
836 |
(thy, syntax, data, asms, Vartab.delete_safe xi binds, thms, cases, defs)); |
7606 | 837 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
838 |
fun upd_bind ((x, i), t) = |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
839 |
let |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
840 |
val T = Term.fastype_of t; |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
841 |
val t' = |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
842 |
if null (Term.term_tvars t \\ Term.typ_tvars T) then t |
8637 | 843 |
else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T); |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
844 |
in |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
845 |
map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) => |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
846 |
(thy, syntax, data, asms, Vartab.update (((x, i), (t', T)), binds), thms, cases, defs)) |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
847 |
o declare_term t' |
5819 | 848 |
end; |
849 |
||
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
850 |
fun del_upd_bind (xi, NONE) = del_bind xi |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
851 |
| del_upd_bind (xi, SOME t) = upd_bind (xi, t); |
7606 | 852 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
853 |
in |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
854 |
|
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
855 |
val delete_update_binds = fold del_upd_bind; |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
856 |
|
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
857 |
end; |
7606 | 858 |
|
5819 | 859 |
|
8096 | 860 |
(* simult_matches *) |
861 |
||
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
862 |
fun simult_matches ctxt [] = [] |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
863 |
| simult_matches ctxt pairs = |
8096 | 864 |
let |
10554 | 865 |
fun fail () = raise CONTEXT ("Pattern match failed!", ctxt); |
866 |
||
15570 | 867 |
val maxidx = Library.foldl (fn (i, (t1, t2)) => |
8096 | 868 |
Int.max (i, Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2))) (~1, pairs); |
10554 | 869 |
val envs = Unify.smash_unifiers (sign_of ctxt, Envir.empty maxidx, |
870 |
map swap pairs); (*prefer assignment of variables from patterns*) |
|
871 |
val env = |
|
8096 | 872 |
(case Seq.pull envs of |
15531 | 873 |
NONE => fail () |
874 |
| SOME (env, _) => env); (*ignore further results*) |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
875 |
val domain = |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
876 |
filter_out Term.is_replaced_dummy_pattern (map #1 (Drule.vars_of_terms (map #1 pairs))); |
10554 | 877 |
val _ = (*may not assign variables from text*) |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
878 |
if null (map #1 (Envir.alist_of env) inter (map #1 (Drule.vars_of_terms (map #2 pairs)))) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
879 |
then () else fail (); |
15531 | 880 |
fun norm_bind (xi, t) = if xi mem domain then SOME (xi, Envir.norm_term env t) else NONE; |
15570 | 881 |
in List.mapPartial norm_bind (Envir.alist_of env) end; |
8096 | 882 |
|
883 |
||
884 |
(* add_binds(_i) *) |
|
5819 | 885 |
|
7925 | 886 |
local |
887 |
||
5819 | 888 |
fun gen_bind prep (ctxt, (xi as (x, _), raw_t)) = |
15570 | 889 |
ctxt |> delete_update_binds [(xi, Option.map (prep ctxt) raw_t)]; |
5819 | 890 |
|
15570 | 891 |
fun gen_binds prep binds ctxt = Library.foldl (gen_bind prep) (ctxt, binds); |
7925 | 892 |
|
10810 | 893 |
in |
894 |
||
15531 | 895 |
fun drop_schematic (b as (xi, SOME t)) = if null (Term.term_vars t) then b else (xi, NONE) |
10554 | 896 |
| drop_schematic b = b; |
897 |
||
5819 | 898 |
val add_binds = gen_binds read_term; |
899 |
val add_binds_i = gen_binds cert_term; |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
900 |
|
12147 | 901 |
fun auto_bind f ts ctxt = ctxt |> add_binds_i (map drop_schematic (f (sign_of ctxt) ts)); |
902 |
val auto_bind_goal = auto_bind AutoBind.goal; |
|
903 |
val auto_bind_facts = auto_bind AutoBind.facts; |
|
7925 | 904 |
|
905 |
end; |
|
5819 | 906 |
|
907 |
||
8096 | 908 |
(* match_bind(_i) *) |
5819 | 909 |
|
8096 | 910 |
local |
911 |
||
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
912 |
fun prep_bind prep_pats (ctxt, (raw_pats, t)) = |
5819 | 913 |
let |
8096 | 914 |
val ctxt' = declare_term t ctxt; |
915 |
val pats = prep_pats (fastype_of t) ctxt' raw_pats; |
|
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
916 |
val binds = simult_matches ctxt' (map (rpair t) pats); |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
917 |
in (ctxt', binds) end; |
7670 | 918 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
919 |
fun gen_binds prep_terms prep_pats gen raw_binds ctxt = |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
920 |
let |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
921 |
val ts = prep_terms ctxt (map snd raw_binds); |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
922 |
val (ctxt', binds) = |
15570 | 923 |
apsnd List.concat (foldl_map (prep_bind prep_pats) (ctxt, map fst raw_binds ~~ ts)); |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
924 |
val binds' = |
12550
32843ad8160a
generalize type variables properly: start with occurrences in objects
wenzelm
parents:
12530
diff
changeset
|
925 |
if gen then map #1 binds ~~ generalize ctxt' ctxt (map #2 binds) |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
926 |
else binds; |
15531 | 927 |
val binds'' = map (apsnd SOME) binds'; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
928 |
in |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
929 |
warn_extra_tfrees ctxt |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
930 |
(if gen then ctxt (*sic!*) |> declare_terms (map #2 binds') |> add_binds_i binds'' |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
931 |
else ctxt' |> add_binds_i binds'') |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
932 |
end; |
8096 | 933 |
|
934 |
in |
|
5935 | 935 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
936 |
val match_bind = gen_binds read_terms read_term_pats; |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
937 |
val match_bind_i = gen_binds (map o cert_term) cert_term_pats; |
8096 | 938 |
|
939 |
end; |
|
5935 | 940 |
|
941 |
||
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
942 |
(* propositions with patterns *) |
5935 | 943 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
944 |
local |
8096 | 945 |
|
10554 | 946 |
fun prep_propp schematic prep_props prep_pats (context, args) = |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
947 |
let |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
948 |
fun prep ((ctxt, prop :: props), (_, (raw_pats1, raw_pats2))) = |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
949 |
let |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
950 |
val ctxt' = declare_term prop ctxt; |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
951 |
val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2); (*simultaneous type inference!*) |
13629 | 952 |
in ((ctxt', props), (prop, splitAt(length raw_pats1, pats))) end |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
953 |
| prep _ = sys_error "prep_propp"; |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
954 |
val ((context', _), propp) = foldl_map (foldl_map prep) |
15570 | 955 |
((context, prep_props schematic context (List.concat (map (map fst) args))), args); |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
956 |
in (context', propp) end; |
5935 | 957 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
958 |
fun matches ctxt (prop, (pats1, pats2)) = |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
959 |
simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2); |
8096 | 960 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
961 |
fun gen_bind_propp prepp (ctxt, raw_args) = |
8096 | 962 |
let |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
963 |
val (ctxt', args) = prepp (ctxt, raw_args); |
15570 | 964 |
val binds = List.concat (List.concat (map (map (matches ctxt')) args)); |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
965 |
val propss = map (map #1) args; |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
966 |
|
10554 | 967 |
(*generalize result: context evaluated now, binds added later*) |
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
968 |
val gen = generalize ctxt' ctxt; |
15531 | 969 |
fun gen_binds c = c |> add_binds_i (map #1 binds ~~ map SOME (gen (map #2 binds))); |
970 |
in (ctxt' |> add_binds_i (map (apsnd SOME) binds), (propss, gen_binds)) end; |
|
8096 | 971 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
972 |
in |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
973 |
|
11925 | 974 |
val read_propp = prep_propp false read_props read_prop_pats; |
975 |
val cert_propp = prep_propp false cert_props cert_prop_pats; |
|
10554 | 976 |
val read_propp_schematic = prep_propp true read_props read_prop_pats; |
977 |
val cert_propp_schematic = prep_propp true cert_props cert_prop_pats; |
|
978 |
||
11925 | 979 |
val bind_propp = gen_bind_propp read_propp; |
980 |
val bind_propp_i = gen_bind_propp cert_propp; |
|
981 |
val bind_propp_schematic = gen_bind_propp read_propp_schematic; |
|
10554 | 982 |
val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic; |
6789 | 983 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
984 |
end; |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
985 |
|
6789 | 986 |
|
5819 | 987 |
|
988 |
(** theorems **) |
|
989 |
||
6091 | 990 |
(* get_thm(s) *) |
5819 | 991 |
|
9566 | 992 |
(*beware of proper order of evaluation!*) |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
993 |
fun retrieve_thms f g (ctxt as Context {thy, thms = (_, space, tab, _), ...}) = |
9566 | 994 |
let |
995 |
val sg_ref = Sign.self_ref (Theory.sign_of thy); |
|
996 |
val get_from_thy = f thy; |
|
997 |
in |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
998 |
fn xnamei as (xname, _) => |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
999 |
(case Symtab.lookup (tab, NameSpace.intern space xname) of |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1000 |
SOME ths => map (Thm.transfer_sg (Sign.deref sg_ref)) (PureThy.select_thm xnamei ths) |
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15452
diff
changeset
|
1001 |
| _ => get_from_thy xnamei) |> g xname |
9566 | 1002 |
end; |
5819 | 1003 |
|
9566 | 1004 |
val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm; |
1005 |
val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm; |
|
1006 |
val get_thms = retrieve_thms PureThy.get_thms (K I); |
|
1007 |
val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I); |
|
5819 | 1008 |
|
1009 |
||
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1010 |
(* name space operations *) |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1011 |
|
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1012 |
fun cond_extern (Context {thms = (_, space, _, _), ...}) = NameSpace.cond_extern space; |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1013 |
|
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13378
diff
changeset
|
1014 |
fun qualified q = map_context (fn (thy, syntax, data, asms, binds, |
15735 | 1015 |
(_, space, tab, index), cases, defs) => |
1016 |
(thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs)); |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1017 |
|
13399
c136276dc847
support locale ``views'' (for cumulative predicates);
wenzelm
parents:
13378
diff
changeset
|
1018 |
fun restore_qualified (Context {thms, ...}) = qualified (#1 thms); |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1019 |
|
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1020 |
fun hide_thms fully names = |
15735 | 1021 |
map_context (fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) => |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1022 |
(thy, syntax, data, asms, binds, (q, NameSpace.hide fully (space, names), tab, index), |
15735 | 1023 |
cases, defs)); |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1024 |
|
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1025 |
|
6091 | 1026 |
(* put_thm(s) *) |
5819 | 1027 |
|
15696 | 1028 |
fun gen_put_thms _ _ ("", _) ctxt = ctxt |
1029 |
| gen_put_thms override_q acc (name, ths) ctxt = ctxt |> map_context |
|
15735 | 1030 |
(fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) => |
15696 | 1031 |
if not override_q andalso not q andalso NameSpace.is_qualified name then |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1032 |
raise CONTEXT ("Attempt to declare qualified name " ^ quote name, ctxt) |
15696 | 1033 |
else (thy, syntax, data, asms, binds, (q, NameSpace.extend' acc (space, [name]), |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1034 |
Symtab.update ((name, ths), tab), |
15735 | 1035 |
FactIndex.add (is_known ctxt) (index, (name, ths))), cases, defs)); |
5819 | 1036 |
|
15696 | 1037 |
fun gen_put_thm q acc (name, th) = gen_put_thms q acc (name, [th]); |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1038 |
fun gen_put_thmss q acc = fold (gen_put_thms q acc); |
5819 | 1039 |
|
15696 | 1040 |
val put_thm = gen_put_thm false NameSpace.accesses; |
1041 |
val put_thms = gen_put_thms false NameSpace.accesses; |
|
1042 |
val put_thmss = gen_put_thmss false NameSpace.accesses; |
|
5819 | 1043 |
|
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1044 |
|
7606 | 1045 |
(* reset_thms *) |
1046 |
||
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1047 |
fun reset_thms name = |
15735 | 1048 |
map_context (fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) => |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1049 |
(thy, syntax, data, asms, binds, (q, space, Symtab.delete_safe name tab, index), |
15735 | 1050 |
cases, defs)); |
7606 | 1051 |
|
1052 |
||
14564 | 1053 |
(* note_thmss *) |
5819 | 1054 |
|
12711 | 1055 |
local |
1056 |
||
15696 | 1057 |
fun gen_note_thss get acc (ctxt, ((name, more_attrs), ths_attrs)) = |
5819 | 1058 |
let |
1059 |
fun app ((ct, ths), (th, attrs)) = |
|
12711 | 1060 |
let val (ct', th') = Thm.applys_attributes ((ct, get ctxt th), attrs @ more_attrs) |
1061 |
in (ct', th' :: ths) end; |
|
15570 | 1062 |
val (ctxt', rev_thms) = Library.foldl app ((ctxt, []), ths_attrs); |
1063 |
val thms = List.concat (rev rev_thms); |
|
15696 | 1064 |
in (ctxt' |> gen_put_thms true acc (name, thms), (name, thms)) end; |
5819 | 1065 |
|
15696 | 1066 |
fun gen_note_thmss get acc args ctxt = |
1067 |
foldl_map (gen_note_thss get acc) (ctxt, args); |
|
12711 | 1068 |
|
1069 |
in |
|
1070 |
||
15696 | 1071 |
val note_thmss = gen_note_thmss get_thms NameSpace.accesses; |
1072 |
val note_thmss_i = gen_note_thmss (K I) NameSpace.accesses; |
|
1073 |
||
1074 |
val note_thmss_accesses = gen_note_thmss get_thms; |
|
1075 |
val note_thmss_accesses_i = gen_note_thmss (K I); |
|
12711 | 1076 |
|
1077 |
end; |
|
9196 | 1078 |
|
5819 | 1079 |
|
1080 |
||
1081 |
(** assumptions **) |
|
1082 |
||
11918
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1083 |
(* basic exporters *) |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1084 |
|
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1085 |
fun export_assume true = Seq.single oo Drule.implies_intr_goals |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1086 |
| export_assume false = Seq.single oo Drule.implies_intr_list; |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1087 |
|
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1088 |
fun export_presume _ = export_assume false; |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1089 |
|
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1090 |
|
12057 | 1091 |
(* defs *) |
1092 |
||
12066 | 1093 |
fun cert_def ctxt eq = |
12016 | 1094 |
let |
12057 | 1095 |
fun err msg = raise CONTEXT (msg ^ |
1096 |
"\nThe error(s) above occurred in local definition: " ^ string_of_term ctxt eq, ctxt); |
|
1097 |
val (lhs, rhs) = Logic.dest_equals (Term.strip_all_body eq) |
|
1098 |
handle TERM _ => err "Not a meta-equality (==)"; |
|
12086 | 1099 |
val (f, xs) = Term.strip_comb lhs; |
1100 |
val (c, _) = Term.dest_Free f handle TERM _ => |
|
13430 | 1101 |
err "Head of lhs must be a free/fixed variable"; |
12057 | 1102 |
|
12086 | 1103 |
fun is_free (Free (x, _)) = not (is_fixed ctxt x) |
1104 |
| is_free _ = false; |
|
15570 | 1105 |
val extra_frees = List.filter is_free (term_frees rhs) \\ xs; |
12016 | 1106 |
in |
12086 | 1107 |
conditional (not (forall (is_Bound orf is_free) xs andalso null (duplicates xs))) (fn () => |
13430 | 1108 |
err "Arguments of lhs must be distinct free/bound variables"); |
12086 | 1109 |
conditional (f mem Term.term_frees rhs) (fn () => |
1110 |
err "Element to be defined occurs on rhs"); |
|
1111 |
conditional (not (null extra_frees)) (fn () => |
|
1112 |
err ("Extra free variables on rhs: " ^ commas_quote (map (#1 o dest_Free) extra_frees))); |
|
15570 | 1113 |
(c, Term.list_all_free (List.mapPartial (try Term.dest_Free) xs, eq)) |
12057 | 1114 |
end; |
1115 |
||
1116 |
fun head_of_def cprop = |
|
1117 |
#1 (Term.strip_comb (#1 (Logic.dest_equals (Term.strip_all_body (Thm.term_of cprop))))) |
|
1118 |
|> Thm.cterm_of (Thm.sign_of_cterm cprop); |
|
11918
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1119 |
|
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1120 |
fun export_def _ cprops thm = |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1121 |
thm |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1122 |
|> Drule.implies_intr_list cprops |
12057 | 1123 |
|> Drule.forall_intr_list (map head_of_def cprops) |
11918
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1124 |
|> Drule.forall_elim_vars 0 |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1125 |
|> RANGE (replicate (length cprops) (Tactic.rtac Drule.reflexive_thm)) 1; |
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1126 |
|
dfdf0798d7b8
added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents:
11915
diff
changeset
|
1127 |
|
5819 | 1128 |
(* assume *) |
1129 |
||
7270 | 1130 |
local |
6797 | 1131 |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1132 |
fun add_assm (ctxt, ((name, attrs), props)) = |
5819 | 1133 |
let |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1134 |
val cprops = map (Thm.cterm_of (sign_of ctxt)) props; |
12804 | 1135 |
val asms = map (Tactic.norm_hhf_rule o Thm.assume) cprops; |
5919 | 1136 |
|
1137 |
val ths = map (fn th => ([th], [])) asms; |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1138 |
val (ctxt', [(_, thms)]) = |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1139 |
ctxt |
12147 | 1140 |
|> auto_bind_facts props |
14564 | 1141 |
|> note_thmss_i [((name, attrs), ths)]; |
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1142 |
in (ctxt', (cprops, (name, asms), (name, thms))) end; |
5819 | 1143 |
|
9470 | 1144 |
fun gen_assms prepp exp args ctxt = |
1145 |
let |
|
10465
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1146 |
val (ctxt1, propss) = prepp (ctxt, map snd args); |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1147 |
val (ctxt2, results) = foldl_map add_assm (ctxt1, map fst args ~~ propss); |
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
wenzelm
parents:
10381
diff
changeset
|
1148 |
|
15570 | 1149 |
val cprops = List.concat (map #1 results); |
9470 | 1150 |
val asmss = map #2 results; |
1151 |
val thmss = map #3 results; |
|
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1152 |
val ctxt3 = ctxt2 |> map_context |
15735 | 1153 |
(fn (thy, syntax, data, ((asms_ct, asms_th), fixes), binds, thms, cases, defs) => |
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1154 |
(thy, syntax, data, ((asms_ct @ [(cprops, exp)], asms_th @ asmss), fixes), binds, thms, |
15735 | 1155 |
cases, defs)); |
11925 | 1156 |
val ctxt4 = ctxt3 |> put_thms ("prems", prems_of ctxt3); |
1157 |
in (warn_extra_tfrees ctxt ctxt4, thmss) end; |
|
5819 | 1158 |
|
7270 | 1159 |
in |
1160 |
||
8616
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
1161 |
val assume = gen_assms (apsnd #1 o bind_propp); |
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8462
diff
changeset
|
1162 |
val assume_i = gen_assms (apsnd #1 o bind_propp_i); |
7270 | 1163 |
|
1164 |
end; |
|
5819 | 1165 |
|
1166 |
||
8096 | 1167 |
(* variables *) |
1168 |
||
10381 | 1169 |
local |
1170 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1171 |
fun prep_vars prep_typ internal liberal (ctxt, (xs, raw_T)) = |
8096 | 1172 |
let |
12504 | 1173 |
fun cond_tvars T = |
1174 |
if internal then T |
|
1175 |
else Type.no_tvars T handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt); |
|
1176 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1177 |
val _ = if liberal then () else |
15570 | 1178 |
(case List.filter (not o Syntax.is_identifier) (map (no_skolem internal ctxt) xs) of |
8096 | 1179 |
[] => () | bads => raise CONTEXT ("Bad variable name(s): " ^ commas_quote bads, ctxt)); |
1180 |
||
15570 | 1181 |
val opt_T = Option.map (cond_tvars o prep_typ ctxt) raw_T; |
1182 |
val T = getOpt (opt_T, TypeInfer.logicT); |
|
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1183 |
val ctxt' = ctxt |> declare_terms_syntax (map (fn x => Free (x, T)) xs); |
8096 | 1184 |
in (ctxt', (xs, opt_T)) end; |
1185 |
||
10381 | 1186 |
in |
1187 |
||
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1188 |
val read_vars = prep_vars read_typ false false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1189 |
val cert_vars = prep_vars cert_typ true false; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1190 |
val read_vars_liberal = prep_vars read_typ false true; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1191 |
val cert_vars_liberal = prep_vars cert_typ true true; |
8096 | 1192 |
|
10381 | 1193 |
end; |
1194 |
||
8096 | 1195 |
|
5819 | 1196 |
(* fix *) |
1197 |
||
8096 | 1198 |
local |
1199 |
||
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1200 |
fun map_fixes f = |
15735 | 1201 |
map_context (fn (thy, syntax, data, (assumes, fixes), binds, thms, cases, defs) => |
1202 |
(thy, syntax, data, (assumes, f fixes), binds, thms, cases, defs)); |
|
5819 | 1203 |
|
11925 | 1204 |
fun err_dups ctxt xs = raise CONTEXT ("Duplicate variable(s): " ^ commas_quote xs, ctxt); |
1205 |
||
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1206 |
val declare = |
15570 | 1207 |
declare_terms_syntax o List.mapPartial (fn (_, NONE) => NONE | (x, SOME T) => SOME (Free (x, T))); |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1208 |
|
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1209 |
fun add_vars xs Ts ctxt = |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1210 |
let val xs' = Term.variantlist (map Syntax.skolem xs, map #2 (fixes_of ctxt)) in |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1211 |
ctxt |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1212 |
|> declare (xs' ~~ Ts) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1213 |
|> map_fixes (fn fixes => (xs ~~ xs') @ fixes) |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1214 |
end; |
11925 | 1215 |
|
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1216 |
fun add_vars_direct xs Ts ctxt = |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1217 |
ctxt |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1218 |
|> declare (xs ~~ Ts) |
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1219 |
|> map_fixes (fn fixes => |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1220 |
(case xs inter_string map #1 fixes of |
12309
03e9287be350
name space for local thms (export cond_extern, qualified);
wenzelm
parents:
12291
diff
changeset
|
1221 |
[] => (xs ~~ xs) @ fixes |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1222 |
| dups => err_dups ctxt dups)); |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1223 |
|
11925 | 1224 |
|
1225 |
fun gen_fix prep add raw_vars ctxt = |
|
8096 | 1226 |
let |
1227 |
val (ctxt', varss) = foldl_map prep (ctxt, raw_vars); |
|
15570 | 1228 |
val vars = rev (List.concat (map (fn (xs, T) => map (rpair T) xs) varss)); |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1229 |
val xs = map #1 vars; |
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1230 |
val Ts = map #2 vars; |
8096 | 1231 |
in |
11925 | 1232 |
(case Library.duplicates xs of [] => () | dups => err_dups ctxt dups); |
12130
30d9143aff7e
syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents:
12123
diff
changeset
|
1233 |
ctxt' |> add xs Ts |
8096 | 1234 |
end; |
5819 | 1235 |
|
15531 | 1236 |
fun prep_type (x, NONE, SOME mx) = ([x], SOME (mixfix_type mx)) |
12576
9fd10052c3f7
added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents:
12550
diff
changeset
|
1237 |
| prep_type (x, opt_T, _) = ([x], opt_T); |
9fd10052c3f7
added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents:
12550
diff
changeset
|
1238 |
|
8096 | 1239 |
in |
7679 | 1240 |
|
11925 | 1241 |
val fix = gen_fix read_vars add_vars; |
1242 |
val fix_i = gen_fix cert_vars add_vars; |
|
14720
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1243 |
|
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1244 |
fun fix_direct liberal = |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1245 |
gen_fix (if liberal then cert_vars_liberal else cert_vars) add_vars_direct; |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1246 |
|
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1247 |
fun add_fixes decls = add_syntax decls o fix_direct false (map prep_type decls); |
ceff6d4fb836
cleanup up read functions, include liberal versions;
wenzelm
parents:
14707
diff
changeset
|
1248 |
fun add_fixes_liberal decls = add_syntax decls o fix_direct true (map prep_type decls); |
8096 | 1249 |
|
1250 |
end; |
|
5819 | 1251 |
|
12048 | 1252 |
fun fix_frees ts ctxt = |
1253 |
let |
|
15570 | 1254 |
val frees = Library.foldl Term.add_frees ([], ts); |
15531 | 1255 |
fun new (x, T) = if is_fixed ctxt x then NONE else SOME ([x], SOME T); |
15570 | 1256 |
in fix_direct false (rev (List.mapPartial new frees)) ctxt end; |
12016 | 1257 |
|
6895 | 1258 |
|
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1259 |
(*Note: improper use may result in variable capture / dynamic scoping!*) |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1260 |
fun bind_skolem ctxt xs = |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1261 |
let |
15531 | 1262 |
val ctxt' = ctxt |> fix_i [(xs, NONE)]; |
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1263 |
fun bind (t as Free (x, T)) = |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1264 |
if x mem_string xs then |
15531 | 1265 |
(case lookup_skolem ctxt' x of SOME x' => Free (x', T) | NONE => t) |
9291
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1266 |
else t |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1267 |
| bind (t $ u) = bind t $ bind u |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1268 |
| bind (Abs (x, T, t)) = Abs (x, T, bind t) |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1269 |
| bind a = a; |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1270 |
in bind end; |
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1271 |
|
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
wenzelm
parents:
9274
diff
changeset
|
1272 |
|
5819 | 1273 |
|
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1274 |
(** cases **) |
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1275 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1276 |
fun prep_case ctxt name xs {fixes, assumes, binds} = |
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1277 |
let |
15570 | 1278 |
fun replace (opt_x :: xs) ((y, T) :: ys) = (getOpt (opt_x,y), T) :: replace xs ys |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1279 |
| replace [] ys = ys |
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1280 |
| replace (_ :: _) [] = raise CONTEXT ("Too many parameters for case " ^ quote name, ctxt); |
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1281 |
in |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1282 |
if null (foldr Term.add_typ_tvars [] (map snd fixes)) andalso |
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
1283 |
null (foldr Term.add_term_vars [] (List.concat (map snd assumes))) then |
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1284 |
{fixes = replace xs fixes, assumes = assumes, binds = map drop_schematic binds} |
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1285 |
else raise CONTEXT ("Illegal schematic variable(s) in case " ^ quote name, ctxt) |
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1286 |
end; |
8403 | 1287 |
|
11793
5f0ab6f5c280
support impromptu terminology of cases parameters;
wenzelm
parents:
11764
diff
changeset
|
1288 |
fun get_case (ctxt as Context {cases, ...}) name xs = |
8426 | 1289 |
(case assoc (cases, name) of |
15531 | 1290 |
NONE => raise CONTEXT ("Unknown case: " ^ quote name, ctxt) |
1291 |
| SOME c => prep_case ctxt name xs c); |
|
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1292 |
|
8384 | 1293 |
|
15735 | 1294 |
fun add_cases xs = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) => |
1295 |
(thy, syntax, data, asms, binds, thms, rev (filter_out (equal "" o #1) xs) @ cases, defs)); |
|
8373
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1296 |
|
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1297 |
|
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents:
8186
diff
changeset
|
1298 |
|
10810 | 1299 |
(** print context information **) |
1300 |
||
1301 |
val verbose = ref false; |
|
1302 |
fun verb f x = if ! verbose then f (x ()) else []; |
|
1303 |
fun verb_single x = verb Library.single x; |
|
1304 |
||
1305 |
fun setmp_verbose f x = Library.setmp verbose true f x; |
|
1306 |
||
1307 |
fun pretty_items prt name items = |
|
1308 |
let |
|
1309 |
fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x] |
|
1310 |
| prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs); |
|
1311 |
in |
|
1312 |
if null items andalso not (! verbose) then [] |
|
1313 |
else [Pretty.big_list name (map prt_itms items)] |
|
1314 |
end; |
|
1315 |
||
1316 |
||
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1317 |
(* local syntax *) |
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1318 |
|
12093 | 1319 |
val print_syntax = Syntax.print_syntax o syn_of; |
12072
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1320 |
|
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents:
12066
diff
changeset
|
1321 |
|
10810 | 1322 |
(* term bindings *) |
1323 |
||
1324 |
fun pretty_binds (ctxt as Context {binds, ...}) = |
|
1325 |
let |
|
12057 | 1326 |
fun prt_bind (xi, (t, T)) = pretty_term ctxt (Logic.mk_equals (Var (xi, T), t)); |
10810 | 1327 |
in |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1328 |
if Vartab.is_empty binds andalso not (! verbose) then [] |
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1329 |
else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))] |
10810 | 1330 |
end; |
1331 |
||
1332 |
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds; |
|
1333 |
||
1334 |
||
1335 |
(* local theorems *) |
|
1336 |
||
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1337 |
fun pretty_lthms (ctxt as Context {thms = (_, space, tab, _), ...}) = |
15758
07e382399a96
binds/thms: do not store options, but delete from table;
wenzelm
parents:
15750
diff
changeset
|
1338 |
pretty_items (pretty_thm ctxt) "facts:" (NameSpace.cond_extern_table space tab); |
10810 | 1339 |
|
12057 | 1340 |
val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms; |
10810 | 1341 |
|
1342 |
||
1343 |
(* local contexts *) |
|
1344 |
||
10830 | 1345 |
fun apply_case ({fixes, assumes, binds}: RuleCases.T) ctxt = |
10810 | 1346 |
let |
15531 | 1347 |
fun bind (c, (x, T)) = (c |> fix_i [([x], SOME T)], bind_skolem c [x] (Free (x, T))); |
10830 | 1348 |
val (ctxt', xs) = foldl_map bind (ctxt, fixes); |
15570 | 1349 |
fun app t = Library.foldl Term.betapply (t, xs); |
1350 |
in (ctxt', (map (apsnd (Option.map app)) binds, map (apsnd (map app)) assumes)) end; |
|
10810 | 1351 |
|
1352 |
fun pretty_cases (ctxt as Context {cases, ...}) = |
|
1353 |
let |
|
12057 | 1354 |
val prt_term = pretty_term ctxt; |
1355 |
||
10810 | 1356 |
fun prt_let (xi, t) = Pretty.block |
10818 | 1357 |
[Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, |
10810 | 1358 |
Pretty.quote (prt_term t)]; |
1359 |
||
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1360 |
fun prt_asm (a, ts) = Pretty.block (Pretty.breaks |
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1361 |
((if a = "" then [] else [Pretty.str (a ^ ":")]) @ map (Pretty.quote o prt_term) ts)); |
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1362 |
|
10810 | 1363 |
fun prt_sect _ _ _ [] = [] |
1364 |
| prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s :: |
|
15570 | 1365 |
List.concat (Library.separate sep (map (Library.single o prt) xs))))]; |
10810 | 1366 |
|
10830 | 1367 |
fun prt_case (name, (fixes, (lets, asms))) = Pretty.block (Pretty.fbreaks |
10810 | 1368 |
(Pretty.str (name ^ ":") :: |
11915 | 1369 |
prt_sect "fix" [] (Pretty.str o fst) fixes @ |
10810 | 1370 |
prt_sect "let" [Pretty.str "and"] prt_let |
15570 | 1371 |
(List.mapPartial (fn (xi, SOME t) => SOME (xi, t) | _ => NONE) lets) @ |
13425
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1372 |
(if forall (null o #2) asms then [] |
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
wenzelm
parents:
13415
diff
changeset
|
1373 |
else prt_sect "assume" [Pretty.str "and"] prt_asm asms))); |
10810 | 1374 |
|
1375 |
val cases' = rev (Library.gen_distinct Library.eq_fst cases); |
|
1376 |
in |
|
1377 |
if null cases andalso not (! verbose) then [] |
|
10830 | 1378 |
else [Pretty.big_list "cases:" |
1379 |
(map (prt_case o apsnd (fn c => (#fixes c, #2 (apply_case c ctxt)))) cases')] |
|
10810 | 1380 |
end; |
1381 |
||
1382 |
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases; |
|
1383 |
||
1384 |
||
12057 | 1385 |
(* core context *) |
10810 | 1386 |
|
1387 |
val prems_limit = ref 10; |
|
1388 |
||
12057 | 1389 |
fun pretty_asms ctxt = |
10810 | 1390 |
let |
12057 | 1391 |
val prt_term = pretty_term ctxt; |
1392 |
||
12093 | 1393 |
(*structures*) |
1394 |
val (_, structs, _) = syntax_of ctxt; |
|
1395 |
val prt_structs = if null structs then [] |
|
1396 |
else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 :: |
|
1397 |
Pretty.commas (map Pretty.str structs))]; |
|
1398 |
||
12057 | 1399 |
(*fixes*) |
1400 |
fun prt_fix (x, x') = |
|
1401 |
if x = x' then Pretty.str x |
|
1402 |
else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; |
|
12093 | 1403 |
val fixes = rev (filter_out |
1404 |
((can Syntax.dest_internal o #1) orf (fn (_, x') => x' mem_string structs)) (fixes_of ctxt)); |
|
1405 |
val prt_fixes = if null fixes then [] |
|
1406 |
else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: |
|
1407 |
Pretty.commas (map prt_fix fixes))]; |
|
12057 | 1408 |
|
1409 |
(*prems*) |
|
10810 | 1410 |
val limit = ! prems_limit; |
1411 |
val prems = prems_of ctxt; |
|
1412 |
val len = length prems; |
|
12093 | 1413 |
val prt_prems = if null prems then [] |
1414 |
else [Pretty.big_list "prems:" ((if len <= limit then [] else [Pretty.str "..."]) @ |
|
1415 |
map (pretty_thm ctxt) (Library.drop (len - limit, prems)))]; |
|
1416 |
||
1417 |
in prt_structs @ prt_fixes @ prt_prems end; |
|
10810 | 1418 |
|
1419 |
||
1420 |
(* main context *) |
|
1421 |
||
12291 | 1422 |
fun pretty_context (ctxt as Context {cases, defs = (types, sorts, used, _), ...}) = |
10810 | 1423 |
let |
12057 | 1424 |
val prt_term = pretty_term ctxt; |
1425 |
val prt_typ = pretty_typ ctxt; |
|
1426 |
val prt_sort = pretty_sort ctxt; |
|
10810 | 1427 |
|
1428 |
(*theory*) |
|
12057 | 1429 |
val pretty_thy = Pretty.block |
1430 |
[Pretty.str "Theory:", Pretty.brk 1, Sign.pretty_sg (sign_of ctxt)]; |
|
10810 | 1431 |
|
1432 |
(*defaults*) |
|
1433 |
fun prt_atom prt prtT (x, X) = Pretty.block |
|
1434 |
[prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; |
|
1435 |
||
1436 |
fun prt_var (x, ~1) = prt_term (Syntax.free x) |
|
1437 |
| prt_var xi = prt_term (Syntax.var xi); |
|
1438 |
||
1439 |
fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) |
|
1440 |
| prt_varT xi = prt_typ (TVar (xi, [])); |
|
1441 |
||
1442 |
val prt_defT = prt_atom prt_var prt_typ; |
|
1443 |
val prt_defS = prt_atom prt_varT prt_sort; |
|
1444 |
in |
|
1445 |
verb_single (K pretty_thy) @ |
|
12057 | 1446 |
pretty_asms ctxt @ |
10810 | 1447 |
verb pretty_binds (K ctxt) @ |
12057 | 1448 |
verb pretty_lthms (K ctxt) @ |
10810 | 1449 |
verb pretty_cases (K ctxt) @ |
1450 |
verb_single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ |
|
1451 |
verb_single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @ |
|
1452 |
verb_single (fn () => Pretty.strs ("used type variable names:" :: used)) |
|
1453 |
end; |
|
1454 |
||
1455 |
||
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1456 |
(* print_thms_containing *) |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1457 |
|
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1458 |
fun lthms_containing (ctxt as Context {thms = (_, _, _, index), ...}) idx = |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1459 |
let |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1460 |
fun valid (name, ths) = |
15531 | 1461 |
(case try (transform_error (fn () => get_thms ctxt (name, NONE))) () of |
1462 |
NONE => false |
|
1463 |
| SOME ths' => Library.equal_lists Thm.eq_thm (ths, ths')); |
|
15570 | 1464 |
in gen_distinct eq_fst (List.filter valid (FactIndex.find idx index)) end; |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1465 |
|
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1466 |
|
13284 | 1467 |
val thms_containing_limit = ref 40; |
1468 |
||
1469 |
fun print_thms_containing ctxt opt_limit ss = |
|
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1470 |
let |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1471 |
val prt_term = pretty_term ctxt; |
13282 | 1472 |
val prt_fact = pretty_fact ctxt; |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1473 |
fun prt_consts [] = [] |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1474 |
| prt_consts cs = [Pretty.block (Pretty.breaks (Pretty.str "constants" :: |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1475 |
map (Pretty.quote o prt_term o Syntax.const) cs))]; |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1476 |
fun prt_frees [] = [] |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1477 |
| prt_frees xs = [Pretty.block (Pretty.breaks (Pretty.str "variables" :: |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1478 |
map (Pretty.quote o prt_term o Syntax.free) xs))]; |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1479 |
|
15570 | 1480 |
val (cs, xs) = Library.foldl (FactIndex.index_term (is_known ctxt)) |
13542 | 1481 |
(([], []), map (read_term_dummies ctxt) ss); |
15531 | 1482 |
val empty_idx = null cs andalso null xs; |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1483 |
|
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1484 |
val header = |
13378 | 1485 |
if empty_idx then [Pretty.block [Pretty.str "Known facts:", Pretty.fbrk]] |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1486 |
else [Pretty.block (Pretty.breaks (Pretty.str "Facts containing" :: |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1487 |
separate (Pretty.str "and") (prt_consts cs @ prt_frees xs)) @ |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1488 |
[Pretty.str ":", Pretty.fbrk])] |
13284 | 1489 |
val facts = |
1490 |
PureThy.thms_containing (theory_of ctxt) (cs, xs) @ lthms_containing ctxt (cs, xs) |
|
1491 |
|> sort_wrt #1; |
|
1492 |
val len = length facts; |
|
15570 | 1493 |
val limit = getOpt (opt_limit, ! thms_containing_limit); |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1494 |
in |
15531 | 1495 |
if empty_idx andalso not (null ss) then |
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1496 |
warning "thms_containing: no consts/frees in specification" |
13284 | 1497 |
else (header @ (if len <= limit then [] else [Pretty.str "..."]) @ |
1498 |
map prt_fact (Library.drop (len - limit, facts))) |> Pretty.chunks |> Pretty.writeln |
|
13278
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1499 |
end; |
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1500 |
|
b62514fcbcab
print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents:
12863
diff
changeset
|
1501 |
|
10810 | 1502 |
|
5819 | 1503 |
(** theory setup **) |
1504 |
||
1505 |
val setup = [ProofDataData.init]; |
|
1506 |
||
1507 |
end; |