author | wenzelm |
Sat, 28 Jul 2018 16:50:55 +0200 | |
changeset 68701 | be936cf061ab |
parent 68699 | b624368a302f |
child 70424 | 4ed859e23025 |
permissions | -rw-r--r-- |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
1 |
(* Title: Pure/global_theory.ML |
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
2 |
Author: Makarius |
3987 | 3 |
|
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
4 |
Global theory content: stored facts. |
3987 | 5 |
*) |
6 |
||
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
7 |
signature GLOBAL_THEORY = |
3987 | 8 |
sig |
27198 | 9 |
val facts_of: theory -> Facts.T |
56003 | 10 |
val check_fact: theory -> xstring * Position.T -> string |
26666 | 11 |
val intern_fact: theory -> xstring -> string |
26693 | 12 |
val defined_fact: theory -> string -> bool |
57887 | 13 |
val alias_fact: binding -> string -> theory -> theory |
27198 | 14 |
val hide_fact: bool -> string -> theory -> theory |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
15 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
16 |
val get_thm: theory -> xstring -> thm |
61054 | 17 |
val transfer_theories: theory -> thm -> thm |
56161 | 18 |
val all_thms_of: theory -> bool -> (string * thm) list |
21580 | 19 |
val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
21567 | 20 |
val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list |
21580 | 21 |
val burrow_facts: ('a list -> 'b list) -> |
22 |
('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
|
23 |
val name_multi: string -> 'a list -> (string * 'a) list |
|
33700 | 24 |
val name_thm: bool -> bool -> string -> thm -> thm |
25 |
val name_thms: bool -> bool -> string -> thm list -> thm list |
|
26 |
val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list |
|
68661 | 27 |
val check_thms_lazy: thm list lazy -> thm list lazy |
67671
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
28 |
val add_thms_lazy: string -> (binding * thm list lazy) -> theory -> theory |
29579 | 29 |
val store_thm: binding * thm -> theory -> thm * theory |
30 |
val store_thm_open: binding * thm -> theory -> thm * theory |
|
31 |
val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory |
|
32 |
val add_thm: (binding * thm) * attribute list -> theory -> thm * theory |
|
33 |
val add_thmss: ((binding * thm list) * attribute list) list -> theory -> thm list list * theory |
|
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
34 |
val add_thms_dynamic': Context.generic -> binding * (Context.generic -> thm list) -> |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
35 |
theory -> string * theory |
29579 | 36 |
val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory |
67713 | 37 |
val note_thms: string -> Thm.binding * (thm list * attribute list) list -> theory -> |
38 |
(string * thm list) * theory |
|
39 |
val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> theory -> |
|
40 |
(string * thm list) list * theory |
|
29579 | 41 |
val add_defs: bool -> ((binding * term) * attribute list) list -> |
18377 | 42 |
theory -> thm list * theory |
29579 | 43 |
val add_defs_unchecked: bool -> ((binding * term) * attribute list) list -> |
44 |
theory -> thm list * theory |
|
3987 | 45 |
end; |
46 |
||
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
47 |
structure Global_Theory: GLOBAL_THEORY = |
3987 | 48 |
struct |
49 |
||
27198 | 50 |
(** theory data **) |
26282
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
51 |
|
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39507
diff
changeset
|
52 |
structure Data = Theory_Data |
24713 | 53 |
( |
49010 | 54 |
type T = Facts.T; |
55 |
val empty = Facts.empty; |
|
56 |
val extend = I; |
|
57 |
val merge = Facts.merge; |
|
24713 | 58 |
); |
3987 | 59 |
|
49010 | 60 |
val facts_of = Data.get; |
26666 | 61 |
|
56003 | 62 |
fun check_fact thy = Facts.check (Context.Theory thy) (facts_of thy); |
26666 | 63 |
val intern_fact = Facts.intern o facts_of; |
26693 | 64 |
val defined_fact = Facts.defined o facts_of; |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
65 |
|
57887 | 66 |
fun alias_fact binding name thy = |
67 |
Data.map (Facts.alias (Sign.naming_of thy) binding name) thy; |
|
68 |
||
49010 | 69 |
fun hide_fact fully name = Data.map (Facts.hide fully name); |
6367 | 70 |
|
3987 | 71 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
72 |
(* retrieve theorems *) |
27198 | 73 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
74 |
fun get_thms thy xname = |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57929
diff
changeset
|
75 |
#thms (Facts.retrieve (Context.Theory thy) (facts_of thy) (xname, Position.none)); |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
76 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
77 |
fun get_thm thy xname = |
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
78 |
Facts.the_single (xname, Position.none) (get_thms thy xname); |
4783 | 79 |
|
61054 | 80 |
fun transfer_theories thy = |
81 |
let |
|
82 |
val theories = |
|
83 |
fold (fn thy' => Symtab.update (Context.theory_name thy', thy')) |
|
84 |
(Theory.nodes_of thy) Symtab.empty; |
|
85 |
fun transfer th = |
|
65458 | 86 |
Thm.transfer (the_default thy (Symtab.lookup theories (Thm.theory_name th))) th; |
61054 | 87 |
in transfer end; |
88 |
||
56161 | 89 |
fun all_thms_of thy verbose = |
90 |
let |
|
61054 | 91 |
val transfer = transfer_theories thy; |
56161 | 92 |
val facts = facts_of thy; |
93 |
fun add (name, ths) = |
|
94 |
if not verbose andalso Facts.is_concealed facts name then I |
|
61054 | 95 |
else append (map (`(Thm.get_name_hint) o transfer) ths); |
56161 | 96 |
in Facts.fold_static add facts [] end; |
16336 | 97 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
98 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
99 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
100 |
(** store theorems **) |
3987 | 101 |
|
21580 | 102 |
(* fact specifications *) |
103 |
||
104 |
fun map_facts f = map (apsnd (map (apfst (map f)))); |
|
105 |
fun burrow_fact f = split_list #>> burrow f #> op ~~; |
|
106 |
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; |
|
107 |
||
108 |
||
4853 | 109 |
(* naming *) |
110 |
||
18801 | 111 |
fun name_multi name [x] = [(name, x)] |
26457 | 112 |
| name_multi "" xs = map (pair "") xs |
113 |
| name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
114 |
|
33700 | 115 |
fun name_thm pre official name thm = thm |
41696 | 116 |
|> (if not official orelse pre andalso Thm.derivation_name thm <> "" then I |
117 |
else Thm.name_derivation name) |
|
118 |
|> (if name = "" orelse pre andalso Thm.has_name_hint thm then I |
|
119 |
else Thm.put_name_hint name); |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
120 |
|
67678 | 121 |
fun name_thms pre official name thms = |
122 |
map (uncurry (name_thm pre official)) (name_multi name thms); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
123 |
|
33700 | 124 |
fun name_thmss official name fact = |
125 |
burrow_fact (name_thms true official name) fact; |
|
4853 | 126 |
|
127 |
||
11998 | 128 |
(* enter_thms *) |
4853 | 129 |
|
67671
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
130 |
fun register_proofs thms thy = (thms, Thm.register_proofs (Lazy.value thms) thy); |
49010 | 131 |
|
68244
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
132 |
fun add_facts (b, fact) thy = |
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
133 |
let |
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
134 |
val full_name = Sign.full_name thy b; |
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
135 |
val pos = Binding.pos_of b; |
68540 | 136 |
fun check fact = |
137 |
fact |> map_index (fn (i, thm) => |
|
138 |
let |
|
139 |
fun err msg = |
|
140 |
error ("Malformed global fact " ^ |
|
141 |
quote (full_name ^ |
|
142 |
(if length fact = 1 then "" else "(" ^ string_of_int (i + 1) ^ ")")) ^ |
|
143 |
Position.here pos ^ "\n" ^ msg); |
|
144 |
val prop = Thm.plain_prop_of thm |
|
145 |
handle THM _ => |
|
146 |
thm |
|
147 |
|> Thm.check_hyps (Context.Theory thy) |
|
148 |
|> Thm.full_prop_of; |
|
149 |
in |
|
150 |
ignore (Logic.unvarify_global (Term_Subst.zero_var_indexes prop)) |
|
151 |
handle TYPE (msg, _, _) => err msg |
|
152 |
| TERM (msg, _) => err msg |
|
153 |
| ERROR msg => err msg |
|
154 |
end); |
|
155 |
val arg = (b, Lazy.map_finished (tap check) fact); |
|
68244
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
156 |
in |
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
157 |
thy |> Data.map (Facts.add_static (Context.Theory thy) {strict = true, index = false} arg #> #2) |
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
158 |
end; |
67671
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
159 |
|
68661 | 160 |
fun check_thms_lazy (thms: thm list lazy) = |
68701
be936cf061ab
more robust: do not defer potentially slow/big lazy facts to the very end;
wenzelm
parents:
68699
diff
changeset
|
161 |
if Proofterm.proofs_enabled () orelse Options.default_bool "strict_facts" |
be936cf061ab
more robust: do not defer potentially slow/big lazy facts to the very end;
wenzelm
parents:
68699
diff
changeset
|
162 |
then Lazy.force_value thms else thms; |
68661 | 163 |
|
67671
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
164 |
fun add_thms_lazy kind (b, thms) thy = |
68661 | 165 |
if Binding.is_empty b then Thm.register_proofs (check_thms_lazy thms) thy |
30211 | 166 |
else |
167 |
let |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46775
diff
changeset
|
168 |
val name = Sign.full_name thy b; |
68661 | 169 |
val thms' = |
170 |
check_thms_lazy thms |
|
67779 | 171 |
|> Lazy.map_finished (name_thms true true name #> map (Thm.kind_rule kind)); |
67671
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
172 |
in thy |> Thm.register_proofs thms' |> add_facts (b, thms') end; |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
173 |
|
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
174 |
fun enter_thms pre_name post_name app_att (b, thms) thy = |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
175 |
if Binding.is_empty b then app_att thms thy |-> register_proofs |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
176 |
else |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
177 |
let |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
178 |
val name = Sign.full_name thy b; |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
179 |
val (thms', thy') = |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
180 |
app_att (pre_name name thms) thy |>> post_name name |-> register_proofs; |
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
181 |
val thy'' = thy' |> add_facts (b, Lazy.value thms'); |
67663 | 182 |
in (map (Thm.transfer thy'') thms', thy'') end; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
183 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
184 |
|
67715 | 185 |
(* store_thm *) |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
186 |
|
67715 | 187 |
fun store_thm (b, th) = |
188 |
enter_thms (name_thms true true) (name_thms false true) pair (b, [th]) #>> the_single; |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
189 |
|
29579 | 190 |
fun store_thm_open (b, th) = |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
191 |
enter_thms (name_thms true false) (name_thms false false) pair (b, [th]) #>> the_single; |
3987 | 192 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
193 |
|
6091 | 194 |
(* add_thms(s) *) |
4853 | 195 |
|
29579 | 196 |
fun add_thms_atts pre_name ((b, thms), atts) = |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
197 |
enter_thms pre_name (name_thms false true) (fold_map (Thm.theory_attributes atts)) (b, thms); |
4853 | 198 |
|
18377 | 199 |
fun gen_add_thmss pre_name = |
200 |
fold_map (add_thms_atts pre_name); |
|
5907 | 201 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
202 |
fun gen_add_thms pre_name args = |
18377 | 203 |
apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
204 |
|
33700 | 205 |
val add_thmss = gen_add_thmss (name_thms true true); |
206 |
val add_thms = gen_add_thms (name_thms true true); |
|
27683 | 207 |
val add_thm = yield_singleton add_thms; |
5907 | 208 |
|
209 |
||
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
210 |
(* dynamic theorems *) |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
211 |
|
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
212 |
fun add_thms_dynamic' context arg thy = |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
213 |
let val (name, facts') = Facts.add_dynamic context arg (Data.get thy) |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
214 |
in (name, Data.put facts' thy) end; |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
215 |
|
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
216 |
fun add_thms_dynamic arg thy = |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
217 |
add_thms_dynamic' (Context.Theory thy) arg thy |> snd; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
218 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
219 |
|
27728 | 220 |
(* note_thmss *) |
5907 | 221 |
|
67713 | 222 |
fun note_thms kind ((b, more_atts), facts) thy = |
12711 | 223 |
let |
28965 | 224 |
val name = Sign.full_name thy b; |
46775
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
225 |
fun app (ths, atts) = |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
226 |
fold_map (Thm.theory_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths; |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
227 |
val (thms, thy') = |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
228 |
enter_thms (name_thmss true) (name_thms false true) (apfst flat oo fold_map app) |
6287653e63ec
canonical argument order for attribute application;
wenzelm
parents:
45666
diff
changeset
|
229 |
(b, facts) thy; |
67713 | 230 |
in ((name, thms), thy') end; |
231 |
||
232 |
val note_thmss = fold_map o note_thms; |
|
12711 | 233 |
|
5280 | 234 |
|
62170 | 235 |
(* old-style defs *) |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
236 |
|
4853 | 237 |
local |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
238 |
|
62169 | 239 |
fun add unchecked overloaded = fold_map (fn ((b, prop), atts) => fn thy => |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
240 |
let |
62170 | 241 |
val context = Defs.global_context thy; |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61261
diff
changeset
|
242 |
val ((_, def), thy') = Thm.add_def context unchecked overloaded (b, prop) thy; |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
243 |
val thm = def |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
244 |
|> Thm.forall_intr_frees |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
245 |
|> Thm.forall_elim_vars 0 |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
246 |
|> Thm.varifyT_global; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
247 |
in yield_singleton (gen_add_thms (K I)) ((b, thm), atts) thy' end); |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
248 |
|
4853 | 249 |
in |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
250 |
|
62169 | 251 |
val add_defs = add false; |
252 |
val add_defs_unchecked = add true; |
|
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
253 |
|
4853 | 254 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
255 |
|
3987 | 256 |
end; |