author | ballarin |
Mon, 19 Jan 2009 20:37:08 +0100 | |
changeset 29566 | 937baa077df2 |
parent 28965 | 1de908189869 |
child 29279 | 7456a64bc4f6 |
permissions | -rw-r--r-- |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
1 |
(* Title: Pure/variable.ML |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
2 |
ID: $Id$ |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
3 |
Author: Makarius |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
4 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
5 |
Fixed type/term variables and polymorphic term abbreviations. |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
6 |
*) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
7 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
8 |
signature VARIABLE = |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
9 |
sig |
20303 | 10 |
val is_body: Proof.context -> bool |
11 |
val set_body: bool -> Proof.context -> Proof.context |
|
12 |
val restore_body: Proof.context -> Proof.context -> Proof.context |
|
13 |
val names_of: Proof.context -> Name.context |
|
14 |
val fixes_of: Proof.context -> (string * string) list |
|
15 |
val binds_of: Proof.context -> (typ * term) Vartab.table |
|
24765 | 16 |
val maxidx_of: Proof.context -> int |
28625 | 17 |
val sorts_of: Proof.context -> sort list |
20303 | 18 |
val constraints_of: Proof.context -> typ Vartab.table * sort Vartab.table |
19 |
val is_declared: Proof.context -> string -> bool |
|
20 |
val is_fixed: Proof.context -> string -> bool |
|
21 |
val newly_fixed: Proof.context -> Proof.context -> string -> bool |
|
21571 | 22 |
val add_fixed: Proof.context -> term -> (string * typ) list -> (string * typ) list |
20303 | 23 |
val default_type: Proof.context -> string -> typ option |
24 |
val def_type: Proof.context -> bool -> indexname -> typ option |
|
25 |
val def_sort: Proof.context -> indexname -> sort option |
|
27280 | 26 |
val declare_names: term -> Proof.context -> Proof.context |
20303 | 27 |
val declare_constraints: term -> Proof.context -> Proof.context |
28 |
val declare_term: term -> Proof.context -> Proof.context |
|
27280 | 29 |
val declare_typ: typ -> Proof.context -> Proof.context |
20303 | 30 |
val declare_prf: Proofterm.proof -> Proof.context -> Proof.context |
31 |
val declare_thm: thm -> Proof.context -> Proof.context |
|
32 |
val thm_context: thm -> Proof.context |
|
33 |
val variant_frees: Proof.context -> term list -> (string * 'a) list -> (string * 'a) list |
|
34 |
val add_binds: (indexname * term option) list -> Proof.context -> Proof.context |
|
35 |
val expand_binds: Proof.context -> term -> term |
|
25325 | 36 |
val lookup_const: Proof.context -> string -> string option |
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
37 |
val is_const: Proof.context -> string -> bool |
25325 | 38 |
val declare_const: string * string -> Proof.context -> Proof.context |
20303 | 39 |
val add_fixes: string list -> Proof.context -> string list * Proof.context |
40 |
val add_fixes_direct: string list -> Proof.context -> Proof.context |
|
21369 | 41 |
val auto_fixes: term -> Proof.context -> Proof.context |
20797
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents:
20579
diff
changeset
|
42 |
val variant_fixes: string list -> Proof.context -> string list * Proof.context |
20303 | 43 |
val invent_types: sort list -> Proof.context -> (string * sort) list * Proof.context |
44 |
val export_terms: Proof.context -> Proof.context -> term list -> term list |
|
45 |
val exportT_terms: Proof.context -> Proof.context -> term list -> term list |
|
46 |
val exportT: Proof.context -> Proof.context -> thm list -> thm list |
|
47 |
val export_prf: Proof.context -> Proof.context -> Proofterm.proof -> Proofterm.proof |
|
48 |
val export: Proof.context -> Proof.context -> thm list -> thm list |
|
21522 | 49 |
val export_morphism: Proof.context -> Proof.context -> morphism |
20303 | 50 |
val importT_inst: term list -> Proof.context -> ((indexname * sort) * typ) list * Proof.context |
51 |
val import_inst: bool -> term list -> Proof.context -> |
|
52 |
(((indexname * sort) * typ) list * ((indexname * typ) * term) list) * Proof.context |
|
53 |
val importT_terms: term list -> Proof.context -> term list * Proof.context |
|
54 |
val import_terms: bool -> term list -> Proof.context -> term list * Proof.context |
|
22601 | 55 |
val importT_thms: thm list -> Proof.context -> (ctyp list * thm list) * Proof.context |
20303 | 56 |
val import_prf: bool -> Proofterm.proof -> Proof.context -> Proofterm.proof * Proof.context |
22568
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
wenzelm
parents:
21799
diff
changeset
|
57 |
val import_thms: bool -> thm list -> Proof.context -> |
20303 | 58 |
((ctyp list * cterm list) * thm list) * Proof.context |
21287 | 59 |
val tradeT: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list |
60 |
val trade: (Proof.context -> thm list -> thm list) -> Proof.context -> thm list -> thm list |
|
20303 | 61 |
val focus: cterm -> Proof.context -> (cterm list * cterm) * Proof.context |
62 |
val focus_subgoal: int -> thm -> Proof.context -> (cterm list * cterm) * Proof.context |
|
63 |
val warn_extra_tfrees: Proof.context -> Proof.context -> unit |
|
24694 | 64 |
val polymorphic_types: Proof.context -> term list -> (indexname * sort) list * term list |
20303 | 65 |
val polymorphic: Proof.context -> term list -> term list |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
66 |
end; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
67 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
68 |
structure Variable: VARIABLE = |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
69 |
struct |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
70 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
71 |
(** local context data **) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
72 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
73 |
datatype data = Data of |
20102 | 74 |
{is_body: bool, (*inner body mode*) |
20162 | 75 |
names: Name.context, (*type/term variable names*) |
25325 | 76 |
consts: string Symtab.table, (*consts within the local scope*) |
20162 | 77 |
fixes: (string * string) list, (*term fixes -- extern/intern*) |
20102 | 78 |
binds: (typ * term) Vartab.table, (*term bindings*) |
20162 | 79 |
type_occs: string list Symtab.table, (*type variables -- possibly within term variables*) |
24765 | 80 |
maxidx: int, (*maximum var index*) |
28625 | 81 |
sorts: sort OrdList.T, (*declared sort occurrences*) |
20162 | 82 |
constraints: |
20102 | 83 |
typ Vartab.table * (*type constraints*) |
20162 | 84 |
sort Vartab.table}; (*default sorts*) |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
85 |
|
28625 | 86 |
fun make_data (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) = |
25325 | 87 |
Data {is_body = is_body, names = names, consts = consts, fixes = fixes, binds = binds, |
28625 | 88 |
type_occs = type_occs, maxidx = maxidx, sorts = sorts, constraints = constraints}; |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
89 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
90 |
structure Data = ProofDataFun |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
91 |
( |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
92 |
type T = data; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
93 |
fun init thy = |
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
94 |
make_data (false, Name.context, Symtab.empty, [], Vartab.empty, Symtab.empty, |
28625 | 95 |
~1, [], (Vartab.empty, Vartab.empty)); |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
96 |
); |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
97 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
98 |
fun map_data f = |
28625 | 99 |
Data.map (fn Data {is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints} => |
100 |
make_data (f (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints))); |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
101 |
|
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
102 |
fun map_names f = |
28625 | 103 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
104 |
(is_body, f names, consts, fixes, binds, type_occs, maxidx, sorts, constraints)); |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
105 |
|
25325 | 106 |
fun map_consts f = |
28625 | 107 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
108 |
(is_body, names, f consts, fixes, binds, type_occs, maxidx, sorts, constraints)); |
|
20162 | 109 |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
110 |
fun map_fixes f = |
28625 | 111 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
112 |
(is_body, names, consts, f fixes, binds, type_occs, maxidx, sorts, constraints)); |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
113 |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
114 |
fun map_binds f = |
28625 | 115 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
116 |
(is_body, names, consts, fixes, f binds, type_occs, maxidx, sorts, constraints)); |
|
24765 | 117 |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
118 |
fun map_type_occs f = |
28625 | 119 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
120 |
(is_body, names, consts, fixes, binds, f type_occs, maxidx, sorts, constraints)); |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
121 |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
122 |
fun map_maxidx f = |
28625 | 123 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
124 |
(is_body, names, consts, fixes, binds, type_occs, f maxidx, sorts, constraints)); |
|
125 |
||
126 |
fun map_sorts f = |
|
127 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
|
128 |
(is_body, names, consts, fixes, binds, type_occs, maxidx, f sorts, constraints)); |
|
20102 | 129 |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
130 |
fun map_constraints f = |
28625 | 131 |
map_data (fn (is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
132 |
(is_body, names, consts, fixes, binds, type_occs, maxidx, sorts, f constraints)); |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
133 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
134 |
fun rep_data ctxt = Data.get ctxt |> (fn Data args => args); |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
135 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
136 |
val is_body = #is_body o rep_data; |
24765 | 137 |
|
28625 | 138 |
fun set_body b = |
139 |
map_data (fn (_, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints) => |
|
140 |
(b, names, consts, fixes, binds, type_occs, maxidx, sorts, constraints)); |
|
24765 | 141 |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
142 |
fun restore_body ctxt = set_body (is_body ctxt); |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
143 |
|
20102 | 144 |
val names_of = #names o rep_data; |
145 |
val fixes_of = #fixes o rep_data; |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
146 |
val binds_of = #binds o rep_data; |
20162 | 147 |
val type_occs_of = #type_occs o rep_data; |
24765 | 148 |
val maxidx_of = #maxidx o rep_data; |
28625 | 149 |
val sorts_of = #sorts o rep_data; |
20162 | 150 |
val constraints_of = #constraints o rep_data; |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
151 |
|
20162 | 152 |
val is_declared = Name.is_declared o names_of; |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
153 |
fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt); |
20149 | 154 |
fun newly_fixed inner outer x = is_fixed inner x andalso not (is_fixed outer x); |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
155 |
|
21571 | 156 |
fun add_fixed ctxt = Term.fold_aterms |
157 |
(fn Free (x, T) => if is_fixed ctxt x then insert (op =) (x, T) else I | _ => I); |
|
158 |
||
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
159 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
160 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
161 |
(** declarations **) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
162 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
163 |
(* default sorts and types *) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
164 |
|
20162 | 165 |
fun default_type ctxt x = Vartab.lookup (#1 (constraints_of ctxt)) (x, ~1); |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
166 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
167 |
fun def_type ctxt pattern xi = |
20162 | 168 |
let val {binds, constraints = (types, _), ...} = rep_data ctxt in |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
169 |
(case Vartab.lookup types xi of |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
170 |
NONE => |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
171 |
if pattern then NONE |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
172 |
else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
173 |
| some => some) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
174 |
end; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
175 |
|
20162 | 176 |
val def_sort = Vartab.lookup o #2 o constraints_of; |
177 |
||
178 |
||
179 |
(* names *) |
|
180 |
||
24765 | 181 |
fun declare_type_names t = |
182 |
map_names (fold_types (fold_atyps (fn TFree (a, _) => Name.declare a | _ => I)) t) #> |
|
183 |
map_maxidx (fold_types Term.maxidx_typ t); |
|
20162 | 184 |
|
185 |
fun declare_names t = |
|
186 |
declare_type_names t #> |
|
24765 | 187 |
map_names (fold_aterms (fn Free (x, _) => Name.declare x | _ => I) t) #> |
188 |
map_maxidx (Term.maxidx_term t); |
|
20162 | 189 |
|
190 |
||
191 |
(* type occurrences *) |
|
192 |
||
24719
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents:
24694
diff
changeset
|
193 |
fun decl_type_occsT T = fold_atyps (fn TFree (a, _) => Symtab.default (a, []) | _ => I) T; |
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents:
24694
diff
changeset
|
194 |
|
22671 | 195 |
val decl_type_occs = fold_term_types |
20162 | 196 |
(fn Free (x, _) => fold_atyps (fn TFree (a, _) => Symtab.insert_list (op =) (a, x) | _ => I) |
24719
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents:
24694
diff
changeset
|
197 |
| _ => decl_type_occsT); |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
198 |
|
24719
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents:
24694
diff
changeset
|
199 |
val declare_type_occsT = map_type_occs o fold_types decl_type_occsT; |
22671 | 200 |
val declare_type_occs = map_type_occs o decl_type_occs; |
201 |
||
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
202 |
|
20162 | 203 |
(* constraints *) |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
204 |
|
21355 | 205 |
fun constrain_tvar (xi, S) = |
206 |
if S = dummyS then Vartab.delete_safe xi else Vartab.update (xi, S); |
|
207 |
||
20162 | 208 |
fun declare_constraints t = map_constraints (fn (types, sorts) => |
209 |
let |
|
210 |
val types' = fold_aterms |
|
211 |
(fn Free (x, T) => Vartab.update ((x, ~1), T) |
|
212 |
| Var v => Vartab.update v |
|
213 |
| _ => I) t types; |
|
214 |
val sorts' = fold_types (fold_atyps |
|
21355 | 215 |
(fn TFree (x, S) => constrain_tvar ((x, ~1), S) |
216 |
| TVar v => constrain_tvar v |
|
20162 | 217 |
| _ => I)) t sorts; |
218 |
in (types', sorts') end) |
|
24719
21d1cdab2d8c
declare_constraints: declare (fix) type variables within constraints, but not terms themselves;
wenzelm
parents:
24694
diff
changeset
|
219 |
#> declare_type_occsT t |
22711 | 220 |
#> declare_type_names t; |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
221 |
|
20162 | 222 |
|
223 |
(* common declarations *) |
|
224 |
||
225 |
fun declare_internal t = |
|
226 |
declare_names t #> |
|
28625 | 227 |
declare_type_occs t #> |
228 |
map_sorts (Sorts.insert_term t); |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
229 |
|
20162 | 230 |
fun declare_term t = |
231 |
declare_internal t #> |
|
232 |
declare_constraints t; |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
233 |
|
27280 | 234 |
val declare_typ = declare_term o Logic.mk_type; |
235 |
||
20303 | 236 |
val declare_prf = Proofterm.fold_proof_terms declare_internal (declare_internal o Logic.mk_type); |
237 |
||
22691 | 238 |
val declare_thm = Thm.fold_terms declare_internal; |
21522 | 239 |
fun thm_context th = declare_thm th (ProofContext.init (Thm.theory_of_thm th)); |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
240 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
241 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
242 |
(* renaming term/type frees *) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
243 |
|
20162 | 244 |
fun variant_frees ctxt ts frees = |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
245 |
let |
20162 | 246 |
val names = names_of (fold declare_names ts ctxt); |
20084 | 247 |
val xs = fst (Name.variants (map #1 frees) names); |
248 |
in xs ~~ map snd frees end; |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
249 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
250 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
251 |
|
20303 | 252 |
(** term bindings **) |
253 |
||
254 |
fun add_bind (xi, NONE) = map_binds (Vartab.delete_safe xi) |
|
255 |
| add_bind ((x, i), SOME t) = |
|
256 |
let |
|
25051 | 257 |
val u = Term.close_schematic_term t; |
258 |
val U = Term.fastype_of u; |
|
259 |
in declare_term u #> map_binds (Vartab.update ((x, i), (U, u))) end; |
|
20303 | 260 |
|
261 |
val add_binds = fold add_bind; |
|
262 |
||
263 |
fun expand_binds ctxt = |
|
264 |
let |
|
265 |
val binds = binds_of ctxt; |
|
21799 | 266 |
val get = fn Var (xi, _) => Vartab.lookup binds xi | _ => NONE; |
267 |
in Envir.beta_norm o Envir.expand_term get end; |
|
20303 | 268 |
|
269 |
||
270 |
||
25325 | 271 |
(** consts **) |
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
272 |
|
25325 | 273 |
val lookup_const = Symtab.lookup o #consts o rep_data; |
274 |
val is_const = is_some oo lookup_const; |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
275 |
|
25325 | 276 |
val declare_fixed = map_consts o Symtab.delete_safe; |
277 |
val declare_const = map_consts o Symtab.update; |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
278 |
|
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
279 |
|
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
280 |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
281 |
(** fixes **) |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
282 |
|
20084 | 283 |
local |
284 |
||
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
285 |
fun no_dups [] = () |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
286 |
| no_dups dups = error ("Duplicate fixed variable(s): " ^ commas_quote dups); |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
287 |
|
20102 | 288 |
fun new_fixes names' xs xs' = |
289 |
map_names (K names') #> |
|
25316
17c183417f93
added is_const/declare_const for local scope of fixes/consts;
wenzelm
parents:
25051
diff
changeset
|
290 |
fold declare_fixed xs #> |
20102 | 291 |
map_fixes (fn fixes => (rev (xs ~~ xs') @ fixes)) #> |
20162 | 292 |
fold (declare_constraints o Syntax.free) xs' #> |
20084 | 293 |
pair xs'; |
294 |
||
295 |
in |
|
296 |
||
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
297 |
fun add_fixes xs ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
298 |
let |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
299 |
val _ = |
20084 | 300 |
(case filter (can Name.dest_skolem) xs of [] => () |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
301 |
| bads => error ("Illegal internal Skolem constant(s): " ^ commas_quote bads)); |
20084 | 302 |
val _ = no_dups (duplicates (op =) xs); |
303 |
val (ys, zs) = split_list (fixes_of ctxt); |
|
20102 | 304 |
val names = names_of ctxt; |
20084 | 305 |
val (xs', names') = |
20149 | 306 |
if is_body ctxt then Name.variants xs names |>> map Name.skolem |
20084 | 307 |
else (no_dups (xs inter_string ys); no_dups (xs inter_string zs); |
308 |
(xs, fold Name.declare xs names)); |
|
20102 | 309 |
in ctxt |> new_fixes names' xs xs' end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
310 |
|
20797
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents:
20579
diff
changeset
|
311 |
fun variant_fixes raw_xs ctxt = |
20084 | 312 |
let |
20102 | 313 |
val names = names_of ctxt; |
26714
4773b832f1b1
variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents:
25573
diff
changeset
|
314 |
val xs = map (fn x => Name.clean x |> can Name.dest_internal x ? Name.internal) raw_xs; |
4773b832f1b1
variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents:
25573
diff
changeset
|
315 |
val (xs', names') = Name.variants xs names |>> (is_body ctxt ? map Name.skolem); |
20102 | 316 |
in ctxt |> new_fixes names' xs xs' end; |
20084 | 317 |
|
318 |
end; |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
319 |
|
20251 | 320 |
|
321 |
fun add_fixes_direct xs ctxt = ctxt |
|
322 |
|> set_body false |
|
323 |
|> (snd o add_fixes xs) |
|
324 |
|> restore_body ctxt; |
|
325 |
||
326 |
fun fix_frees t ctxt = ctxt |
|
327 |
|> add_fixes_direct |
|
328 |
(rev (fold_aterms (fn Free (x, _) => |
|
21369 | 329 |
if is_fixed ctxt x then I else insert (op =) x | _ => I) t [])); |
330 |
||
331 |
fun auto_fixes t ctxt = |
|
332 |
(if is_body ctxt then ctxt else fix_frees t ctxt) |
|
20251 | 333 |
|> declare_term t; |
334 |
||
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
335 |
fun invent_types Ss ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
336 |
let |
24848 | 337 |
val tfrees = Name.invents (names_of ctxt) Name.aT (length Ss) ~~ Ss; |
20162 | 338 |
val ctxt' = fold (declare_constraints o Logic.mk_type o TFree) tfrees ctxt; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
339 |
in (tfrees, ctxt') end; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
340 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
341 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
342 |
|
22671 | 343 |
(** export -- generalize type/term variables (beware of closure sizes) **) |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
344 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
345 |
fun export_inst inner outer = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
346 |
let |
20162 | 347 |
val declared_outer = is_declared outer; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
348 |
val fixes_inner = fixes_of inner; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
349 |
val fixes_outer = fixes_of outer; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
350 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
351 |
val gen_fixes = map #2 (Library.take (length fixes_inner - length fixes_outer, fixes_inner)); |
20162 | 352 |
val still_fixed = not o member (op =) gen_fixes; |
22671 | 353 |
|
354 |
val type_occs_inner = type_occs_of inner; |
|
355 |
fun gen_fixesT ts = |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
356 |
Symtab.fold (fn (a, xs) => |
20162 | 357 |
if declared_outer a orelse exists still_fixed xs |
22671 | 358 |
then I else cons a) (fold decl_type_occs ts type_occs_inner) []; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
359 |
in (gen_fixesT, gen_fixes) end; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
360 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
361 |
fun exportT_inst inner outer = #1 (export_inst inner outer); |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
362 |
|
22671 | 363 |
fun exportT_terms inner outer = |
364 |
let val mk_tfrees = exportT_inst inner outer in |
|
365 |
fn ts => ts |> map |
|
366 |
(TermSubst.generalize (mk_tfrees ts, []) |
|
367 |
(fold (Term.fold_types Term.maxidx_typ) ts ~1 + 1)) |
|
368 |
end; |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
369 |
|
22671 | 370 |
fun export_terms inner outer = |
371 |
let val (mk_tfrees, tfrees) = export_inst inner outer in |
|
372 |
fn ts => ts |> map |
|
373 |
(TermSubst.generalize (mk_tfrees ts, tfrees) |
|
374 |
(fold Term.maxidx_term ts ~1 + 1)) |
|
375 |
end; |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
376 |
|
20303 | 377 |
fun export_prf inner outer prf = |
378 |
let |
|
22671 | 379 |
val (mk_tfrees, frees) = export_inst (declare_prf prf inner) outer; |
380 |
val tfrees = mk_tfrees []; |
|
20303 | 381 |
val idx = Proofterm.maxidx_proof prf ~1 + 1; |
22671 | 382 |
val gen_term = TermSubst.generalize_option (tfrees, frees) idx; |
383 |
val gen_typ = TermSubst.generalizeT_option tfrees idx; |
|
20303 | 384 |
in Proofterm.map_proof_terms_option gen_term gen_typ prf end; |
385 |
||
22671 | 386 |
|
387 |
fun gen_export (mk_tfrees, frees) ths = |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
388 |
let |
22671 | 389 |
val tfrees = mk_tfrees (map Thm.full_prop_of ths); |
390 |
val maxidx = fold Thm.maxidx_thm ths ~1; |
|
391 |
in map (Thm.generalize (tfrees, frees) (maxidx + 1)) ths end; |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
392 |
|
22671 | 393 |
fun exportT inner outer = gen_export (exportT_inst inner outer, []); |
394 |
fun export inner outer = gen_export (export_inst inner outer); |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
395 |
|
21522 | 396 |
fun export_morphism inner outer = |
397 |
let |
|
398 |
val fact = export inner outer; |
|
399 |
val term = singleton (export_terms inner outer); |
|
400 |
val typ = Logic.type_map term; |
|
28965 | 401 |
in Morphism.morphism {binding = I, var = I, typ = typ, term = term, fact = fact} end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
402 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
403 |
|
24765 | 404 |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
405 |
(** import -- fix schematic type/term variables **) |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
406 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
407 |
fun importT_inst ts ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
408 |
let |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
409 |
val tvars = rev (fold Term.add_tvars ts []); |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
410 |
val (tfrees, ctxt') = invent_types (map #2 tvars) ctxt; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
411 |
in (tvars ~~ map TFree tfrees, ctxt') end; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
412 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
413 |
fun import_inst is_open ts ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
414 |
let |
26714
4773b832f1b1
variant_fixes: preserve internal state, mark skolem only for body mode;
wenzelm
parents:
25573
diff
changeset
|
415 |
val ren = Name.clean #> (if is_open then I else Name.internal); |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
416 |
val (instT, ctxt') = importT_inst ts ctxt; |
20509 | 417 |
val vars = map (apsnd (TermSubst.instantiateT instT)) (rev (fold Term.add_vars ts [])); |
20797
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents:
20579
diff
changeset
|
418 |
val (xs, ctxt'') = variant_fixes (map (ren o #1 o #1) vars) ctxt'; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
419 |
val inst = vars ~~ map Free (xs ~~ map #2 vars); |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
420 |
in ((instT, inst), ctxt'') end; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
421 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
422 |
fun importT_terms ts ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
423 |
let val (instT, ctxt') = importT_inst ts ctxt |
20509 | 424 |
in (map (TermSubst.instantiate (instT, [])) ts, ctxt') end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
425 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
426 |
fun import_terms is_open ts ctxt = |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
427 |
let val (inst, ctxt') = import_inst is_open ts ctxt |
20509 | 428 |
in (map (TermSubst.instantiate inst) ts, ctxt') end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
429 |
|
22601 | 430 |
fun importT_thms ths ctxt = |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
431 |
let |
21522 | 432 |
val thy = ProofContext.theory_of ctxt; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
433 |
val certT = Thm.ctyp_of thy; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
434 |
val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
435 |
val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
436 |
val ths' = map (Thm.instantiate (instT', [])) ths; |
20220 | 437 |
in ((map #2 instT', ths'), ctxt') end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
438 |
|
20303 | 439 |
fun import_prf is_open prf ctxt = |
440 |
let |
|
441 |
val ts = rev (Proofterm.fold_proof_terms cons (cons o Logic.mk_type) prf []); |
|
442 |
val (insts, ctxt') = import_inst is_open ts ctxt; |
|
443 |
in (Proofterm.instantiate insts prf, ctxt') end; |
|
444 |
||
22568
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
wenzelm
parents:
21799
diff
changeset
|
445 |
fun import_thms is_open ths ctxt = |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
446 |
let |
21522 | 447 |
val thy = ProofContext.theory_of ctxt; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
448 |
val cert = Thm.cterm_of thy; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
449 |
val certT = Thm.ctyp_of thy; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
450 |
val ((instT, inst), ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
451 |
val instT' = map (fn (v, T) => (certT (TVar v), certT T)) instT; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
452 |
val inst' = map (fn (v, t) => (cert (Var v), cert t)) inst; |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
453 |
val ths' = map (Thm.instantiate (instT', inst')) ths; |
20220 | 454 |
in (((map #2 instT', map #2 inst'), ths'), ctxt') end; |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
455 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
456 |
|
19926 | 457 |
(* import/export *) |
458 |
||
21287 | 459 |
fun gen_trade imp exp f ctxt ths = |
20220 | 460 |
let val ((_, ths'), ctxt') = imp ths ctxt |
21287 | 461 |
in exp ctxt' ctxt (f ctxt' ths') end; |
19926 | 462 |
|
22601 | 463 |
val tradeT = gen_trade importT_thms exportT; |
22568
ed7aa5a350ef
renamed Variable.import to import_thms (avoid clash with Alice keywords);
wenzelm
parents:
21799
diff
changeset
|
464 |
val trade = gen_trade (import_thms true) export; |
19926 | 465 |
|
466 |
||
20162 | 467 |
(* focus on outermost parameters *) |
20149 | 468 |
|
469 |
fun forall_elim_prop t prop = |
|
20579 | 470 |
Thm.beta_conversion false (Thm.capply (Thm.dest_arg prop) t) |
471 |
|> Thm.cprop_of |> Thm.dest_arg; |
|
20149 | 472 |
|
473 |
fun focus goal ctxt = |
|
474 |
let |
|
475 |
val cert = Thm.cterm_of (Thm.theory_of_cterm goal); |
|
476 |
val t = Thm.term_of goal; |
|
20162 | 477 |
val ps = Term.variant_frees t (Term.strip_all_vars t); (*as they are printed :-*) |
20149 | 478 |
val (xs, Ts) = split_list ps; |
20797
c1f0bc7e7d80
renamed Variable.invent_fixes to Variable.variant_fixes;
wenzelm
parents:
20579
diff
changeset
|
479 |
val (xs', ctxt') = variant_fixes xs ctxt; |
20220 | 480 |
val ps' = ListPair.map (cert o Free) (xs', Ts); |
481 |
val goal' = fold forall_elim_prop ps' goal; |
|
27119
c36c88fcdd22
focus: actually declare constraints for local parameters;
wenzelm
parents:
26714
diff
changeset
|
482 |
val ctxt'' = ctxt' |> fold (declare_constraints o Thm.term_of) ps'; |
c36c88fcdd22
focus: actually declare constraints for local parameters;
wenzelm
parents:
26714
diff
changeset
|
483 |
in ((ps', goal'), ctxt'') end; |
20149 | 484 |
|
20303 | 485 |
fun focus_subgoal i st = |
486 |
let |
|
22691 | 487 |
val all_vars = Thm.fold_terms Term.add_vars st []; |
20303 | 488 |
val no_binds = map (fn (xi, _) => (xi, NONE)) all_vars; |
489 |
in |
|
490 |
add_binds no_binds #> |
|
491 |
fold (declare_constraints o Var) all_vars #> |
|
492 |
focus (Thm.cprem_of st i) |
|
493 |
end; |
|
494 |
||
495 |
||
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
496 |
|
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
497 |
(** implicit polymorphism **) |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
498 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
499 |
(* warn_extra_tfrees *) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
500 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
501 |
fun warn_extra_tfrees ctxt1 ctxt2 = |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
502 |
let |
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
503 |
fun occs_typ a = Term.exists_subtype (fn TFree (b, _) => a = b | _ => false); |
20162 | 504 |
fun occs_free a x = |
505 |
(case def_type ctxt1 false (x, ~1) of |
|
506 |
SOME T => if occs_typ a T then I else cons (a, x) |
|
507 |
| NONE => cons (a, x)); |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
508 |
|
20162 | 509 |
val occs1 = type_occs_of ctxt1; |
510 |
val occs2 = type_occs_of ctxt2; |
|
19911
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
511 |
val extras = Symtab.fold (fn (a, xs) => |
300bc6ce970d
major reworking of export functionality -- based on Term/Thm.generalize;
wenzelm
parents:
19899
diff
changeset
|
512 |
if Symtab.defined occs1 a then I else fold (occs_free a) xs) occs2 []; |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
513 |
val tfrees = map #1 extras |> sort_distinct string_ord; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
514 |
val frees = map #2 extras |> sort_distinct string_ord; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
515 |
in |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
516 |
if null extras then () |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
517 |
else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^ |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
518 |
space_implode " or " (map quote frees)) |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
519 |
end; |
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
520 |
|
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
521 |
|
20149 | 522 |
(* polymorphic terms *) |
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
523 |
|
24694 | 524 |
fun polymorphic_types ctxt ts = |
20003 | 525 |
let |
526 |
val ctxt' = fold declare_term ts ctxt; |
|
20162 | 527 |
val occs = type_occs_of ctxt; |
528 |
val occs' = type_occs_of ctxt'; |
|
529 |
val types = Symtab.fold (fn (a, _) => if Symtab.defined occs a then I else cons a) occs' []; |
|
24765 | 530 |
val idx = maxidx_of ctxt' + 1; |
24694 | 531 |
val Ts' = (fold o fold_types o fold_atyps) |
532 |
(fn T as TFree _ => |
|
533 |
(case TermSubst.generalizeT types idx T of TVar v => insert (op =) v | _ => I) |
|
534 |
| _ => I) ts []; |
|
535 |
val ts' = map (TermSubst.generalize (types, []) idx) ts; |
|
536 |
in (rev Ts', ts') end; |
|
537 |
||
538 |
fun polymorphic ctxt ts = snd (polymorphic_types ctxt ts); |
|
20003 | 539 |
|
19899
b7385ca02d79
Fixed type/term variables and polymorphic term abbreviations.
wenzelm
parents:
diff
changeset
|
540 |
end; |