src/Pure/pure_thy.ML
author wenzelm
Sat, 14 Jun 2008 15:56:52 +0200
changeset 27198 79e9bf691aed
parent 26959 f8f2df3e4d83
child 27683 add9a605d562
permissions -rw-r--r--
removed old theorem database;
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
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
     5
Theorem storage.  Pure theory syntax and logical content.
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
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     8
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     9
sig
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    10
  val tag_rule: Markup.property -> thm -> thm
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    11
  val untag_rule: string -> thm -> thm
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    12
  val tag: Markup.property -> attribute
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    13
  val untag: string -> attribute
21964
df2e82888a66 added has_name_hint;
wenzelm
parents: 21646
diff changeset
    14
  val has_name_hint: thm -> bool
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    15
  val get_name_hint: thm -> string
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    16
  val put_name_hint: string -> thm -> thm
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    17
  val get_group: thm -> string option
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    18
  val put_group: string -> thm -> thm
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    19
  val group: string -> attribute
22251
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
    20
  val has_kind: thm -> bool
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    21
  val get_kind: thm -> string
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    22
  val kind_rule: string -> thm -> thm
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    23
  val kind: string -> attribute
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    24
  val kind_internal: attribute
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    25
  val has_internal: Markup.property list -> bool
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    26
  val is_internal: thm -> bool
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    27
  val facts_of: theory -> Facts.T
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
    28
  val intern_fact: theory -> xstring -> string
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
    29
  val defined_fact: theory -> string -> bool
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
    30
  val hide_fact: bool -> string -> theory -> theory
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
    31
  val get_fact: Context.generic -> theory -> Facts.ref -> thm list
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    32
  val get_thms: theory -> xstring -> thm list
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    33
  val get_thm: theory -> xstring -> thm
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
    34
  val all_thms_of: theory -> (string * thm) list
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    35
  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
    36
  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
    37
  val burrow_facts: ('a list -> 'b list) ->
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    38
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
    39
  val name_multi: string -> 'a list -> (string * 'a) list
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    40
  val name_thm: bool -> bool -> string -> thm -> thm
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    41
  val name_thms: bool -> bool -> string -> thm list -> thm list
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    42
  val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
    43
  val store_thms: bstring * thm list -> theory -> thm list * theory
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
    44
  val store_thm: bstring * thm -> theory -> thm * theory
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
    45
  val store_thm_open: bstring * thm -> theory -> thm * theory
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    46
  val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory
24965
8b4a02947721 removed obsolete simple_def;
wenzelm
parents: 24817
diff changeset
    47
  val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
    48
  val add_thms_dynamic: bstring * (Context.generic -> thm list) -> theory -> theory
25598
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
    49
  val note: string -> string * thm -> theory -> thm * theory
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    50
  val note_thmss: string -> ((bstring * attribute list) *
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26320
diff changeset
    51
    (Facts.ref * attribute list) list) list -> theory -> (bstring * thm list) list * theory
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    52
  val note_thmss_i: string -> ((bstring * attribute list) *
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    53
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    54
  val note_thmss_grouped: string -> string -> ((bstring * attribute list) *
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    55
    (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
    56
  val note_thmss_qualified: string -> string -> ((bstring * attribute list) *
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    57
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    58
  val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    59
  val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    60
  val add_defs: bool -> ((bstring * string) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    61
    theory -> thm list * theory
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
    62
  val add_defs_i: bool -> ((bstring * term) * attribute list) list ->
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
    63
    theory -> thm list * theory
19629
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    64
  val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list ->
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    65
    theory -> thm list * theory
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    66
  val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list ->
c107e7a79559 added add_defs_unchecked(_i);
wenzelm
parents: 19577
diff changeset
    67
    theory -> thm list * theory
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    68
  val old_appl_syntax: theory -> bool
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    69
  val old_appl_syntax_setup: theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    70
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    71
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    72
structure PureThy: PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    73
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    74
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    75
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    76
(*** theorem tags ***)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    77
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    78
(* add / delete tags *)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    79
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    80
fun tag_rule tg = Thm.map_tags (insert (op =) tg);
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    81
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
    82
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    83
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
    84
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
    85
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
    86
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    87
(* unofficial theorem names *)
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    88
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    89
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
    90
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
    91
val has_name_hint = can the_name_hint;
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
    92
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
    93
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
    94
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
    95
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
    96
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    97
(* theorem groups *)
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    98
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
    99
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN;
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   100
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   101
fun put_group name =
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   102
  if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name));
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   103
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   104
fun group name = Thm.rule_attribute (K (put_group name));
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   105
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   106
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   107
(* theorem kinds *)
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   108
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   109
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
   110
b4e26fba2a1a added has_kind/get_kind;
wenzelm
parents: 22228
diff changeset
   111
val has_kind = can the_kind;
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   112
val get_kind = the_default "" o try the_kind;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   113
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   114
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
   115
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
   116
fun kind_internal x = kind Thm.internalK x;
23657
2332c79f4dc8 thm tag: Markup.property list;
wenzelm
parents: 22846
diff changeset
   117
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
   118
val is_internal = has_internal o Thm.get_tags;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   119
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   120
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   121
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   122
(*** stored facts ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   123
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   124
(** 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
   125
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   126
structure FactsData = TheoryDataFun
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
   127
(
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   128
  type T = Facts.T;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   129
  val empty = Facts.empty;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   130
  val copy = I;
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   131
  val extend = I;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   132
  fun merge _ = Facts.merge;
24713
8b3b6d09ef40 tuned functor application;
wenzelm
parents: 24434
diff changeset
   133
);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   134
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   135
val facts_of = FactsData.get;
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   136
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   137
val intern_fact = Facts.intern o facts_of;
26693
90d0b86644ac renamed check_fact to defined_fact;
wenzelm
parents: 26683
diff changeset
   138
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
   139
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   140
fun hide_fact fully name = FactsData.map (Facts.hide fully name);
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   141
6367
7f36b6fd3eb3 added cond_extern_thm_sg;
wenzelm
parents: 6350
diff changeset
   142
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   143
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   144
(** retrieve theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   145
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   146
fun get_fact context thy xthmref =
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   147
  let
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   148
    val xname = Facts.name_of_ref xthmref;
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   149
    val pos = Facts.pos_of_ref xthmref;
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   150
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   151
    val name = intern_fact thy xname;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   152
    val res = Facts.lookup context (facts_of thy) name;
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   153
    val _ = Theory.check_thy thy;
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   154
  in
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   155
    (case res of
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   156
      NONE => error ("Unknown fact " ^ quote name ^ Position.str_of pos)
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   157
    | SOME ths => Facts.select xthmref (map (Thm.transfer thy) ths))
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   158
  end;
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   159
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   160
fun get_thms thy = get_fact (Context.Theory thy) thy o Facts.named;
26344
04dacc6809b6 simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   161
fun get_thm thy name = Facts.the_single name (get_thms thy name);
4783
ca29125de4af added get_tthm(s), store_tthms(s);
wenzelm
parents: 4590
diff changeset
   162
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   163
fun all_thms_of thy =
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   164
  Facts.fold_static (fn (_, ths) => append (map (`(get_name_hint)) ths)) (facts_of thy) [];
16336
e3892698c57d thms_of no longer global;
wenzelm
parents: 16132
diff changeset
   165
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   166
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   167
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   168
(** store theorems **)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   169
21580
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   170
(* fact specifications *)
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   171
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   172
fun map_facts f = map (apsnd (map (apfst (map f))));
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   173
fun burrow_fact f = split_list #>> burrow f #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   174
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   175
ff8062cd41e9 added map/burrow_facts;
wenzelm
parents: 21567
diff changeset
   176
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   177
(* naming *)
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   178
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   179
fun name_multi name [x] = [(name, x)]
26457
wenzelm
parents: 26436
diff changeset
   180
  | name_multi "" xs = map (pair "") xs
wenzelm
parents: 26436
diff changeset
   181
  | name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs;
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   182
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   183
fun name_thm pre official name thm = thm
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   184
  |> (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
   185
  |> (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
   186
  |> 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
   187
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   188
fun name_thms pre official name xs =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   189
  map (uncurry (name_thm pre official)) (name_multi name xs);
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   190
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   191
fun name_thmss official name fact =
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   192
  burrow_fact (name_thms true official name) fact;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   193
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   194
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   195
(* enter_thms *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   196
18418
bf448d999b7e re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents: 18377
diff changeset
   197
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   198
  | enter_thms pre_name post_name app_att (bname, thms) thy =
7470
9f67ca1e03dc eliminated default_name (thms no longer stored for name "");
wenzelm
parents: 7405
diff changeset
   199
      let
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   200
        val naming = Sign.naming_of thy;
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   201
        val name = NameSpace.full naming bname;
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   202
        val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms));
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   203
        val thms'' = map (Thm.transfer thy') thms';
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   204
        val thy'' = thy' |> FactsData.map (Facts.add_global naming (name, thms''));
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   205
      in (thms'', thy'') end;
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   206
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   207
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   208
(* store_thm(s) *)
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   209
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   210
val store_thms = enter_thms (name_thms true true) (name_thms false true) I;
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   211
fun store_thm (name, th) = store_thms (name, [th]) #>> the_single;
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   212
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   213
fun store_thm_open (name, th) =
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   214
  enter_thms (name_thms true false) (name_thms false false) I (name, [th]) #>> the_single;
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   215
16023
66561f6814bd added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents: 15975
diff changeset
   216
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 6027
diff changeset
   217
(* add_thms(s) *)
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   218
16441
92a8a25e53c5 added theorem_space;
wenzelm
parents: 16336
diff changeset
   219
fun add_thms_atts pre_name ((bname, thms), atts) =
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   220
  enter_thms pre_name (name_thms false true)
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   221
    (foldl_map (Thm.theory_attributes atts)) (bname, thms);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   222
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   223
fun gen_add_thmss pre_name =
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   224
  fold_map (add_thms_atts pre_name);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   225
12235
5fa04fc9b254 Further restructuring of theorem naming functions.
berghofe
parents: 12138
diff changeset
   226
fun gen_add_thms pre_name args =
18377
0e1d025d57b3 oriented result pairs in PureThy
haftmann
parents: 18358
diff changeset
   227
  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
   228
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   229
val add_thmss = gen_add_thmss (name_thms true true);
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   230
val add_thms = gen_add_thms (name_thms true true);
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   231
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   232
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   233
(* add_thms_dynamic *)
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   234
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   235
fun add_thms_dynamic (bname, f) thy =
27198
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   236
  let val name = Sign.full_name thy bname
79e9bf691aed removed old theorem database;
wenzelm
parents: 26959
diff changeset
   237
  in thy |> FactsData.map (Facts.add_dynamic (Sign.naming_of thy) (name, f)) end;
26488
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   238
b497e3187ec7 eliminated destructive/critical theorem database;
wenzelm
parents: 26471
diff changeset
   239
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14384
diff changeset
   240
(* note_thmss(_i) *)
5907
4b9f4e310891 added default_name;
wenzelm
parents: 5871
diff changeset
   241
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   242
local
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   243
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   244
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
   245
  let
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18713
diff changeset
   246
    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
   247
    val (thms, thy') = thy |> enter_thms
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21606
diff changeset
   248
      (name_thmss true) (name_thms false true) (apsnd flat o foldl_map app)
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   249
      (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
   250
  in ((bname, thms), thy') end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   251
9192
df32cd0881b9 have_thmss: handle multiple lists of arguments;
wenzelm
parents: 9007
diff changeset
   252
in
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12695
diff changeset
   253
26683
849281658859 removed obsolete get_fact_silent;
wenzelm
parents: 26666
diff changeset
   254
fun note_thmss k = gen_note_thmss (fn thy => get_fact (Context.Theory thy) thy) (kind k);
25981
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   255
fun note_thmss_i k = gen_note_thmss (K I) (kind k);
870ae1d0452e added theorem group operations;
wenzelm
parents: 25598
diff changeset
   256
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
   257
21438
90dda96bca98 moved theorem kinds from PureThy to Thm;
wenzelm
parents: 20853
diff changeset
   258
end;
90dda96bca98 moved theorem kinds from PureThy to Thm;
wenzelm
parents: 20853
diff changeset
   259
25598
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   260
fun note kind (name, thm) =
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   261
  note_thmss_i kind [((name, []), [([thm], [])])]
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   262
  #>> (fn [(_, [thm])] => thm);
2f0b4544f4b3 added simple primitive note
haftmann
parents: 25018
diff changeset
   263
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   264
fun note_thmss_qualified k path facts thy =
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   265
  thy
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   266
  |> Sign.add_path path
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   267
  |> Sign.no_base_names
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   268
  |> note_thmss_i k facts
22796
34c316d7b630 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22363
diff changeset
   269
  ||> Sign.restore_naming thy;
18801
b913ce69660c moved theorem tags from Drule to PureThy;
wenzelm
parents: 18778
diff changeset
   270
5280
6055775a151b added store_tthm;
wenzelm
parents: 5210
diff changeset
   271
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   272
(* store axioms as theorems *)
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   273
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   274
local
17418
cd5d8b444d6e TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17342
diff changeset
   275
  fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name);
26655
750bab48223d moved forall_elim_var(s) to more_thm.ML;
wenzelm
parents: 26626
diff changeset
   276
  fun get_axs thy named_axs = map (Thm.forall_elim_vars 0 o get_ax thy) named_axs;
26553
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   277
  fun add_axm add = fold_map (fn ((name, ax), atts) => fn thy =>
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   278
    let
11998
b14e7686ce84 - enter_thmx -> enter_thms
berghofe
parents: 11631
diff changeset
   279
      val named_ax = [(name, ax)];
7753
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   280
      val thy' = add named_ax thy;
c9e7b053694a fixed naming of single axioms;
wenzelm
parents: 7485
diff changeset
   281
      val thm = hd (get_axs thy' named_ax);
26553
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   282
    in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end);
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   283
in
26553
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   284
  val add_axioms           = add_axm Theory.add_axioms;
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   285
  val add_axioms_i         = add_axm Theory.add_axioms_i;
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   286
  val add_defs             = add_axm o Theory.add_defs false;
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   287
  val add_defs_i           = add_axm o Theory.add_defs_i false;
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   288
  val add_defs_unchecked   = add_axm o Theory.add_defs true;
748631e95425 removed obsolete add_axiomss(_i);
wenzelm
parents: 26488
diff changeset
   289
  val add_defs_unchecked_i = add_axm o Theory.add_defs_i true;
4853
67bcbb03c235 tuned names of (add_)store_XXX functions;
wenzelm
parents: 4792
diff changeset
   290
end;
4022
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   291
0770a19c48d3 added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents: 4013
diff changeset
   292
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   293
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   294
(*** Pure theory syntax and logical content ***)
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   295
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   296
val typ = SimpleSyntax.read_typ;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   297
val term = SimpleSyntax.read_term;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   298
val prop = SimpleSyntax.read_prop;
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   299
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   300
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   301
(* application syntax variants *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   302
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   303
val appl_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   304
 [("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   305
  ("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))];
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   306
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   307
val applC_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   308
 [("",       typ "'a => cargs",                  Delimfix "_"),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   309
  ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   310
  ("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   311
  ("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))];
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   312
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   313
structure OldApplSyntax = TheoryDataFun
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   314
(
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   315
  type T = bool;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   316
  val empty = false;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   317
  val copy = I;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   318
  val extend = I;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   319
  fun merge _ (b1, b2) : T =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   320
    if b1 = b2 then b1
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   321
    else error "Cannot merge theories with different application syntax";
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   322
);
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   323
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   324
val old_appl_syntax = OldApplSyntax.get;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   325
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   326
val old_appl_syntax_setup =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   327
  OldApplSyntax.put true #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   328
  Sign.del_modesyntax_i Syntax.mode_default applC_syntax #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   329
  Sign.add_syntax_i appl_syntax;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   330
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   331
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   332
(* main content *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   333
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26457
diff changeset
   334
val _ = Context.>> (Context.map_theory
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   335
  (OldApplSyntax.init #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   336
   Sign.add_types
4922
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   337
   [("fun", 2, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   338
    ("prop", 0, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   339
    ("itself", 1, NoSyn),
03b81b6e1baa added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents: 4853
diff changeset
   340
    ("dummy", 0, NoSyn)]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   341
  #> Sign.add_nonterminals Syntax.basic_nonterms
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   342
  #> Sign.add_syntax_i
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   343
   [("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   344
    ("_abs",        typ "'a",                          NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   345
    ("",            typ "'a => args",                  Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   346
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   347
    ("",            typ "id => idt",                   Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   348
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   349
    ("_idtyp",      typ "id => type => idt",           Mixfix ("_::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   350
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   351
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   352
    ("",            typ "idt => idts",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   353
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   354
    ("",            typ "idt => pttrn",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   355
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   356
    ("_pttrns",     typ "pttrn => pttrns => pttrns",   Mixfix ("_/ _", [1, 0], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   357
    ("",            typ "id => aprop",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   358
    ("",            typ "longid => aprop",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   359
    ("",            typ "var => aprop",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   360
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   361
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   362
    ("_asm",        typ "prop => asms",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   363
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   364
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   365
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   366
    ("_mk_ofclass", typ "dummy",                       NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   367
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   368
    ("",            typ "id => logic",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   369
    ("",            typ "longid => logic",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   370
    ("",            typ "var => logic",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   371
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   372
    ("_constify",   typ "num => num_const",            Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   373
    ("_indexnum",   typ "num_const => index",          Delimfix "\\<^sub>_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   374
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   375
    ("_indexdefault", typ "index",                     Delimfix ""),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   376
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   377
    ("_struct",     typ "index => logic",              Mixfix ("\\<struct>_", [1000], 1000)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   378
    ("==>",         typ "prop => prop => prop",        Delimfix "op ==>"),
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   379
    (Term.dummy_patternN, typ "aprop",                 Delimfix "'_")]
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   380
  #> Sign.add_syntax_i applC_syntax
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   381
  #> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   382
   [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   383
    ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   384
    ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   385
    ("_constrain", typ "'a => type => 'a",     Mixfix ("_\\<Colon>_", [4, 0], 3)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   386
    ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   387
    ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   388
    ("_type_constraint_", typ "'a",            NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   389
    ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   390
    ("==",       typ "'a => 'a => prop",       InfixrName ("\\<equiv>", 2)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   391
    ("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   392
    ("==>",      typ "prop => prop => prop",   InfixrName ("\\<Longrightarrow>", 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   393
    ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   394
    ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   395
    ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   396
  #> Sign.add_modesyntax_i ("", false)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   397
   [("prop", typ "prop => prop", Mixfix ("_", [0], 0)),
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   398
    ("Pure.term", typ "'a => prop", Delimfix "TERM _"),
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   399
    ("Pure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))]
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   400
  #> Sign.add_modesyntax_i ("HTML", false)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   401
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   402
  #> Sign.add_consts_i
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   403
   [("==", typ "'a => 'a => prop", InfixrName ("==", 2)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   404
    ("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   405
    ("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   406
    ("prop", typ "prop => prop", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   407
    ("TYPE", typ "'a itself", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   408
    (Term.dummy_patternN, typ "'a", Delimfix "'_")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   409
  #> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   410
  #> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   411
  #> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   412
  #> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   413
  #> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   414
  #> Sign.add_trfuns Syntax.pure_trfuns
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   415
  #> Sign.add_trfunsT Syntax.pure_trfunsT
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   416
  #> Sign.local_path
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   417
  #> Sign.add_consts_i
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   418
   [("term", typ "'a => prop", NoSyn),
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   419
    ("conjunction", typ "prop => prop => prop", NoSyn)]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   420
  #> (add_defs_i false o map Thm.no_attributes)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   421
   [("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   422
    ("term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   423
    ("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   424
  #> Sign.hide_const false "Pure.conjunction"
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   425
  #> Sign.hide_const false "Pure.term"
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   426
  #> add_thmss [(("nothing", []), [])] #> snd
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26457
diff changeset
   427
  #> Theory.add_axioms_i Proofterm.equality_axms));
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   428
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   429
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   430