src/Pure/global_theory.ML
author wenzelm
Sat, 17 Aug 2019 11:02:09 +0200
changeset 70555 c1fde53e5e82
parent 70552 8d7a531a6b58
child 70574 503ca64329cc
permissions -rw-r--r--
clarified lookup operations: more scalable for multiple retrieval;
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
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    15
  val dest_thms: bool -> theory list -> theory -> (Facts.thm_name * thm) list
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    16
  val dest_thm_names: theory -> (proof_serial * Facts.thm_name) list
70555
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
    17
  val lookup_thm_id: theory -> Proofterm.thm_id -> Facts.thm_name option
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
    18
  val lookup_thm: theory -> thm -> Facts.thm_name option
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    19
  val get_thms: theory -> xstring -> thm list
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    20
  val get_thm: theory -> xstring -> thm
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
    21
  val transfer_theories: theory -> thm -> thm
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
    22
  val all_thms_of: theory -> bool -> (string * thm) list
21567
c097a926ba78 added burrow_fact;
wenzelm
parents: 21524
diff changeset
    23
  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
    24
  val burrow_facts: ('a list -> 'b list) ->
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    25
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
70550
8bc7e54bead9 clarified signature;
wenzelm
parents: 70544
diff changeset
    26
  val name_multi: string * Position.T -> thm list -> ((string * Position.T) * thm) list
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
    27
  type name_flags
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
    28
  val unnamed: name_flags
70427
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
    29
  val official1: name_flags
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
    30
  val official2: name_flags
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
    31
  val unofficial1: name_flags
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
    32
  val unofficial2: name_flags
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
    33
  val name_thm: name_flags -> string * Position.T -> thm -> thm
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
    34
  val name_thms: name_flags -> string * Position.T -> thm list -> thm list
68661
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
    35
  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
    36
  val add_thms_lazy: string -> (binding * thm list lazy) -> theory -> theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    37
  val store_thm: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    38
  val store_thm_open: binding * thm -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    39
  val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    40
  val add_thm: (binding * thm) * attribute list -> theory -> thm * theory
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    41
  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
    42
  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
    43
    theory -> string * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    44
  val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    45
  val note_thms: string -> Thm.binding * (thm list * attribute list) list -> theory ->
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    46
    (string * thm list) * theory
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    47
  val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> theory ->
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
    48
    (string * thm list) list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    49
  val add_defs: bool -> ((binding * term) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    50
    theory -> thm list * theory
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    51
  val add_defs_unchecked: bool -> ((binding * term) * attribute list) list ->
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
    52
    theory -> thm list * theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    53
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    54
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
    55
structure Global_Theory: GLOBAL_THEORY =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    56
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    57
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    58
(** 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
    59
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
    60
structure Data = Theory_Data
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    61
(
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    62
  type T = Facts.T * Facts.thm_name Inttab.table lazy option;
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    63
  val empty: T = (Facts.empty, NONE);
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    64
  fun extend (facts, _) = (facts, 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
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
    66
);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    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
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    73
56003
eccac152ffb4 check fact names with PIDE markup;
wenzelm
parents: 55740
diff changeset
    74
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
    75
val intern_fact = Facts.intern o facts_of;
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    76
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
    77
57887
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    78
fun alias_fact binding name thy =
70544
16e98f89a29c clarified signature;
wenzelm
parents: 70543
diff changeset
    79
  map_facts (Facts.alias (Sign.naming_of thy) binding name) thy;
57887
44354c99d754 support aliases within the facts space;
wenzelm
parents: 56161
diff changeset
    80
70544
16e98f89a29c clarified signature;
wenzelm
parents: 70543
diff changeset
    81
fun hide_fact fully name = map_facts (Facts.hide fully name);
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
    82
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    83
fun dest_thms verbose prev_thys thy =
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    84
  Facts.dest_static verbose (map facts_of prev_thys) (facts_of thy)
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    85
  |> maps (uncurry Facts.thm_name_list);
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    86
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
(* thm_name vs. derivation_id *)
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    89
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    90
val thm_names_of = #2 o Data.get;
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    91
val map_thm_names = Data.map o apsnd;
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    92
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    93
fun make_thm_names thy =
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    94
  (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
    95
  |-> fold (fn (thm_name, thm) => fn thm_names =>
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    96
    (case Thm.derivation_id (Thm.transfer thy thm) of
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    97
      NONE => thm_names
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    98
    | SOME {serial, theory_name} =>
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
    99
        if Context.theory_long_name thy <> theory_name then
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   100
          raise THM ("Bad theory name for derivation", 0, [thm])
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   101
        else
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   102
          (case Inttab.lookup thm_names serial of
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   103
            SOME thm_name' =>
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   104
              raise THM ("Duplicate use of derivation identity for " ^
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   105
                Facts.thm_name_print thm_name ^ " vs. " ^
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   106
                Facts.thm_name_print thm_name', 0, [thm])
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   107
          | NONE => Inttab.update (serial, thm_name) thm_names)));
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   108
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   109
fun get_thm_names thy =
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   110
  (case thm_names_of thy of
70555
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   111
    NONE => Lazy.lazy (fn () => make_thm_names thy)
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   112
  | SOME lazy_tab => lazy_tab);
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   113
70555
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   114
val dest_thm_names = Inttab.dest o Lazy.force o get_thm_names;
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   115
70555
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   116
fun lookup_thm_id thy =
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   117
  let
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   118
    val theories =
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   119
      fold (fn thy' => Symtab.update (Context.theory_long_name thy', get_thm_names thy'))
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   120
        (Theory.nodes_of thy) Symtab.empty;
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   121
    fun lookup (thm_id: Proofterm.thm_id) =
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   122
      (case Symtab.lookup theories (#theory_name thm_id) of
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   123
        NONE => NONE
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   124
      | 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
   125
  in lookup end;
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   126
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   127
fun lookup_thm thy =
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   128
  let val lookup = lookup_thm_id thy
c1fde53e5e82 clarified lookup operations: more scalable for multiple retrieval;
wenzelm
parents: 70552
diff changeset
   129
  in fn thm => (case Thm.derivation_id thm of NONE => NONE | SOME thm_id => lookup thm_id) end;
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   130
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   131
val _ =
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   132
  Theory.setup (Theory.at_end (fn thy =>
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   133
    if is_some (thm_names_of thy) then NONE
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   134
    else
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   135
      let
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   136
        val lazy_tab =
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   137
          if Future.proofs_enabled 1
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   138
          then Lazy.lazy (fn () => make_thm_names thy)
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   139
          else Lazy.value (make_thm_names thy);
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   140
      in SOME (map_thm_names (K (SOME lazy_tab)) thy) end));
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   141
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   142
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
   143
(* retrieve theorems *)
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   144
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
   145
fun get_thms thy xname =
57942
e5bec882fdd0 more informative Token.Fact: retain name of dynamic fact (without selection);
wenzelm
parents: 57929
diff changeset
   146
  #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
   147
56140
ed92ce2ac88e just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
wenzelm
parents: 56003
diff changeset
   148
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
   149
  Facts.the_single (xname, Position.none) (get_thms thy xname);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   150
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   151
fun transfer_theories thy =
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   152
  let
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   153
    val theories =
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   154
      fold (fn thy' => Symtab.update (Context.theory_name thy', thy'))
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   155
        (Theory.nodes_of thy) Symtab.empty;
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   156
    fun transfer th =
65458
cf504b7a7aa7 tuned signature;
wenzelm
parents: 62170
diff changeset
   157
      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
   158
  in transfer end;
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   159
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   160
fun all_thms_of thy verbose =
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   161
  let
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   162
    val transfer = transfer_theories thy;
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   163
    val facts = facts_of thy;
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   164
    fun add (name, ths) =
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   165
      if not verbose andalso Facts.is_concealed facts name then I
61054
add998b3c597 trim context for persistent storage;
wenzelm
parents: 57942
diff changeset
   166
      else append (map (`(Thm.get_name_hint) o transfer) ths);
56161
300f613060b0 tuned signature;
wenzelm
parents: 56140
diff changeset
   167
  in Facts.fold_static add facts [] end;
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   168
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   169
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   170
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   171
(** store theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   172
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   173
(* fact specifications *)
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   174
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   175
fun burrow_fact f = split_list #>> burrow f #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   176
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   177
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   178
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   179
(* name theorems *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   180
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   181
abstype name_flags = No_Name_Flags | Name_Flags of {pre: bool, official: bool}
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   182
with
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   183
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   184
val unnamed = No_Name_Flags;
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   185
val official1 = Name_Flags {pre = true, official = true};
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   186
val official2 = Name_Flags {pre = false, official = true};
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   187
val unofficial1 = Name_Flags {pre = true, official = false};
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   188
val unofficial2 = Name_Flags {pre = false, official = false};
70427
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
   189
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   190
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
   191
  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
   192
    (case name_flags of
f0a445c5a82c maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents: 70431
diff changeset
   193
      No_Name_Flags => thm
f0a445c5a82c maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents: 70431
diff changeset
   194
    | Name_Flags {pre, official} =>
f0a445c5a82c maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents: 70431
diff changeset
   195
        thm
70543
33749040b6f8 clarified derivation_name vs. raw_derivation_name;
wenzelm
parents: 70494
diff changeset
   196
        |> (official andalso (not pre orelse Thm.raw_derivation_name thm = "")) ?
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   197
            Thm.name_derivation (name, pos)
70459
f0a445c5a82c maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents: 70431
diff changeset
   198
        |> (name <> "" andalso (not pre orelse not (Thm.has_name_hint thm))) ?
f0a445c5a82c maintain sort constraints from type instantiations, with pro-forma derivation to collect oracles/thms;
wenzelm
parents: 70431
diff changeset
   199
            Thm.put_name_hint name));
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   200
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   201
end;
70427
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
   202
70550
8bc7e54bead9 clarified signature;
wenzelm
parents: 70544
diff changeset
   203
fun name_multi (name, pos) =
8bc7e54bead9 clarified signature;
wenzelm
parents: 70544
diff changeset
   204
  Facts.thm_name_list name #> (map o apfst) (fn thm_name => (Facts.thm_name_flat thm_name, pos));
70427
973bf3e42e54 clarified signature;
wenzelm
parents: 70426
diff changeset
   205
70550
8bc7e54bead9 clarified signature;
wenzelm
parents: 70544
diff changeset
   206
fun name_thms name_flags name_pos =
8bc7e54bead9 clarified signature;
wenzelm
parents: 70544
diff changeset
   207
  name_multi name_pos #> map (uncurry (name_thm name_flags));
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   208
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   209
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   210
(* apply theorems and attributes *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   211
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
   212
fun register_proofs thms thy = (thms, Thm.register_proofs (Lazy.value thms) thy);
49010
72808e956879 tuned signature;
wenzelm
parents: 48992
diff changeset
   213
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   214
fun bind_name thy b = (Sign.full_name thy b, Binding.default_pos_of b);
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   215
68244
e0cd57aeb60c more checks for global facts: disallow undeclared frees (as in Export_Theory.export_fact);
wenzelm
parents: 67779
diff changeset
   216
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
   217
  let
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   218
    val (full_name, pos) = bind_name thy b;
68540
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   219
    fun check fact =
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   220
      fact |> map_index (fn (i, thm) =>
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   221
        let
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   222
          fun err msg =
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   223
            error ("Malformed global fact " ^
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   224
              quote (full_name ^
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   225
                (if length fact = 1 then "" else "(" ^ string_of_int (i + 1) ^ ")")) ^
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   226
              Position.here pos ^ "\n" ^ msg);
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   227
          val prop = Thm.plain_prop_of thm
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   228
            handle THM _ =>
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   229
              thm
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   230
              |> Thm.check_hyps (Context.Theory thy)
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   231
              |> Thm.full_prop_of;
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   232
        in
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   233
          ignore (Logic.unvarify_global (Term_Subst.zero_var_indexes prop))
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   234
            handle TYPE (msg, _, _) => err msg
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   235
              | TERM (msg, _) => err msg
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   236
              | ERROR msg => err msg
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   237
        end);
000a0e062529 disallow pending hyps;
wenzelm
parents: 68244
diff changeset
   238
    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
   239
  in
70544
16e98f89a29c clarified signature;
wenzelm
parents: 70543
diff changeset
   240
    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
   241
  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
   242
68661
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
   243
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
   244
  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
   245
  then Lazy.force_value thms else thms;
68661
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
   246
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
   247
fun add_thms_lazy kind (b, thms) thy =
68661
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
   248
  if Binding.is_empty b then Thm.register_proofs (check_thms_lazy thms) thy
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   249
  else
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   250
    let
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   251
      val name_pos = bind_name thy b;
68661
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
   252
      val thms' =
5820f0f379ae added system option "strict_facts";
wenzelm
parents: 68558
diff changeset
   253
        check_thms_lazy thms
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   254
        |> Lazy.map_finished (name_thms official1 name_pos #> 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
   255
    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
   256
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   257
val app_facts =
70552
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   258
  apfst flat oo fold_map (fn (thms, atts) => fn thy =>
8d7a531a6b58 maintain thm_name vs. derivation_id for global facts;
wenzelm
parents: 70550
diff changeset
   259
    fold_map (Thm.theory_attributes atts) (map (Thm.transfer thy) thms) thy);
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   260
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   261
fun apply_facts name_flags1 name_flags2 (b, facts) thy =
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   262
  if Binding.is_empty b then app_facts facts thy |-> register_proofs
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
   263
  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
   264
    let
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   265
      val name_pos= bind_name thy b;
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   266
      val (thms', thy') = thy
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   267
        |> app_facts (map (apfst (name_thms name_flags1 name_pos)) facts)
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70459
diff changeset
   268
        |>> name_thms name_flags2 name_pos |-> register_proofs;
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
   269
      val thy'' = thy' |> add_facts (b, Lazy.value thms');
67663
3f330245aebe tuned: more accurate transfer;
wenzelm
parents: 67662
diff changeset
   270
    in (map (Thm.transfer thy'') thms', thy'') end;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   271
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   272
67715
ec46ecb87999 tuned signature;
wenzelm
parents: 67713
diff changeset
   273
(* store_thm *)
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   274
67715
ec46ecb87999 tuned signature;
wenzelm
parents: 67713
diff changeset
   275
fun store_thm (b, th) =
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   276
  apply_facts official1 official2 (b, [([th], [])]) #>> the_single;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   277
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   278
fun store_thm_open (b, th) =
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   279
  apply_facts unofficial1 unofficial2 (b, [([th], [])]) #>> the_single;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   280
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   281
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   282
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   283
70428
wenzelm
parents: 70427
diff changeset
   284
val add_thmss =
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   285
  fold_map (fn ((b, thms), atts) => apply_facts official1 official2 (b, [(thms, atts)]));
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   286
70428
wenzelm
parents: 70427
diff changeset
   287
fun add_thms args =
wenzelm
parents: 70427
diff changeset
   288
  add_thmss (map (apfst (apsnd single)) args) #>> map the_single;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   289
27683
add9a605d562 dropped PureThy.note; added PureThy.add_thm
haftmann
parents: 27198
diff changeset
   290
val add_thm = yield_singleton add_thms;
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   291
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   292
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   293
(* dynamic theorems *)
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   294
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   295
fun add_thms_dynamic' context arg thy =
70544
16e98f89a29c clarified signature;
wenzelm
parents: 70543
diff changeset
   296
  let val (name, facts') = Facts.add_dynamic context arg (facts_of thy)
16e98f89a29c clarified signature;
wenzelm
parents: 70543
diff changeset
   297
  in (name, map_facts (K facts') thy) end;
57929
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   298
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   299
fun add_thms_dynamic arg thy =
c5063c033a5a tuned signature -- proper Local_Theory.add_thms_dynamic;
wenzelm
parents: 57887
diff changeset
   300
  add_thms_dynamic' (Context.Theory thy) arg thy |> snd;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   301
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   302
27728
9a9e54042800 removed obsolete note_thms_cmd;
wenzelm
parents: 27691
diff changeset
   303
(* note_thmss *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   304
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   305
fun note_thms kind ((b, more_atts), facts) thy =
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   306
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   307
    val name = Sign.full_name thy b;
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   308
    val facts' = facts |> map (apsnd (fn atts => surround (Thm.kind kind) (atts @ more_atts)));
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   309
    val (thms', thy') = thy |> apply_facts official1 official2 (b, facts');
70424
4ed859e23025 clarified signature;
wenzelm
parents: 68701
diff changeset
   310
  in ((name, thms'), thy') end;
67713
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   311
041898537c19 tuned signature;
wenzelm
parents: 67678
diff changeset
   312
val note_thmss = fold_map o note_thms;
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   313
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   314
62170
wenzelm
parents: 62169
diff changeset
   315
(* old-style defs *)
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   316
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   317
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
   318
62169
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   319
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
   320
  let
62170
wenzelm
parents: 62169
diff changeset
   321
    val context = Defs.global_context thy;
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 61261
diff changeset
   322
    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
   323
    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
   324
      |> 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
   325
      |> 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
   326
      |> Thm.varifyT_global;
70430
6ec97dc6670e clarified signature;
wenzelm
parents: 70428
diff changeset
   327
  in thy' |> apply_facts unnamed official2 (b, [([thm], atts)]) |>> 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
   328
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   329
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
   330
62169
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   331
val add_defs = add false;
a6047f511de7 removed old 'defs' command;
wenzelm
parents: 61262
diff changeset
   332
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
   333
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   334
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   335
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   336
end;