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