| author | wenzelm | 
| Wed, 30 Mar 2016 23:34:00 +0200 | |
| changeset 62774 | cfcb20bbdbd8 | 
| parent 62170 | b61c55e4b4b9 | 
| child 65458 | cf504b7a7aa7 | 
| 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: 
39507diff
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: 
39507diff
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: 
39507diff
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: 
39507diff
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: 
26336diff
changeset | 15 | val get_thms: theory -> xstring -> thm list | 
| 
04dacc6809b6
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
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 | |
| 29579 | 27 | val store_thms: binding * thm list -> theory -> thm list * theory | 
| 28 | val store_thm: binding * thm -> theory -> thm * theory | |
| 29 | val store_thm_open: binding * thm -> theory -> thm * theory | |
| 30 | val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory | |
| 31 | val add_thm: (binding * thm) * attribute list -> theory -> thm * theory | |
| 32 | 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: 
57887diff
changeset | 33 | val add_thms_dynamic': Context.generic -> binding * (Context.generic -> thm list) -> | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 34 | theory -> string * theory | 
| 29579 | 35 | val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory | 
| 30853 | 36 | val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list | 
| 37 | -> theory -> (string * thm list) list * theory | |
| 29579 | 38 | val add_defs: bool -> ((binding * term) * attribute list) list -> | 
| 18377 | 39 | theory -> thm list * theory | 
| 29579 | 40 | val add_defs_unchecked: bool -> ((binding * term) * attribute list) list -> | 
| 41 | theory -> thm list * theory | |
| 3987 | 42 | end; | 
| 43 | ||
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 44 | structure Global_Theory: GLOBAL_THEORY = | 
| 3987 | 45 | struct | 
| 46 | ||
| 27198 | 47 | (** theory data **) | 
| 26282 
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
 wenzelm parents: 
26050diff
changeset | 48 | |
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39507diff
changeset | 49 | structure Data = Theory_Data | 
| 24713 | 50 | ( | 
| 49010 | 51 | type T = Facts.T; | 
| 52 | val empty = Facts.empty; | |
| 53 | val extend = I; | |
| 54 | val merge = Facts.merge; | |
| 24713 | 55 | ); | 
| 3987 | 56 | |
| 49010 | 57 | val facts_of = Data.get; | 
| 26666 | 58 | |
| 56003 | 59 | fun check_fact thy = Facts.check (Context.Theory thy) (facts_of thy); | 
| 26666 | 60 | val intern_fact = Facts.intern o facts_of; | 
| 26693 | 61 | val defined_fact = Facts.defined o facts_of; | 
| 16023 
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
 wenzelm parents: 
15975diff
changeset | 62 | |
| 57887 | 63 | fun alias_fact binding name thy = | 
| 64 | Data.map (Facts.alias (Sign.naming_of thy) binding name) thy; | |
| 65 | ||
| 49010 | 66 | fun hide_fact fully name = Data.map (Facts.hide fully name); | 
| 6367 | 67 | |
| 3987 | 68 | |
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56003diff
changeset | 69 | (* retrieve theorems *) | 
| 27198 | 70 | |
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56003diff
changeset | 71 | fun get_thms thy xname = | 
| 57942 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57929diff
changeset | 72 | #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: 
26336diff
changeset | 73 | |
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56003diff
changeset | 74 | fun get_thm thy xname = | 
| 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56003diff
changeset | 75 | Facts.the_single (xname, Position.none) (get_thms thy xname); | 
| 4783 | 76 | |
| 61054 | 77 | fun transfer_theories thy = | 
| 78 | let | |
| 79 | val theories = | |
| 80 | fold (fn thy' => Symtab.update (Context.theory_name thy', thy')) | |
| 81 | (Theory.nodes_of thy) Symtab.empty; | |
| 82 | fun transfer th = | |
| 83 | Thm.transfer (the_default thy (Symtab.lookup theories (Thm.theory_name_of_thm th))) th; | |
| 84 | in transfer end; | |
| 85 | ||
| 56161 | 86 | fun all_thms_of thy verbose = | 
| 87 | let | |
| 61054 | 88 | val transfer = transfer_theories thy; | 
| 56161 | 89 | val facts = facts_of thy; | 
| 90 | fun add (name, ths) = | |
| 91 | if not verbose andalso Facts.is_concealed facts name then I | |
| 61054 | 92 | else append (map (`(Thm.get_name_hint) o transfer) ths); | 
| 56161 | 93 | in Facts.fold_static add facts [] end; | 
| 16336 | 94 | |
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 95 | |
| 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 96 | |
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 97 | (** store theorems **) | 
| 3987 | 98 | |
| 21580 | 99 | (* fact specifications *) | 
| 100 | ||
| 101 | fun map_facts f = map (apsnd (map (apfst (map f)))); | |
| 102 | fun burrow_fact f = split_list #>> burrow f #> op ~~; | |
| 103 | fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; | |
| 104 | ||
| 105 | ||
| 4853 | 106 | (* naming *) | 
| 107 | ||
| 18801 | 108 | fun name_multi name [x] = [(name, x)] | 
| 26457 | 109 | | name_multi "" xs = map (pair "") xs | 
| 110 | | 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: 
12138diff
changeset | 111 | |
| 33700 | 112 | fun name_thm pre official name thm = thm | 
| 41696 | 113 | |> (if not official orelse pre andalso Thm.derivation_name thm <> "" then I | 
| 114 | else Thm.name_derivation name) | |
| 115 | |> (if name = "" orelse pre andalso Thm.has_name_hint thm then I | |
| 116 | else Thm.put_name_hint name); | |
| 12872 
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
 berghofe parents: 
12711diff
changeset | 117 | |
| 33700 | 118 | fun name_thms pre official name xs = | 
| 119 | map (uncurry (name_thm pre official)) (name_multi name xs); | |
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 120 | |
| 33700 | 121 | fun name_thmss official name fact = | 
| 122 | burrow_fact (name_thms true official name) fact; | |
| 4853 | 123 | |
| 124 | ||
| 11998 | 125 | (* enter_thms *) | 
| 4853 | 126 | |
| 49062 
7e31dfd99ce7
discontinued complicated/unreliable notion of recent proofs within context;
 wenzelm parents: 
49058diff
changeset | 127 | fun register_proofs thms thy = (thms, Thm.register_proofs thms thy); | 
| 49010 | 128 | |
| 28861 | 129 | fun enter_thms pre_name post_name app_att (b, thms) thy = | 
| 28965 | 130 | if Binding.is_empty b | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 131 | then app_att thms thy |-> register_proofs | 
| 30211 | 132 | else | 
| 133 | let | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46775diff
changeset | 134 | val name = Sign.full_name thy b; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 135 | val (thms', thy') = app_att (pre_name name thms) thy |>> post_name name |-> register_proofs; | 
| 30211 | 136 | val thms'' = map (Thm.transfer thy') thms'; | 
| 49747 | 137 | val thy'' = thy' |> Data.map | 
| 138 |         (Facts.add_static (Context.Theory thy') {strict = true, index = false} (b, thms'') #> snd);
 | |
| 30211 | 139 | in (thms'', thy'') end; | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 140 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 141 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 142 | (* store_thm(s) *) | 
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 143 | |
| 33700 | 144 | fun store_thms (b, thms) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 145 | enter_thms (name_thms true true) (name_thms false true) pair (b, thms); | 
| 28076 | 146 | |
| 29579 | 147 | fun store_thm (b, th) = store_thms (b, [th]) #>> the_single; | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 148 | |
| 29579 | 149 | fun store_thm_open (b, th) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 150 | enter_thms (name_thms true false) (name_thms false false) pair (b, [th]) #>> the_single; | 
| 3987 | 151 | |
| 16023 
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
 wenzelm parents: 
15975diff
changeset | 152 | |
| 6091 | 153 | (* add_thms(s) *) | 
| 4853 | 154 | |
| 29579 | 155 | fun add_thms_atts pre_name ((b, thms), atts) = | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 156 | enter_thms pre_name (name_thms false true) (fold_map (Thm.theory_attributes atts)) (b, thms); | 
| 4853 | 157 | |
| 18377 | 158 | fun gen_add_thmss pre_name = | 
| 159 | fold_map (add_thms_atts pre_name); | |
| 5907 | 160 | |
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 161 | fun gen_add_thms pre_name args = | 
| 18377 | 162 | apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); | 
| 12235 
5fa04fc9b254
Further restructuring of theorem naming functions.
 berghofe parents: 
12138diff
changeset | 163 | |
| 33700 | 164 | val add_thmss = gen_add_thmss (name_thms true true); | 
| 165 | val add_thms = gen_add_thms (name_thms true true); | |
| 27683 | 166 | val add_thm = yield_singleton add_thms; | 
| 5907 | 167 | |
| 168 | ||
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 169 | (* dynamic theorems *) | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 170 | |
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 171 | fun add_thms_dynamic' context arg thy = | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 172 | let val (name, facts') = Facts.add_dynamic context arg (Data.get thy) | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 173 | in (name, Data.put facts' thy) end; | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 174 | |
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 175 | fun add_thms_dynamic arg thy = | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57887diff
changeset | 176 | add_thms_dynamic' (Context.Theory thy) arg thy |> snd; | 
| 26488 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 177 | |
| 
b497e3187ec7
eliminated destructive/critical theorem database;
 wenzelm parents: 
26471diff
changeset | 178 | |
| 27728 | 179 | (* note_thmss *) | 
| 5907 | 180 | |
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 181 | fun note_thmss kind = fold_map (fn ((b, more_atts), facts) => fn thy => | 
| 12711 | 182 | let | 
| 28965 | 183 | val name = Sign.full_name thy b; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 184 | fun app (ths, atts) = | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 185 | fold_map (Thm.theory_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths; | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 186 | val (thms, thy') = | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 187 | enter_thms (name_thmss true) (name_thms false true) (apfst flat oo fold_map app) | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 188 | (b, facts) thy; | 
| 28076 | 189 | in ((name, thms), thy') end); | 
| 12711 | 190 | |
| 5280 | 191 | |
| 62170 | 192 | (* old-style defs *) | 
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 193 | |
| 4853 | 194 | 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: 
35856diff
changeset | 195 | |
| 62169 | 196 | 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: 
35856diff
changeset | 197 | let | 
| 62170 | 198 | val context = Defs.global_context thy; | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 199 | 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: 
35856diff
changeset | 200 | 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: 
35856diff
changeset | 201 | |> 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: 
35856diff
changeset | 202 | |> 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: 
35856diff
changeset | 203 | |> 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: 
35856diff
changeset | 204 | 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: 
35856diff
changeset | 205 | |
| 4853 | 206 | 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: 
35856diff
changeset | 207 | |
| 62169 | 208 | val add_defs = add false; | 
| 209 | 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: 
35856diff
changeset | 210 | |
| 4853 | 211 | end; | 
| 4022 
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
 wenzelm parents: 
4013diff
changeset | 212 | |
| 3987 | 213 | end; |