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