src/Pure/pure_thy.ML
author wenzelm
Tue, 18 Mar 2008 21:57:35 +0100
changeset 26320 5fe18f9493ef
parent 26319 f512d78e6687
child 26336 a0e2b706ce73
permissions -rw-r--r--
removed check_lookup; added get_thms_silent;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/pure_thy.ML
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     4
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
     5
Theorem storage.  The ProtoPure theory.
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     6
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     7
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
     8
signature BASIC_PURE_THY =
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
     9
sig
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    10
  datatype interval = FromTo of int * int | From of int | Single of int
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
    11
  datatype thmref =
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
    12
    Name of string |
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
    13
    NameSelection of string * interval list |
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
    14
    Fact of string
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    15
  val get_thm: theory -> thmref -> thm
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    16
  val get_thms: theory -> thmref -> thm list
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    17
  val get_thmss: theory -> thmref list -> thm list
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    18
  structure ProtoPure:
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    19
    sig
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    20
      val thy: theory
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
    21
      val prop_def: thm
19775
06cb6743adf6 support embedded terms;
wenzelm
parents: 19629
diff changeset
    22
      val term_def: thm
19125
59b26248547b simplified Pure conjunction, based on actual const;
wenzelm
parents: 19046
diff changeset
    23
      val conjunction_def: thm
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
    24
    end
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
    25
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    26
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    27
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    28
sig
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
    29
  include BASIC_PURE_THY
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    30
  val tag_rule: Markup.property -> thm -> thm
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    31
  val untag_rule: string -> thm -> thm
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    32
  val tag: Markup.property -> attribute
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    33
  val untag: string -> attribute
21964
df2e82888a66 added has_name_hint;
wenzelm
parents: 21646
diff changeset
    34
  val has_name_hint: thm -> bool
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    35
  val get_name_hint: thm -> string
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    36
  val put_name_hint: string -> thm -> thm
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    37
  val get_group: thm -> string option
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    38
  val put_group: string -> thm -> thm
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    39
  val group: string -> attribute
22251
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
    40
  val has_kind: thm -> bool
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    41
  val get_kind: thm -> string
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    42
  val kind_rule: string -> thm -> thm
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    43
  val kind: string -> attribute
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    44
  val kind_internal: attribute
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    45
  val has_internal: Markup.property list -> bool
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    46
  val is_internal: thm -> bool
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    47
  val string_of_thmref: thmref -> string
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
    48
  val single_thm: string -> thm list -> thm
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    49
  val name_of_thmref: thmref -> string
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
    50
  val map_name_of_thmref: (string -> string) -> thmref -> thmref
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
    51
  val select_thm: thmref -> thm list -> thm list
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
    52
  val selections: string * thm list -> (thmref * thm) list
26320
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
    53
  val get_thms_silent: theory -> thmref -> thm list
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
    54
  val theorems_of: theory -> thm list NameSpace.table
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
    55
  val all_facts_of: theory -> Facts.T
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    56
  val thms_of: theory -> (string * thm) list
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    57
  val all_thms_of: theory -> (string * thm) list
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
    58
  val hide_thms: bool -> string list -> theory -> theory
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    59
  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
    60
  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
    61
  val burrow_facts: ('a list -> 'b list) ->
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    62
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    63
  val name_multi: string -> 'a list -> (string * 'a) list
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    64
  val name_thm: bool -> bool -> string -> thm -> thm
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    65
  val name_thms: bool -> bool -> string -> thm list -> thm list
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    66
  val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    67
  val store_thm: (bstring * thm) * attribute list -> theory -> thm * theory
7405
7e4e286a9931 smart_store_thms;
wenzelm
parents: 7278
diff changeset
    68
  val smart_store_thms: (bstring * thm list) -> thm list
12138
7cad58fbc866 renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents: 12123
diff changeset
    69
  val smart_store_thms_open: (bstring * thm list) -> thm list
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
    70
  val forall_elim_var: int -> thm -> thm
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
    71
  val forall_elim_vars: int -> thm -> thm
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    72
  val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory
24965
8b4a02947721 removed obsolete simple_def;
wenzelm
parents: 24817
diff changeset
    73
  val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory
25598
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
    74
  val note: string -> string * thm -> theory -> thm * theory
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    75
  val note_thmss: string -> ((bstring * attribute list) *
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    76
    (thmref * attribute list) list) list -> theory -> (bstring * thm list) list * theory
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    77
  val note_thmss_i: string -> ((bstring * attribute list) *
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    78
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    79
  val note_thmss_grouped: string -> string -> ((bstring * attribute list) *
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    80
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    81
  val note_thmss_qualified: string -> string -> ((bstring * attribute list) *
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    82
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    83
  val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    84
  val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    85
  val add_axiomss: ((bstring * string list) * attribute list) list ->
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    86
    theory -> thm list list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    87
  val add_axiomss_i: ((bstring * term list) * attribute list) list ->
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    88
    theory -> thm list list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    89
  val add_defs: bool -> ((bstring * string) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    90
    theory -> thm list * theory
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    91
  val add_defs_i: bool -> ((bstring * term) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    92
    theory -> thm list * theory
19629
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    93
  val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list ->
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    94
    theory -> thm list * theory
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    95
  val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list ->
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    96
    theory -> thm list * theory
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
    97
  val appl_syntax: (string * typ * mixfix) list
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
    98
  val applC_syntax: (string * typ * mixfix) list
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    99
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   100
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   101
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   102
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   103
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   104
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   105
(*** theorem tags ***)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   106
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   107
(* add / delete tags *)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   108
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   109
fun tag_rule tg = Thm.map_tags (insert (op =) tg);
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   110
fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s'));
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   111
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   112
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x;
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   113
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x;
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   114
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   115
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   116
(* unofficial theorem names *)
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   117
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   118
fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN);
22251
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   119
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   120
val has_name_hint = can the_name_hint;
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   121
val get_name_hint = the_default "??.unknown" o try the_name_hint;
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   122
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   123
fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name);
21964
df2e82888a66 added has_name_hint;
wenzelm
parents: 21646
diff changeset
   124
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   125
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   126
(* theorem groups *)
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   127
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   128
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN;
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   129
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   130
fun put_group name =
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   131
  if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name));
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   132
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   133
fun group name = Thm.rule_attribute (K (put_group name));
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   134
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   135
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   136
(* theorem kinds *)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   137
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   138
fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN);
22251
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   139
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   140
val has_kind = can the_kind;
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   141
val get_kind = the_default "" o try the_kind;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   142
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   143
fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   144
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x;
22363
a9f56907eab7 Thm.internalK;
wenzelm
parents: 22357
diff changeset
   145
fun kind_internal x = kind Thm.internalK x;
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   146
fun has_internal tags = exists (fn tg => tg = (Markup.kindN, Thm.internalK)) tags;
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   147
val is_internal = has_internal o Thm.get_tags;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   148
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   149
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   150
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   151
(*** theorem database ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   152
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   153
(** dataype theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   154
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
   155
datatype thms = Thms of
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   156
 {theorems: thm list NameSpace.table,   (* FIXME legacy *)
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   157
  all_facts: Facts.T};
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   158
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   159
fun make_thms theorems all_facts = Thms {theorems = theorems, all_facts = all_facts};
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   160
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   161
structure TheoremsData = TheoryDataFun
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
   162
(
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
   163
  type T = thms ref;   (* FIXME legacy *)
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   164
  val empty = ref (make_thms NameSpace.empty_table Facts.empty);
6547
5ba27aade76f theory data: copy;
wenzelm
parents: 6367
diff changeset
   165
  fun copy (ref x) = ref x;
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
   166
  fun extend (ref (Thms {theorems = _, all_facts})) = ref (make_thms NameSpace.empty_table all_facts);
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   167
  fun merge _
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   168
     (ref (Thms {theorems = _, all_facts = all_facts1}),
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   169
      ref (Thms {theorems = _, all_facts = all_facts2})) =
305d5ca4fa9d replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents: 26050
diff changeset
   170
    ref (make_thms NameSpace.empty_table (Facts.merge (all_facts1, all_facts2)));
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
   171
);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   172
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   173
val get_theorems_ref = TheoremsData.get;
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
   174
val get_theorems = (fn Thms args => args) o ! o get_theorems_ref;
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   175
val theorems_of = #theorems o get_theorems;
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
   176
val all_facts_of = #all_facts o get_theorems;
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   177
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
   178
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   179
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   180
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   181
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   182
fun the_thms _ (SOME thms) = thms
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   183
  | the_thms name NONE = error ("Unknown theorem(s) " ^ quote name);
4037
wenzelm
parents: 4022
diff changeset
   184
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   185
fun single_thm _ [thm] = thm
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   186
  | single_thm name _ = error ("Single theorem expected " ^ quote name);
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   187
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   188
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   189
(* datatype interval *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   190
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   191
datatype interval =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   192
  FromTo of int * int |
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   193
  From of int |
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   194
  Single of int;
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   195
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   196
fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   197
  | string_of_interval (From i) = string_of_int i ^ "-"
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   198
  | string_of_interval (Single i) = string_of_int i;
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   199
24793
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   200
fun interval n iv =
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   201
  let fun err () = raise Fail ("Bad interval specification " ^ string_of_interval iv) in
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   202
    (case iv of
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   203
      FromTo (i, j) => if i <= j then i upto j else err ()
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   204
    | From i => if i <= n then i upto n else err ()
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   205
    | Single i => [i])
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   206
  end;
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   207
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   208
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   209
(* datatype thmref *)
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   210
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   211
datatype thmref =
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   212
  Name of string |
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   213
  NameSelection of string * interval list |
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   214
  Fact of string;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   215
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   216
fun name_of_thmref (Name name) = name
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   217
  | name_of_thmref (NameSelection (name, _)) = name
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18666
diff changeset
   218
  | name_of_thmref (Fact _) = error "Illegal literal fact";
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   219
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   220
fun map_name_of_thmref f (Name name) = Name (f name)
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   221
  | map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is)
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   222
  | map_name_of_thmref _ thmref = thmref;
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   223
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   224
fun string_of_thmref (Name name) = name
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   225
  | string_of_thmref (NameSelection (name, is)) =
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   226
      name ^ enclose "(" ")" (commas (map string_of_interval is))
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18666
diff changeset
   227
  | string_of_thmref (Fact _) = error "Illegal literal fact";
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   228
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   229
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   230
(* select_thm *)
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   231
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   232
fun select_thm (Name _) thms = thms
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   233
  | select_thm (Fact _) thms = thms
24793
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   234
  | select_thm (NameSelection (name, ivs)) thms =
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   235
      let
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   236
        val n = length thms;
24793
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   237
        fun err msg = error (msg ^ " for " ^ quote name ^ " (length " ^ string_of_int n ^ ")");
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   238
        fun select i =
24793
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   239
          if i < 1 orelse i > n then err ("Bad subscript " ^ string_of_int i)
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   240
          else nth thms (i - 1);
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   241
        val is = maps (interval n) ivs handle Fail msg => err msg;
cbe63f2193b6 NameSelection: more interval checks;
wenzelm
parents: 24770
diff changeset
   242
      in map select is end;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   243
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   244
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   245
(* selections *)
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   246
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   247
fun selections (name, [thm]) = [(Name name, thm)]
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   248
  | selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) =>
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   249
      (NameSelection (name, [Single i]), thm));
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15387
diff changeset
   250
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   251
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
   252
(* lookup/get thms *)
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   253
26292
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   254
local
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   255
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   256
fun lookup_thms thy xname =
9564
391f3ee75b1e added get_thms_closure, single_thm;
wenzelm
parents: 9534
diff changeset
   257
  let
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   258
    val (space, thms) = #theorems (get_theorems thy);
26292
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   259
    val name = NameSpace.intern space xname;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   260
  in Option.map (pair name) (Symtab.lookup thms name) end;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   261
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   262
fun lookup_fact thy xname =
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   263
  let
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   264
    val facts = all_facts_of thy;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   265
    val name = NameSpace.intern (Facts.space_of facts) xname;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   266
  in Option.map (pair name) (Facts.lookup facts name) end;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   267
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   268
fun show_result NONE = "none"
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   269
  | show_result (SOME (name, _)) = quote name;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   270
26320
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   271
fun get_fact silent theory thmref =
26292
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   272
  let
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   273
    val name = name_of_thmref thmref;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   274
    val new_res = lookup_fact theory name;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   275
    val old_res = get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory);
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   276
    val is_same =
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   277
      (case (new_res, old_res) of
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   278
        (NONE, NONE) => true
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   279
      | (SOME (name1, ths1), SOME (name2, ths2)) => name1 = name2 andalso Thm.eq_thms (ths1, ths2)
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   280
      | _ => false);
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   281
    val _ =
26320
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   282
      if is_same orelse silent then ()
26292
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   283
      else legacy_feature ("Fact lookup differs from old-style thm database:\n" ^
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   284
        show_result new_res ^ " vs " ^ show_result old_res ^
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   285
        Position.str_of (Position.thread_data ()));
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   286
  in Option.map #2 old_res |> the_thms name |> select_thm thmref |> map (Thm.transfer theory) end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   287
26320
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   288
in
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   289
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   290
val get_thms_silent = get_fact true;
5fe18f9493ef removed check_lookup;
wenzelm
parents: 26319
diff changeset
   291
val get_thms = get_fact false;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   292
fun get_thmss thy thmrefs = maps (get_thms thy) thmrefs;
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   293
fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   294
26292
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   295
end;
009e56d16080 get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents: 26282
diff changeset
   296
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   297
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   298
(* thms_of etc. *)
15882
a191d2bee3e1 new thms_containing that searches for patterns instead of constants
kleing
parents: 15801
diff changeset
   299
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   300
fun thms_of thy =
17162
c332aaf1b460 export theorems_of;
wenzelm
parents: 16987
diff changeset
   301
  let val thms = #2 (theorems_of thy)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   302
  in map (`(get_name_hint)) (maps snd (Symtab.dest thms)) end;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   303
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19473
diff changeset
   304
fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy);
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   305
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   306
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   307
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   308
(** store theorems **)                    (*DESTRUCTIVE*)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   309
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   310
(* hiding -- affects current theory node only *)
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   311
23933
e1a792312472 marked some CRITICAL sections;
wenzelm
parents: 23657
diff changeset
   312
fun hide_thms fully names thy = CRITICAL (fn () =>
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   313
  let
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
   314
    val r as ref (Thms {theorems = (space, thms), all_facts}) = get_theorems_ref thy;
16132
afd2d32c7d94 renamed cond_extern to extern;
wenzelm
parents: 16023
diff changeset
   315
    val space' = fold (NameSpace.hide fully) names space;
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
   316
  in r := make_thms (space', thms) all_facts; thy end);
12695
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   317
37cb8f7308f6 added hide_thms;
wenzelm
parents: 12311
diff changeset
   318
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   319
(* fact specifications *)
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   320
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   321
fun map_facts f = map (apsnd (map (apfst (map f))));
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   322
fun burrow_fact f = split_list #>> burrow f #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   323
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   324
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   325
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   326
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   327
18614
3618d5ae0ac8 gen_names: preserve empty names;
wenzelm
parents: 18418
diff changeset
   328
fun gen_names _ len "" = replicate len ""
3618d5ae0ac8 gen_names: preserve empty names;
wenzelm
parents: 18418
diff changeset
   329
  | gen_names j len name = map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   330
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   331
fun name_multi name [x] = [(name, x)]
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   332
  | name_multi name xs = gen_names 0 (length xs) name ~~ xs;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   333
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   334
fun name_thm pre official name thm = thm
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   335
  |> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name)
26050
88bb26089ef5 maintain default position;
wenzelm
parents: 25981
diff changeset
   336
  |> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name)
88bb26089ef5 maintain default position;
wenzelm
parents: 25981
diff changeset
   337
  |> Thm.map_tags (Position.default_properties (Position.thread_data ()));
12872
0855c3ab2047 Theorems are only "pre-named" if the do not already have names.
berghofe
parents: 12711
diff changeset
   338
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   339
fun name_thms pre official name xs =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   340
  map (uncurry (name_thm pre official)) (name_multi name xs);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   341
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   342
fun name_thmss official name fact =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   343
  burrow_fact (name_thms true official name) fact;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   344
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   345
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   346
(* enter_thms *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   347
7470
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   348
fun warn_overwrite name = warning ("Replaced old copy of theorems " ^ quote name);
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   349
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   350
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   351
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap
23933
e1a792312472 marked some CRITICAL sections;
wenzelm
parents: 23657
diff changeset
   352
  | enter_thms pre_name post_name app_att (bname, thms) thy = CRITICAL (fn () =>
7470
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   353
      let
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   354
        val name = Sign.full_name thy bname;
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   355
        val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms));
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
   356
        val r as ref (Thms {theorems = (space, theorems), all_facts}) = get_theorems_ref thy';
16513
f38693aad717 enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents: 16493
diff changeset
   357
        val space' = Sign.declare_name thy' name space;
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   358
        val theorems' = Symtab.update (name, thms') theorems;
26308
73d68876ba46 Facts.add_global;
wenzelm
parents: 26292
diff changeset
   359
        val all_facts' = Facts.add_global (Sign.naming_of thy') (name, thms') all_facts;
13274
191419fac368 improved thms_containing (use FactIndex.T etc.);
wenzelm
parents: 12872
diff changeset
   360
      in
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   361
        (case Symtab.lookup theorems name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15518
diff changeset
   362
          NONE => ()
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   363
        | SOME thms'' =>
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   364
            if Thm.eq_thms (thms', thms'') then warn_same name
13274
191419fac368 improved thms_containing (use FactIndex.T etc.);
wenzelm
parents: 12872
diff changeset
   365
            else warn_overwrite name);
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
   366
        r := make_thms (space', theorems') all_facts';
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   367
        (thms', thy')
23933
e1a792312472 marked some CRITICAL sections;
wenzelm
parents: 23657
diff changeset
   368
      end);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   369
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   370
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   371
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   372
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   373
fun add_thms_atts pre_name ((bname, thms), atts) =
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   374
  enter_thms pre_name (name_thms false true)
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   375
    (foldl_map (Thm.theory_attributes atts)) (bname, thms);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   376
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   377
fun gen_add_thmss pre_name =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   378
  fold_map (add_thms_atts pre_name);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   379
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   380
fun gen_add_thms pre_name args =
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   381
  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
   382
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   383
val add_thmss = gen_add_thmss (name_thms true true);
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   384
val add_thms = gen_add_thms (name_thms true true);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   385
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   386
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14384
diff changeset
   387
(* note_thmss(_i) *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   388
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   389
local
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   390
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   391
fun gen_note_thmss get tag = fold_map (fn ((bname, more_atts), ths_atts) => fn thy =>
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   392
  let
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
   393
    fun app (x, (ths, atts)) = foldl_map (Thm.theory_attributes atts) (x, ths);
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   394
    val (thms, thy') = thy |> enter_thms
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   395
      (name_thmss true) (name_thms false true) (apsnd flat o foldl_map app)
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   396
      (bname, map (fn (ths, atts) => (get thy ths, surround tag (atts @ more_atts))) ths_atts);
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   397
  in ((bname, thms), thy') end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   398
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   399
in
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   400
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   401
fun note_thmss k = gen_note_thmss get_thms (kind k);
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   402
fun note_thmss_i k = gen_note_thmss (K I) (kind k);
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   403
fun note_thmss_grouped k g = gen_note_thmss (K I) (kind k #> group g);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   404
21438
90dda96bca98 moved theorem kinds from PureThy to Thm;
wenzelm
parents: 20853
diff changeset
   405
end;
90dda96bca98 moved theorem kinds from PureThy to Thm;
wenzelm
parents: 20853
diff changeset
   406
25598
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   407
fun note kind (name, thm) =
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   408
  note_thmss_i kind [((name, []), [([thm], [])])]
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   409
  #>> (fn [(_, [thm])] => thm);
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   410
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   411
fun note_thmss_qualified k path facts thy =
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   412
  thy
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   413
  |> Sign.add_path path
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   414
  |> Sign.no_base_names
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   415
  |> note_thmss_i k facts
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   416
  ||> Sign.restore_naming thy;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   417
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   418
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   419
(* store_thm *)
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   420
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   421
fun store_thm ((bname, thm), atts) thy =
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   422
  let val ([th'], thy') = add_thms_atts (name_thms true true) ((bname, [thm]), atts) thy
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18031
diff changeset
   423
  in (th', thy') end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   424
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   425
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   426
(* smart_store_thms(_open) *)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   427
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   428
local
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   429
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   430
fun smart_store _ (name, []) =
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   431
      error ("Cannot store empty list of theorems: " ^ quote name)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   432
  | smart_store official (name, [thm]) =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   433
      fst (enter_thms (name_thms true official) (name_thms false official) I (name, [thm])
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   434
        (Thm.theory_of_thm thm))
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   435
  | smart_store official (name, thms) =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   436
      let val thy = Theory.merge_list (map Thm.theory_of_thm thms) in
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   437
        fst (enter_thms (name_thms true official) (name_thms false official) I (name, thms) thy)
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   438
      end;
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   439
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   440
in
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   441
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   442
val smart_store_thms = smart_store true;
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   443
val smart_store_thms_open = smart_store false;
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   444
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   445
end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   446
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   447
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   448
(* forall_elim_var(s) -- belongs to drule.ML *)
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   449
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   450
fun forall_elim_vars_aux strip_vars i th =
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   451
  let
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   452
    val {thy, tpairs, prop, ...} = Thm.rep_thm th;
16787
b6b6e2faaa41 (intermediate commit)
haftmann
parents: 16722
diff changeset
   453
    val add_used = Term.fold_aterms
20853
3ff5a2e05810 *** empty log message ***
haftmann
parents: 20664
diff changeset
   454
      (fn Var ((x, j), _) => if i = j then insert (op =) x else I | _ => I);
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   455
    val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []);
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   456
    val vars = strip_vars prop;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20057
diff changeset
   457
    val cvars = (Name.variant_list used (map #1 vars), vars)
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   458
      |> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T)));
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   459
  in fold Thm.forall_elim cvars th end;
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   460
16722
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   461
val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars;
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   462
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   463
fun forall_elim_var i th = forall_elim_vars_aux
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   464
  (fn Const ("all", _) $ Abs (a, T, _) => [(a, T)]
040728f6a103 tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents: 16536
diff changeset
   465
  | _ => raise THM ("forall_elim_vars", i, [th])) i th;
7899
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   466
58c91ff28c3d forall_elim_var(s) move here from drule.ML;
wenzelm
parents: 7805
diff changeset
   467
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   468
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   469
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   470
local
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   471
  fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name);
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   472
  fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs;
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   473
  fun add_single add ((name, ax), atts) thy =
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   474
    let
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   475
      val named_ax = [(name, ax)];
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   476
      val thy' = add named_ax thy;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   477
      val thm = hd (get_axs thy' named_ax);
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   478
    in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end;
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   479
  fun add_multi add ((name, axs), atts) thy =
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   480
    let
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   481
      val named_axs = name_multi name axs;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   482
      val thy' = add named_axs thy;
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   483
      val thms = get_axs thy' named_axs;
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   484
    in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end;
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   485
  fun add_singles add = fold_map (add_single add);
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   486
  fun add_multis add = fold_map (add_multi add);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   487
in
19629
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
   488
  val add_axioms           = add_singles Theory.add_axioms;
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
   489
  val add_axioms_i         = add_singles Theory.add_axioms_i;
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
   490
  val add_axiomss          = add_multis Theory.add_axioms;
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
   491
  val add_axiomss_i        = add_multis Theory.add_axioms_i;
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   492
  val add_defs             = add_singles o Theory.add_defs false;
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   493
  val add_defs_i           = add_singles o Theory.add_defs_i false;
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   494
  val add_defs_unchecked   = add_singles o Theory.add_defs true;
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   495
  val add_defs_unchecked_i = add_singles o Theory.add_defs_i true;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   496
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   497
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   498
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   499
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   500
(*** the ProtoPure theory ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   501
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   502
val typ = SimpleSyntax.read_typ;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   503
val term = SimpleSyntax.read_term;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   504
val prop = SimpleSyntax.read_prop;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   505
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   506
val appl_syntax =
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   507
 [("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   508
  ("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))];
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   509
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   510
val applC_syntax =
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   511
 [("",       typ "'a => cargs",                  Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   512
  ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   513
  ("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   514
  ("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))];
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   515
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   516
val proto_pure =
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   517
  Context.pre_pure_thy
16987
9ed901d738ba Compress.init_data;
wenzelm
parents: 16787
diff changeset
   518
  |> Compress.init_data
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   519
  |> TheoremsData.init
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   520
  |> Sign.add_types
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   521
   [("fun", 2, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   522
    ("prop", 0, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   523
    ("itself", 1, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   524
    ("dummy", 0, NoSyn)]
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   525
  |> Sign.add_nonterminals Syntax.basic_nonterms
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   526
  |> Sign.add_syntax_i
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   527
   [("_lambda",     typ "pttrns => 'a => logic",     Mixfix ("(3%_./ _)", [0, 3], 3)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   528
    ("_abs",        typ "'a",                        NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   529
    ("",            typ "'a => args",                Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   530
    ("_args",       typ "'a => args => args",        Delimfix "_,/ _"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   531
    ("",            typ "id => idt",                 Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   532
    ("_idtdummy",   typ "idt",                       Delimfix "'_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   533
    ("_idtyp",      typ "id => type => idt",         Mixfix ("_::_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   534
    ("_idtypdummy", typ "type => idt",               Mixfix ("'_()::_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   535
    ("",            typ "idt => idt",                Delimfix "'(_')"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   536
    ("",            typ "idt => idts",               Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   537
    ("_idts",       typ "idt => idts => idts",       Mixfix ("_/ _", [1, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   538
    ("",            typ "idt => pttrn",              Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   539
    ("",            typ "pttrn => pttrns",           Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   540
    ("_pttrns",     typ "pttrn => pttrns => pttrns", Mixfix ("_/ _", [1, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   541
    ("",            typ "id => aprop",               Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   542
    ("",            typ "longid => aprop",           Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   543
    ("",            typ "var => aprop",              Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   544
    ("_DDDOT",      typ "aprop",                     Delimfix "..."),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   545
    ("_aprop",      typ "aprop => prop",             Delimfix "PROP _"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   546
    ("_asm",        typ "prop => asms",              Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   547
    ("_asms",       typ "prop => asms => asms",      Delimfix "_;/ _"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   548
    ("_bigimpl",    typ "asms => prop => prop",      Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   549
    ("_ofclass",    typ "type => logic => prop",     Delimfix "(1OFCLASS/(1'(_,/ _')))"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   550
    ("_mk_ofclass", typ "dummy",                     NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   551
    ("_TYPE",       typ "type => logic",             Delimfix "(1TYPE/(1'(_')))"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   552
    ("",            typ "id => logic",               Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   553
    ("",            typ "longid => logic",           Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   554
    ("",            typ "var => logic",              Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   555
    ("_DDDOT",      typ "logic",                     Delimfix "..."),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   556
    ("_constify",   typ "num => num_const",          Delimfix "_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   557
    ("_indexnum",   typ "num_const => index",        Delimfix "\\<^sub>_"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   558
    ("_index",      typ "logic => index",            Delimfix "(00\\<^bsub>_\\<^esub>)"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   559
    ("_indexdefault", typ "index",                   Delimfix ""),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   560
    ("_indexvar",   typ "index",                     Delimfix "'\\<index>"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   561
    ("_struct",     typ "index => logic",            Mixfix ("\\<struct>_", [1000], 1000)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   562
    ("==>",         typ "prop => prop => prop",      Delimfix "op ==>"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   563
    (Term.dummy_patternN, typ "aprop",               Delimfix "'_")]
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   564
  |> Sign.add_syntax_i appl_syntax
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   565
  |> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   566
   [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   567
    ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   568
    ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   569
    ("_constrain", typ "'a => type => 'a",     Mixfix ("_\\<Colon>_", [4, 0], 3)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   570
    ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   571
    ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   572
    ("_type_constraint_", typ "'a",            NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   573
    ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   574
    ("==",       typ "'a => 'a => prop",       InfixrName ("\\<equiv>", 2)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   575
    ("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   576
    ("==>",      typ "prop => prop => prop",   InfixrName ("\\<Longrightarrow>", 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   577
    ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   578
    ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   579
    ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   580
  |> Sign.add_modesyntax_i ("", false)
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   581
   [("prop", typ "prop => prop", Mixfix ("_", [0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   582
    ("ProtoPure.term", typ "'a => prop", Delimfix "TERM _"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   583
    ("ProtoPure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))]
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   584
  |> Sign.add_modesyntax_i ("HTML", false)
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   585
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   586
  |> Sign.add_consts_i
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   587
   [("==", typ "'a => 'a => prop", InfixrName ("==", 2)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   588
    ("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   589
    ("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   590
    ("prop", typ "prop => prop", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   591
    ("TYPE", typ "'a itself", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   592
    (Term.dummy_patternN, typ "'a", Delimfix "'_")]
25018
fac2ceba75b4 replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents: 24965
diff changeset
   593
  |> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
fac2ceba75b4 replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents: 24965
diff changeset
   594
  |> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
fac2ceba75b4 replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents: 24965
diff changeset
   595
  |> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
fac2ceba75b4 replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents: 24965
diff changeset
   596
  |> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
fac2ceba75b4 replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents: 24965
diff changeset
   597
  |> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   598
  |> Sign.add_trfuns Syntax.pure_trfuns
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   599
  |> Sign.add_trfunsT Syntax.pure_trfunsT
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   600
  |> Sign.local_path
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   601
  |> Sign.add_consts_i
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   602
   [("term", typ "'a => prop", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   603
    ("conjunction", typ "prop => prop => prop", NoSyn)]
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   604
  |> (add_defs_i false o map Thm.no_attributes)
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   605
   [("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   606
    ("term_def", prop "(CONST ProtoPure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   607
    ("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] |> snd
19775
06cb6743adf6 support embedded terms;
wenzelm
parents: 19629
diff changeset
   608
  |> Sign.hide_consts false ["conjunction", "term"]
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   609
  |> add_thmss [(("nothing", []), [])] |> snd
11516
a0633bdcd015 Added equality axioms and initialization of proof term package.
berghofe
parents: 10667
diff changeset
   610
  |> Theory.add_axioms_i Proofterm.equality_axms
16493
d0f6c33b2300 datatype thmref = Name ... | NameSelection ...;
wenzelm
parents: 16441
diff changeset
   611
  |> Theory.end_theory;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   612
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   613
structure ProtoPure =
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   614
struct
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   615
  val thy = proto_pure;
18031
b17e25a7d820 datatype thmref: added Fact;
wenzelm
parents: 17930
diff changeset
   616
  val prop_def = get_axiom thy "prop_def";
19775
06cb6743adf6 support embedded terms;
wenzelm
parents: 19629
diff changeset
   617
  val term_def = get_axiom thy "term_def";
19125
59b26248547b simplified Pure conjunction, based on actual const;
wenzelm
parents: 19046
diff changeset
   618
  val conjunction_def = get_axiom thy "conjunction_def";
5091
4dc26d3e8722 tuned transaction;
wenzelm
parents: 5041
diff changeset
   619
end;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   620
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   621
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   622
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   623
structure BasicPureThy: BASIC_PURE_THY = PureThy;
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   624
open BasicPureThy;