src/Pure/global_theory.ML
author wenzelm
Fri, 23 Mar 2018 17:09:36 +0100
changeset 67933 604da273e18d
parent 67779 fd2558014196
child 68244 e0cd57aeb60c
permissions -rw-r--r--
more robust timing info: do not rely on order of markup;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     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
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     5
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     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
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     8
sig
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
     9
  val facts_of: theory -> Facts.T
56003
eccac152ffb4 check fact names with PIDE markup;
wenzelm
parents: 55740
diff changeset
    10
  val check_fact: theory -> xstring * Position.T -> string
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    11
  val intern_fact: theory -> xstring -> string
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    12
  val defined_fact: theory -> string -> bool
57887
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    13
  val alias_fact: binding -> string -> theory -> theory
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    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
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    17
  val transfer_theories: theory -> thm -> thm
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    18
  val all_thms_of: theory -> bool -> (string * thm) list
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    19
  val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
21567
c097a926ba78 added burrow_fact;
wenzelm
parents: 21524
diff changeset
    20
  val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    21
  val burrow_facts: ('a list -> 'b list) ->
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    22
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    23
  val name_multi: string -> 'a list -> (string * 'a) list
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    24
  val name_thm: bool -> bool -> string -> thm -> thm
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    25
  val name_thms: bool -> bool -> string -> thm list -> thm list
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
    26
  val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
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
    27
  val add_thms_lazy: string -> (binding * thm list lazy) -> theory -> theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    28
  val store_thm: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    29
  val store_thm_open: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    30
  val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    31
  val add_thm: (binding * thm) * attribute list -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    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: 57887
diff changeset
    33
  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
    34
    theory -> string * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    35
  val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    36
  val note_thms: string -> Thm.binding * (thm list * attribute list) list -> theory ->
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    37
    (string * thm list) * theory
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    38
  val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> theory ->
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    39
    (string * thm list) list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    40
  val add_defs: bool -> ((binding * term) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    41
    theory -> thm list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    42
  val add_defs_unchecked: bool -> ((binding * term) * attribute list) list ->
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    43
    theory -> thm list * theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    44
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    45
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
    46
structure Global_Theory: GLOBAL_THEORY =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    47
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    48
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    49
(** 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
    50
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
    51
structure Data = Theory_Data
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    52
(
49010
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    53
  type T = Facts.T;
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    54
  val empty = Facts.empty;
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    55
  val extend = I;
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    56
  val merge = Facts.merge;
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    57
);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    58
49010
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    59
val facts_of = Data.get;
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    60
56003
eccac152ffb4 check fact names with PIDE markup;
wenzelm
parents: 55740
diff changeset
    61
fun check_fact thy = Facts.check (Context.Theory thy) (facts_of thy);
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    62
val intern_fact = Facts.intern o facts_of;
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    63
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
    64
57887
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    65
fun alias_fact binding name thy =
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    66
  Data.map (Facts.alias (Sign.naming_of thy) binding name) thy;
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    67
49010
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
    68
fun hide_fact fully name = Data.map (Facts.hide fully name);
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
    69
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    70
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
    71
(* retrieve theorems *)
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    72
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
    73
fun get_thms thy xname =
57942
e5bec882fdd0 more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents: 57929
diff changeset
    74
  #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
    75
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
    76
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
    77
  Facts.the_single (xname, Position.none) (get_thms thy xname);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
    78
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    79
fun transfer_theories thy =
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    80
  let
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    81
    val theories =
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    82
      fold (fn thy' => Symtab.update (Context.theory_name thy', thy'))
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    83
        (Theory.nodes_of thy) Symtab.empty;
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    84
    fun transfer th =
65458
cf504b7a7aa7 tuned signature;
wenzelm
parents: 62170
diff changeset
    85
      Thm.transfer (the_default thy (Symtab.lookup theories (Thm.theory_name th))) th;
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    86
  in transfer end;
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    87
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    88
fun all_thms_of thy verbose =
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    89
  let
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    90
    val transfer = transfer_theories thy;
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    91
    val facts = facts_of thy;
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    92
    fun add (name, ths) =
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    93
      if not verbose andalso Facts.is_concealed facts name then I
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    94
      else append (map (`(Thm.get_name_hint) o transfer) ths);
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    95
  in Facts.fold_static add facts [] end;
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    96
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    97
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    98
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
    99
(** store theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   100
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   101
(* fact specifications *)
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   102
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   103
fun map_facts f = map (apsnd (map (apfst (map f))));
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   104
fun burrow_fact f = split_list #>> burrow f #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   105
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   106
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   107
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   108
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   109
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   110
fun name_multi name [x] = [(name, x)]
26457
wenzelm
parents: 26436
diff changeset
   111
  | name_multi "" xs = map (pair "") xs
wenzelm
parents: 26436
diff changeset
   112
  | 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
   113
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   114
fun name_thm pre official name thm = thm
41696
f69bb9077b02 tuned odd conditional expression;
wenzelm
parents: 39557
diff changeset
   115
  |> (if not official orelse pre andalso Thm.derivation_name thm <> "" then I
f69bb9077b02 tuned odd conditional expression;
wenzelm
parents: 39557
diff changeset
   116
      else Thm.name_derivation name)
f69bb9077b02 tuned odd conditional expression;
wenzelm
parents: 39557
diff changeset
   117
  |> (if name = "" orelse pre andalso Thm.has_name_hint thm then I
f69bb9077b02 tuned odd conditional expression;
wenzelm
parents: 39557
diff changeset
   118
      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
   119
67678
wenzelm
parents: 67671
diff changeset
   120
fun name_thms pre official name thms =
wenzelm
parents: 67671
diff changeset
   121
  map (uncurry (name_thm pre official)) (name_multi name thms);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   122
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   123
fun name_thmss official name fact =
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   124
  burrow_fact (name_thms true official name) fact;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   125
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   126
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   127
(* enter_thms *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   128
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
   129
fun register_proofs thms thy = (thms, Thm.register_proofs (Lazy.value thms) thy);
49010
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
   130
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
   131
fun add_facts arg 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
   132
  thy |> Data.map (Facts.add_static (Context.Theory thy) {strict = true, index = false} arg #> #2);
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67663
diff changeset
   133
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67663
diff changeset
   134
fun add_thms_lazy kind (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
   135
  if Binding.is_empty b then Thm.register_proofs thms thy
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   136
  else
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   137
    let
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46775
diff changeset
   138
      val name = Sign.full_name thy b;
67779
fd2558014196 tuned -- more uniform;
wenzelm
parents: 67715
diff changeset
   139
      val thms' = thms
fd2558014196 tuned -- more uniform;
wenzelm
parents: 67715
diff changeset
   140
        |> 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
   141
    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
   142
857da80611ab support for lazy notes in global/local context and Element.Lazy_Notes: name binding and fact without attributes;
wenzelm
parents: 67663
diff changeset
   143
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
   144
  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
   145
  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
   146
    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
   147
      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
   148
      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
   149
        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
   150
      val thy'' = thy' |> add_facts (b, Lazy.value thms');
67663
3f330245aebe tuned: more accurate transfer;
wenzelm
parents: 67662
diff changeset
   151
    in (map (Thm.transfer thy'') thms', thy'') end;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   152
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   153
67715
ec46ecb87999 tuned signature;
wenzelm
parents: 67713
diff changeset
   154
(* store_thm *)
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   155
67715
ec46ecb87999 tuned signature;
wenzelm
parents: 67713
diff changeset
   156
fun store_thm (b, th) =
ec46ecb87999 tuned signature;
wenzelm
parents: 67713
diff changeset
   157
  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
   158
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   159
fun store_thm_open (b, th) =
46775
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 45666
diff changeset
   160
  enter_thms (name_thms true false) (name_thms false false) pair (b, [th]) #>> the_single;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   161
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   162
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   163
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   164
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   165
fun add_thms_atts pre_name ((b, thms), atts) =
46775
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 45666
diff changeset
   166
  enter_thms pre_name (name_thms false true) (fold_map (Thm.theory_attributes atts)) (b, thms);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   167
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   168
fun gen_add_thmss pre_name =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   169
  fold_map (add_thms_atts pre_name);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   170
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   171
fun gen_add_thms pre_name args =
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   172
  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
   173
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   174
val add_thmss = gen_add_thmss (name_thms true true);
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33522
diff changeset
   175
val add_thms = gen_add_thms (name_thms true true);
27683
add9a605d562 dropped PureThy.note; added PureThy.add_thm
haftmann
parents: 27198
diff changeset
   176
val add_thm = yield_singleton add_thms;
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   177
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   178
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   179
(* dynamic theorems *)
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   180
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   181
fun add_thms_dynamic' context arg thy =
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   182
  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
   183
  in (name, Data.put facts' thy) end;
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   184
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   185
fun add_thms_dynamic arg thy =
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   186
  add_thms_dynamic' (Context.Theory thy) arg thy |> snd;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   187
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   188
27728
9a9e54042800 removed obsolete note_thms_cmd;
wenzelm
parents: 27691
diff changeset
   189
(* note_thmss *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   190
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   191
fun note_thms kind ((b, more_atts), facts) thy =
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   192
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   193
    val name = Sign.full_name thy b;
46775
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 45666
diff changeset
   194
    fun app (ths, atts) =
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 45666
diff changeset
   195
      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
   196
    val (thms, thy') =
6287653e63ec canonical argument order for attribute application;
wenzelm
parents: 45666
diff changeset
   197
      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
   198
        (b, facts) thy;
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   199
  in ((name, thms), thy') end;
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   200
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   201
val note_thmss = fold_map o note_thms;
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   202
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   203
62170
wenzelm
parents: 62169
diff changeset
   204
(* old-style defs *)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   205
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   206
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
   207
62169
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   208
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
   209
  let
62170
wenzelm
parents: 62169
diff changeset
   210
    val context = Defs.global_context thy;
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61261
diff changeset
   211
    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
   212
    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
   213
      |> 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
   214
      |> 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
   215
      |> 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
   216
  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
   217
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   218
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
   219
62169
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   220
val add_defs = add false;
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   221
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
   222
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   223
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   224
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   225
end;