author | wenzelm |
Tue, 26 Dec 2023 12:03:54 +0100 | |
changeset 79357 | bb07298c5fb0 |
parent 79350 | 670b3dc1daee |
child 79358 | b191339a014c |
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 |
74261
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
wenzelm
parents:
74232
diff
changeset
|
10 |
val fact_space: theory -> Name_Space.T |
56003 | 11 |
val check_fact: theory -> xstring * Position.T -> string |
26666 | 12 |
val intern_fact: theory -> xstring -> string |
26693 | 13 |
val defined_fact: theory -> string -> bool |
57887 | 14 |
val alias_fact: binding -> string -> theory -> theory |
27198 | 15 |
val hide_fact: bool -> string -> theory -> theory |
70574 | 16 |
val dest_thms: bool -> theory list -> theory -> (Thm_Name.T * thm) list |
72098
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
17 |
val get_thm_names: theory -> Thm_Name.T Inttab.table |
70904 | 18 |
val dest_thm_names: theory -> (Proofterm.thm_id * Thm_Name.T) list |
70574 | 19 |
val lookup_thm_id: theory -> Proofterm.thm_id -> Thm_Name.T option |
70594 | 20 |
val lookup_thm: theory -> thm -> (Proofterm.thm_id * Thm_Name.T) option |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
21 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
22 |
val get_thm: theory -> xstring -> thm |
61054 | 23 |
val transfer_theories: theory -> thm -> thm |
56161 | 24 |
val all_thms_of: theory -> bool -> (string * thm) list |
70574 | 25 |
val get_thm_name: theory -> Thm_Name.T * Position.T -> thm |
79343 | 26 |
val register_proofs_lazy: string * Position.T -> thm list lazy -> theory -> thm list lazy * theory |
27 |
val register_proofs: string * Position.T -> thm list -> theory -> thm list * theory |
|
70430 | 28 |
type name_flags |
29 |
val unnamed: name_flags |
|
70427 | 30 |
val official1: name_flags |
31 |
val official2: name_flags |
|
32 |
val unofficial1: name_flags |
|
33 |
val unofficial2: name_flags |
|
70494 | 34 |
val name_thm: name_flags -> string * Position.T -> thm -> thm |
35 |
val name_thms: name_flags -> string * Position.T -> thm list -> thm list |
|
68661 | 36 |
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
|
37 |
val add_thms_lazy: string -> (binding * thm list lazy) -> theory -> theory |
29579 | 38 |
val store_thm: binding * thm -> theory -> thm * theory |
39 |
val store_thm_open: binding * thm -> theory -> thm * theory |
|
40 |
val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory |
|
41 |
val add_thm: (binding * thm) * attribute list -> theory -> thm * theory |
|
42 |
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
|
43 |
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
|
44 |
theory -> string * theory |
29579 | 45 |
val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory |
67713 | 46 |
val note_thms: string -> Thm.binding * (thm list * attribute list) list -> theory -> |
47 |
(string * thm list) * theory |
|
48 |
val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> theory -> |
|
49 |
(string * thm list) list * theory |
|
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
50 |
val add_def: binding * term -> theory -> thm * theory |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
51 |
val add_def_overloaded: binding * term -> theory -> thm * theory |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
52 |
val add_def_unchecked: binding * term -> theory -> thm * theory |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
53 |
val add_def_unchecked_overloaded: binding * term -> theory -> thm * theory |
3987 | 54 |
end; |
55 |
||
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
|
56 |
structure Global_Theory: GLOBAL_THEORY = |
3987 | 57 |
struct |
58 |
||
27198 | 59 |
(** 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
|
60 |
|
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
|
61 |
structure Data = Theory_Data |
24713 | 62 |
( |
70574 | 63 |
type T = Facts.T * Thm_Name.T Inttab.table lazy option; |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
64 |
val empty: T = (Facts.empty, NONE); |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
65 |
fun merge ((facts1, _), (facts2, _)) = (Facts.merge (facts1, facts2), NONE); |
24713 | 66 |
); |
3987 | 67 |
|
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
68 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
69 |
(* facts *) |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
70 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
71 |
val facts_of = #1 o Data.get; |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
72 |
val map_facts = Data.map o apfst; |
26666 | 73 |
|
74261
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
wenzelm
parents:
74232
diff
changeset
|
74 |
val fact_space = Facts.space_of o facts_of; |
56003 | 75 |
fun check_fact thy = Facts.check (Context.Theory thy) (facts_of thy); |
26666 | 76 |
val intern_fact = Facts.intern o facts_of; |
26693 | 77 |
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
|
78 |
|
57887 | 79 |
fun alias_fact binding name thy = |
77979
a12c48fbf10f
back to more elementary concept of aliases as adhoc change of accesses, but now with "suppress" information (see also 31ea5c1f874d);
wenzelm
parents:
77970
diff
changeset
|
80 |
map_facts (Facts.alias (Sign.naming_of thy) binding name) thy; |
57887 | 81 |
|
70544 | 82 |
fun hide_fact fully name = map_facts (Facts.hide fully name); |
6367 | 83 |
|
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
84 |
fun dest_thms verbose prev_thys thy = |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
85 |
Facts.dest_static verbose (map facts_of prev_thys) (facts_of thy) |
70574 | 86 |
|> maps (uncurry Thm_Name.make_list); |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
87 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
88 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
89 |
(* thm_name vs. derivation_id *) |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
90 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
91 |
val thm_names_of = #2 o Data.get; |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
92 |
val map_thm_names = Data.map o apsnd; |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
93 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
94 |
fun make_thm_names thy = |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
95 |
(dest_thms true (Theory.parents_of thy) thy, Inttab.empty) |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
96 |
|-> fold (fn (thm_name, thm) => fn thm_names => |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
97 |
(case Thm.derivation_id (Thm.transfer thy thm) of |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
98 |
NONE => thm_names |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
99 |
| SOME {serial, theory_name} => |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
100 |
if Context.theory_long_name thy <> theory_name then |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
101 |
raise THM ("Bad theory name for derivation", 0, [thm]) |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
102 |
else |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
103 |
(case Inttab.lookup thm_names serial of |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
104 |
SOME thm_name' => |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
105 |
raise THM ("Duplicate use of derivation identity for " ^ |
70574 | 106 |
Thm_Name.print thm_name ^ " vs. " ^ |
107 |
Thm_Name.print thm_name', 0, [thm]) |
|
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
108 |
| NONE => Inttab.update (serial, thm_name) thm_names))); |
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
109 |
|
72098
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
110 |
fun lazy_thm_names thy = |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
111 |
(case thm_names_of thy of |
70555
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
112 |
NONE => Lazy.lazy (fn () => make_thm_names thy) |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
113 |
| SOME lazy_tab => lazy_tab); |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
114 |
|
72098
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
115 |
val get_thm_names = Lazy.force o lazy_thm_names; |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
116 |
|
70904 | 117 |
fun dest_thm_names thy = |
118 |
let |
|
119 |
val theory_name = Context.theory_long_name thy; |
|
120 |
fun thm_id i = Proofterm.make_thm_id (i, theory_name); |
|
72098
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
121 |
in Inttab.fold_rev (fn (i, thm_name) => cons (thm_id i, thm_name)) (get_thm_names thy) [] end; |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
122 |
|
70555
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
123 |
fun lookup_thm_id thy = |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
124 |
let |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
125 |
val theories = |
74232 | 126 |
Symtab.build (Theory.nodes_of thy |> fold (fn thy' => |
127 |
Symtab.update (Context.theory_long_name thy', lazy_thm_names thy'))); |
|
70555
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
128 |
fun lookup (thm_id: Proofterm.thm_id) = |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
129 |
(case Symtab.lookup theories (#theory_name thm_id) of |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
130 |
NONE => NONE |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
131 |
| SOME lazy_tab => Inttab.lookup (Lazy.force lazy_tab) (#serial thm_id)); |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
132 |
in lookup end; |
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
133 |
|
c1fde53e5e82
clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents:
70552
diff
changeset
|
134 |
fun lookup_thm thy = |
70594 | 135 |
let val lookup = lookup_thm_id thy in |
136 |
fn thm => |
|
137 |
(case Thm.derivation_id thm of |
|
138 |
NONE => NONE |
|
139 |
| SOME thm_id => |
|
140 |
(case lookup thm_id of |
|
141 |
NONE => NONE |
|
142 |
| SOME thm_name => SOME (thm_id, thm_name))) |
|
143 |
end; |
|
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
144 |
|
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
145 |
val _ = |
72098
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
146 |
Theory.setup |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
147 |
(Theory.at_begin (fn thy => |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
148 |
if is_none (thm_names_of thy) then NONE |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
149 |
else SOME (map_thm_names (K NONE) thy)) #> |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
150 |
Theory.at_end (fn thy => |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
151 |
if is_some (thm_names_of thy) then NONE |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
152 |
else |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
153 |
let |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
154 |
val lazy_tab = |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
155 |
if Future.proofs_enabled 1 |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
156 |
then Lazy.lazy (fn () => make_thm_names thy) |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
157 |
else Lazy.value (make_thm_names thy); |
8c547eac8381
more robust treatment of thm_names, with strict check after all theories are loaded;
wenzelm
parents:
72055
diff
changeset
|
158 |
in SOME (map_thm_names (K (SOME lazy_tab)) thy) end)); |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
159 |
|
3987 | 160 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
161 |
(* retrieve theorems *) |
27198 | 162 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
163 |
fun get_thms thy xname = |
57942
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents:
57929
diff
changeset
|
164 |
#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
|
165 |
|
56140
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents:
56003
diff
changeset
|
166 |
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
|
167 |
Facts.the_single (xname, Position.none) (get_thms thy xname); |
4783 | 168 |
|
61054 | 169 |
fun transfer_theories thy = |
170 |
let |
|
171 |
val theories = |
|
74232 | 172 |
Symtab.build (Theory.nodes_of thy |> fold (fn thy' => |
77890 | 173 |
Symtab.update (Context.theory_long_name thy', thy'))); |
61054 | 174 |
fun transfer th = |
77890 | 175 |
Thm.transfer (the_default thy (Symtab.lookup theories (Thm.theory_long_name th))) th; |
61054 | 176 |
in transfer end; |
177 |
||
56161 | 178 |
fun all_thms_of thy verbose = |
179 |
let |
|
61054 | 180 |
val transfer = transfer_theories thy; |
56161 | 181 |
val facts = facts_of thy; |
182 |
fun add (name, ths) = |
|
183 |
if not verbose andalso Facts.is_concealed facts name then I |
|
61054 | 184 |
else append (map (`(Thm.get_name_hint) o transfer) ths); |
56161 | 185 |
in Facts.fold_static add facts [] end; |
16336 | 186 |
|
70574 | 187 |
fun get_thm_name thy ((name, i), pos) = |
188 |
let |
|
189 |
val facts = facts_of thy; |
|
190 |
fun print_name () = |
|
191 |
Facts.markup_extern (Proof_Context.init_global thy) facts name |-> Markup.markup; |
|
192 |
in |
|
193 |
(case (Facts.lookup (Context.Theory thy) facts name, i) of |
|
194 |
(NONE, _) => error ("Undefined fact " ^ quote (print_name ()) ^ Position.here pos) |
|
195 |
| (SOME {thms = [thm], ...}, 0) => thm |
|
196 |
| (SOME {thms, ...}, 0) => Facts.err_single (print_name (), pos) thms |
|
197 |
| (SOME {thms, ...}, _) => |
|
198 |
if i > 0 andalso i <= length thms then nth thms (i - 1) |
|
199 |
else Facts.err_selection (print_name (), pos) i thms) |
|
70894 | 200 |
|> Thm.transfer thy |
70574 | 201 |
end; |
202 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
203 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
204 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
205 |
(** store theorems **) |
3987 | 206 |
|
79343 | 207 |
(* register proofs *) |
208 |
||
209 |
fun check_thms_lazy (thms: thm list lazy) = |
|
210 |
if Proofterm.any_proofs_enabled () orelse Options.default_bool "strict_facts" |
|
211 |
then Lazy.force_value thms else thms; |
|
212 |
||
213 |
fun register_proofs_lazy (name, pos) (thms: thm list Lazy.lazy) thy = |
|
214 |
let |
|
215 |
val (thms', thy') = |
|
216 |
if name <> "" andalso Proofterm.zproof_enabled (Proofterm.get_proofs_level ()) then |
|
217 |
fold_map (fn (a, th) => Thm.store_zproof (a, pos) th) |
|
218 |
(Thm_Name.make_list name (Lazy.force thms)) thy |
|
219 |
|>> Lazy.value |
|
220 |
else (check_thms_lazy thms, thy); |
|
221 |
in (thms', Thm.register_proofs thms' thy') end; |
|
222 |
||
223 |
fun register_proofs name thms = |
|
224 |
register_proofs_lazy name (Lazy.value thms) #>> Lazy.force; |
|
225 |
||
226 |
||
70430 | 227 |
(* name theorems *) |
4853 | 228 |
|
79334 | 229 |
abstype name_flags = No_Name_Flags | Name_Flags of {post: bool, official: bool} |
70430 | 230 |
with |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
231 |
|
70430 | 232 |
val unnamed = No_Name_Flags; |
79334 | 233 |
val official1 = Name_Flags {post = false, official = true}; |
234 |
val official2 = Name_Flags {post = true, official = true}; |
|
235 |
val unofficial1 = Name_Flags {post = false, official = false}; |
|
236 |
val unofficial2 = Name_Flags {post = true, official = false}; |
|
70427 | 237 |
|
70494 | 238 |
fun name_thm name_flags (name, pos) = |
70459
f0a445c5a82c
maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents:
70431
diff
changeset
|
239 |
Thm.solve_constraints #> (fn thm => |
f0a445c5a82c
maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents:
70431
diff
changeset
|
240 |
(case name_flags of |
f0a445c5a82c
maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents:
70431
diff
changeset
|
241 |
No_Name_Flags => thm |
79334 | 242 |
| Name_Flags {post, official} => |
70459
f0a445c5a82c
maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents:
70431
diff
changeset
|
243 |
thm |
79334 | 244 |
|> (official andalso (post orelse Thm.raw_derivation_name thm = "")) ? |
70494 | 245 |
Thm.name_derivation (name, pos) |
79334 | 246 |
|> (name <> "" andalso (post orelse not (Thm.has_name_hint thm))) ? |
70459
f0a445c5a82c
maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents:
70431
diff
changeset
|
247 |
Thm.put_name_hint name)); |
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
248 |
|
79357 | 249 |
fun name_thms name_flags (name, pos) thms = |
250 |
Thm_Name.make_list name thms |
|
251 |
|> map (fn (thm_name, thm) => name_thm name_flags (Thm_Name.flatten thm_name, pos) thm); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
252 |
|
79334 | 253 |
end; |
254 |
||
4853 | 255 |
|
79278 | 256 |
(* store theorems and proofs *) |
4853 | 257 |
|
68244
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
258 |
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
|
259 |
let |
79345 | 260 |
val (full_name, pos) = Sign.bind_name thy b; |
68540 | 261 |
fun check fact = |
262 |
fact |> map_index (fn (i, thm) => |
|
263 |
let |
|
264 |
fun err msg = |
|
265 |
error ("Malformed global fact " ^ |
|
266 |
quote (full_name ^ |
|
267 |
(if length fact = 1 then "" else "(" ^ string_of_int (i + 1) ^ ")")) ^ |
|
268 |
Position.here pos ^ "\n" ^ msg); |
|
269 |
val prop = Thm.plain_prop_of thm |
|
270 |
handle THM _ => |
|
271 |
thm |
|
272 |
|> Thm.check_hyps (Context.Theory thy) |
|
273 |
|> Thm.full_prop_of; |
|
274 |
in |
|
275 |
ignore (Logic.unvarify_global (Term_Subst.zero_var_indexes prop)) |
|
276 |
handle TYPE (msg, _, _) => err msg |
|
277 |
| TERM (msg, _) => err msg |
|
278 |
| ERROR msg => err msg |
|
279 |
end); |
|
280 |
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
|
281 |
in |
70544 | 282 |
thy |> map_facts (Facts.add_static (Context.Theory thy) {strict = true, index = false} arg #> #2) |
68244
e0cd57aeb60c
more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents:
67779
diff
changeset
|
283 |
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
|
284 |
|
857da80611ab
support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents:
67663
diff
changeset
|
285 |
fun add_thms_lazy kind (b, thms) thy = |
79345 | 286 |
let val (name, pos) = Sign.bind_name thy b in |
79329 | 287 |
if name = "" then register_proofs_lazy (name, pos) thms thy |> #2 |
288 |
else |
|
289 |
register_proofs_lazy (name, pos) |
|
290 |
(Lazy.map_finished (name_thms official1 (name, pos) #> map (Thm.kind_rule kind)) thms) thy |
|
291 |
|-> curry add_facts b |
|
292 |
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
|
293 |
|
79278 | 294 |
|
295 |
(* apply theorems and attributes *) |
|
296 |
||
297 |
local |
|
298 |
||
70424 | 299 |
val app_facts = |
79342 | 300 |
fold_maps (fn (thms, atts) => fn thy => |
70552
8d7a531a6b58
maintain thm_name vs. derivation_id for global facts;
wenzelm
parents:
70550
diff
changeset
|
301 |
fold_map (Thm.theory_attributes atts) (map (Thm.transfer thy) thms) thy); |
70424 | 302 |
|
79278 | 303 |
in |
304 |
||
70430 | 305 |
fun apply_facts name_flags1 name_flags2 (b, facts) thy = |
79345 | 306 |
let val (name, pos) = Sign.bind_name thy b in |
79329 | 307 |
if name = "" then app_facts facts thy |-> register_proofs (name, pos) |
308 |
else |
|
309 |
let |
|
79345 | 310 |
val name_pos = Sign.bind_name thy b; |
79329 | 311 |
val (thms', thy') = thy |
312 |
|> app_facts (map (apfst (name_thms name_flags1 name_pos)) facts) |
|
313 |
|>> name_thms name_flags2 name_pos |-> register_proofs (name, pos); |
|
314 |
val thy'' = thy' |> add_facts (b, Lazy.value thms'); |
|
315 |
in (map (Thm.transfer thy'') thms', thy'') end |
|
316 |
end; |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
317 |
|
79278 | 318 |
end; |
319 |
||
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
320 |
|
67715 | 321 |
(* store_thm *) |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
322 |
|
67715 | 323 |
fun store_thm (b, th) = |
70430 | 324 |
apply_facts official1 official2 (b, [([th], [])]) #>> the_single; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
325 |
|
29579 | 326 |
fun store_thm_open (b, th) = |
70430 | 327 |
apply_facts unofficial1 unofficial2 (b, [([th], [])]) #>> the_single; |
3987 | 328 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
329 |
|
6091 | 330 |
(* add_thms(s) *) |
4853 | 331 |
|
70428 | 332 |
val add_thmss = |
70430 | 333 |
fold_map (fn ((b, thms), atts) => apply_facts official1 official2 (b, [(thms, atts)])); |
5907 | 334 |
|
70428 | 335 |
fun add_thms args = |
336 |
add_thmss (map (apfst (apsnd single)) args) #>> map the_single; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
337 |
|
27683 | 338 |
val add_thm = yield_singleton add_thms; |
5907 | 339 |
|
340 |
||
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
341 |
(* dynamic theorems *) |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
342 |
|
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
343 |
fun add_thms_dynamic' context arg thy = |
70544 | 344 |
let val (name, facts') = Facts.add_dynamic context arg (facts_of thy) |
345 |
in (name, map_facts (K facts') thy) end; |
|
57929
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
346 |
|
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
347 |
fun add_thms_dynamic arg thy = |
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents:
57887
diff
changeset
|
348 |
add_thms_dynamic' (Context.Theory thy) arg thy |> snd; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
349 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
350 |
|
27728 | 351 |
(* note_thmss *) |
5907 | 352 |
|
67713 | 353 |
fun note_thms kind ((b, more_atts), facts) thy = |
12711 | 354 |
let |
28965 | 355 |
val name = Sign.full_name thy b; |
70424 | 356 |
val facts' = facts |> map (apsnd (fn atts => surround (Thm.kind kind) (atts @ more_atts))); |
70430 | 357 |
val (thms', thy') = thy |> apply_facts official1 official2 (b, facts'); |
70424 | 358 |
in ((name, thms'), thy') end; |
67713 | 359 |
|
360 |
val note_thmss = fold_map o note_thms; |
|
12711 | 361 |
|
5280 | 362 |
|
62170 | 363 |
(* old-style defs *) |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
364 |
|
4853 | 365 |
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
|
366 |
|
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
367 |
fun add 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
|
368 |
let |
62170 | 369 |
val context = Defs.global_context thy; |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61261
diff
changeset
|
370 |
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
|
371 |
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
|
372 |
|> 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
|
373 |
|> 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
|
374 |
|> Thm.varifyT_global; |
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
375 |
in thy' |> apply_facts unnamed official2 (b, [([thm], [])]) |>> the_single end; |
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
|
376 |
|
4853 | 377 |
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
|
378 |
|
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
379 |
val add_def = add false false; |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
380 |
val add_def_overloaded = add false true; |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
381 |
val add_def_unchecked = add true false; |
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79334
diff
changeset
|
382 |
val add_def_unchecked_overloaded = add true 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
|
383 |
|
4853 | 384 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
385 |
|
3987 | 386 |
end; |