src/Pure/pure_thy.ML
author wenzelm
Thu, 03 Apr 2008 23:38:59 +0200
changeset 26553 748631e95425
parent 26488 b497e3187ec7
child 26626 c6231d64d264
permissions -rw-r--r--
removed obsolete add_axiomss(_i);
wenzelm@3987
     1
(*  Title:      Pure/pure_thy.ML
wenzelm@3987
     2
    ID:         $Id$
wenzelm@3987
     3
    Author:     Markus Wenzel, TU Muenchen
wenzelm@3987
     4
wenzelm@26430
     5
Theorem storage.  Pure theory syntax and logical content.
wenzelm@3987
     6
*)
wenzelm@3987
     7
wenzelm@3987
     8
signature PURE_THY =
wenzelm@3987
     9
sig
wenzelm@23657
    10
  val tag_rule: Markup.property -> thm -> thm
wenzelm@18801
    11
  val untag_rule: string -> thm -> thm
wenzelm@23657
    12
  val tag: Markup.property -> attribute
wenzelm@18801
    13
  val untag: string -> attribute
wenzelm@21964
    14
  val has_name_hint: thm -> bool
wenzelm@21646
    15
  val get_name_hint: thm -> string
wenzelm@21646
    16
  val put_name_hint: string -> thm -> thm
wenzelm@25981
    17
  val get_group: thm -> string option
wenzelm@25981
    18
  val put_group: string -> thm -> thm
wenzelm@25981
    19
  val group: string -> attribute
wenzelm@22251
    20
  val has_kind: thm -> bool
wenzelm@18801
    21
  val get_kind: thm -> string
wenzelm@18801
    22
  val kind_rule: string -> thm -> thm
wenzelm@18801
    23
  val kind: string -> attribute
wenzelm@18801
    24
  val kind_internal: attribute
wenzelm@23657
    25
  val has_internal: Markup.property list -> bool
wenzelm@18801
    26
  val is_internal: thm -> bool
wenzelm@26344
    27
  val get_fact: theory -> Facts.ref -> thm list
wenzelm@26344
    28
  val get_fact_silent: theory -> Facts.ref -> thm list
wenzelm@26344
    29
  val get_thms: theory -> xstring -> thm list
wenzelm@26344
    30
  val get_thm: theory -> xstring -> thm
wenzelm@17162
    31
  val theorems_of: theory -> thm list NameSpace.table
wenzelm@26282
    32
  val all_facts_of: theory -> Facts.T
wenzelm@16336
    33
  val thms_of: theory -> (string * thm) list
wenzelm@16336
    34
  val all_thms_of: theory -> (string * thm) list
wenzelm@12695
    35
  val hide_thms: bool -> string list -> theory -> theory
wenzelm@21580
    36
  val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
wenzelm@21567
    37
  val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
wenzelm@21580
    38
  val burrow_facts: ('a list -> 'b list) ->
wenzelm@21580
    39
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
wenzelm@21580
    40
  val name_multi: string -> 'a list -> (string * 'a) list
wenzelm@21646
    41
  val name_thm: bool -> bool -> string -> thm -> thm
wenzelm@21646
    42
  val name_thms: bool -> bool -> string -> thm list -> thm list
wenzelm@21646
    43
  val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list
wenzelm@26488
    44
  val store_thms: bstring * thm list -> theory -> thm list * theory
wenzelm@26488
    45
  val store_thm: bstring * thm -> theory -> thm * theory
wenzelm@26488
    46
  val store_thm_open: bstring * thm -> theory -> thm * theory
wenzelm@18728
    47
  val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory
wenzelm@24965
    48
  val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory
wenzelm@26488
    49
  val add_thms_dynamic: bstring * (Context.generic -> thm list) -> theory -> theory
haftmann@25598
    50
  val note: string -> string * thm -> theory -> thm * theory
wenzelm@18801
    51
  val note_thmss: string -> ((bstring * attribute list) *
wenzelm@26336
    52
    (Facts.ref * attribute list) list) list -> theory -> (bstring * thm list) list * theory
wenzelm@18801
    53
  val note_thmss_i: string -> ((bstring * attribute list) *
wenzelm@18801
    54
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
wenzelm@25981
    55
  val note_thmss_grouped: string -> string -> ((bstring * attribute list) *
wenzelm@25981
    56
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
wenzelm@18801
    57
  val note_thmss_qualified: string -> string -> ((bstring * attribute list) *
wenzelm@18728
    58
    (thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory
wenzelm@26488
    59
  val forall_elim_var: int -> thm -> thm
wenzelm@26488
    60
  val forall_elim_vars: int -> thm -> thm
wenzelm@18728
    61
  val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory
wenzelm@18728
    62
  val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory
wenzelm@18728
    63
  val add_defs: bool -> ((bstring * string) * attribute list) list ->
haftmann@18377
    64
    theory -> thm list * theory
wenzelm@18728
    65
  val add_defs_i: bool -> ((bstring * term) * attribute list) list ->
haftmann@18377
    66
    theory -> thm list * theory
wenzelm@19629
    67
  val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list ->
wenzelm@19629
    68
    theory -> thm list * theory
wenzelm@19629
    69
  val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list ->
wenzelm@19629
    70
    theory -> thm list * theory
wenzelm@3987
    71
end;
wenzelm@3987
    72
wenzelm@3987
    73
structure PureThy: PURE_THY =
wenzelm@3987
    74
struct
wenzelm@3987
    75
wenzelm@3987
    76
wenzelm@18801
    77
(*** theorem tags ***)
wenzelm@18801
    78
wenzelm@18801
    79
(* add / delete tags *)
wenzelm@18801
    80
wenzelm@21646
    81
fun tag_rule tg = Thm.map_tags (insert (op =) tg);
wenzelm@21646
    82
fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s'));
wenzelm@18801
    83
wenzelm@18801
    84
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x;
wenzelm@18801
    85
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x;
wenzelm@18801
    86
wenzelm@18801
    87
wenzelm@21646
    88
(* unofficial theorem names *)
wenzelm@21646
    89
wenzelm@23657
    90
fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN);
wenzelm@22251
    91
wenzelm@22251
    92
val has_name_hint = can the_name_hint;
wenzelm@22251
    93
val get_name_hint = the_default "??.unknown" o try the_name_hint;
wenzelm@21646
    94
wenzelm@23657
    95
fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name);
wenzelm@21964
    96
wenzelm@21646
    97
wenzelm@25981
    98
(* theorem groups *)
wenzelm@25981
    99
wenzelm@25981
   100
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN;
wenzelm@25981
   101
wenzelm@25981
   102
fun put_group name =
wenzelm@25981
   103
  if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name));
wenzelm@25981
   104
wenzelm@25981
   105
fun group name = Thm.rule_attribute (K (put_group name));
wenzelm@25981
   106
wenzelm@25981
   107
wenzelm@18801
   108
(* theorem kinds *)
wenzelm@18801
   109
wenzelm@23657
   110
fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN);
wenzelm@22251
   111
wenzelm@22251
   112
val has_kind = can the_kind;
wenzelm@25981
   113
val get_kind = the_default "" o try the_kind;
wenzelm@18801
   114
wenzelm@23657
   115
fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN;
wenzelm@18801
   116
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x;
wenzelm@22363
   117
fun kind_internal x = kind Thm.internalK x;
wenzelm@23657
   118
fun has_internal tags = exists (fn tg => tg = (Markup.kindN, Thm.internalK)) tags;
wenzelm@21646
   119
val is_internal = has_internal o Thm.get_tags;
wenzelm@18801
   120
wenzelm@18801
   121
wenzelm@18801
   122
wenzelm@4922
   123
(*** theorem database ***)
wenzelm@3987
   124
wenzelm@16441
   125
(** dataype theorems **)
wenzelm@3987
   126
wenzelm@26282
   127
datatype thms = Thms of
wenzelm@26282
   128
 {theorems: thm list NameSpace.table,   (* FIXME legacy *)
wenzelm@26282
   129
  all_facts: Facts.T};
wenzelm@26282
   130
wenzelm@26488
   131
fun make_thms (theorems, all_facts) = Thms {theorems = theorems, all_facts = all_facts};
wenzelm@26282
   132
wenzelm@16441
   133
structure TheoremsData = TheoryDataFun
wenzelm@24713
   134
(
wenzelm@26488
   135
  type T = thms;
wenzelm@26488
   136
  val empty = make_thms (NameSpace.empty_table, Facts.empty);
wenzelm@26488
   137
  val copy = I;
wenzelm@26488
   138
  fun extend (Thms {theorems = _, all_facts}) = make_thms (NameSpace.empty_table, all_facts);
wenzelm@26282
   139
  fun merge _
wenzelm@26488
   140
     (Thms {theorems = _, all_facts = all_facts1},
wenzelm@26488
   141
      Thms {theorems = _, all_facts = all_facts2}) =
wenzelm@26488
   142
    make_thms (NameSpace.empty_table, Facts.merge (all_facts1, all_facts2));
wenzelm@24713
   143
);
wenzelm@5005
   144
wenzelm@26488
   145
fun map_theorems f =
wenzelm@26488
   146
  TheoremsData.map (fn Thms {theorems, all_facts} => make_thms (f (theorems, all_facts)));
wenzelm@26430
   147
wenzelm@26488
   148
val get_theorems = (fn Thms args => args) o TheoremsData.get;
wenzelm@17162
   149
val theorems_of = #theorems o get_theorems;
wenzelm@26282
   150
val all_facts_of = #all_facts o get_theorems;
wenzelm@16023
   151
wenzelm@6367
   152
wenzelm@4022
   153
wenzelm@4022
   154
(** retrieve theorems **)
wenzelm@4022
   155
wenzelm@26292
   156
local
wenzelm@26292
   157
wenzelm@26292
   158
fun lookup_thms thy xname =
wenzelm@9564
   159
  let
wenzelm@16493
   160
    val (space, thms) = #theorems (get_theorems thy);
wenzelm@26292
   161
    val name = NameSpace.intern space xname;
wenzelm@26292
   162
  in Option.map (pair name) (Symtab.lookup thms name) end;
wenzelm@26292
   163
wenzelm@26292
   164
fun lookup_fact thy xname =
wenzelm@26292
   165
  let
wenzelm@26292
   166
    val facts = all_facts_of thy;
wenzelm@26292
   167
    val name = NameSpace.intern (Facts.space_of facts) xname;
wenzelm@26393
   168
  in Option.map (pair name) (Facts.lookup (Context.Theory thy) facts name) end;
wenzelm@26292
   169
wenzelm@26292
   170
fun show_result NONE = "none"
wenzelm@26292
   171
  | show_result (SOME (name, _)) = quote name;
wenzelm@26292
   172
wenzelm@26344
   173
fun get silent theory thmref =
wenzelm@26292
   174
  let
wenzelm@26336
   175
    val name = Facts.name_of_ref thmref;
wenzelm@26367
   176
    val pos = Facts.pos_of_ref thmref;
wenzelm@26292
   177
    val new_res = lookup_fact theory name;
wenzelm@26292
   178
    val old_res = get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory);
wenzelm@26488
   179
    val _ = Theory.check_thy theory;
wenzelm@26292
   180
    val is_same =
wenzelm@26292
   181
      (case (new_res, old_res) of
wenzelm@26292
   182
        (NONE, NONE) => true
wenzelm@26395
   183
      | (SOME (_, ths1), SOME (_, ths2)) => Thm.eq_thms (ths1, ths2)
wenzelm@26292
   184
      | _ => false);
wenzelm@26292
   185
    val _ =
wenzelm@26320
   186
      if is_same orelse silent then ()
wenzelm@26292
   187
      else legacy_feature ("Fact lookup differs from old-style thm database:\n" ^
wenzelm@26367
   188
        show_result new_res ^ " vs " ^ show_result old_res ^ Position.str_of pos);
wenzelm@26367
   189
  in
wenzelm@26367
   190
    (case old_res of
wenzelm@26367
   191
      NONE => error ("Unknown theorem(s) " ^ quote name ^ Position.str_of pos)
wenzelm@26367
   192
    | SOME (_, ths) => Facts.select thmref (map (Thm.transfer theory) ths))
wenzelm@26367
   193
  end;
wenzelm@3987
   194
wenzelm@26320
   195
in
wenzelm@26320
   196
wenzelm@26344
   197
val get_fact_silent = get true;
wenzelm@26344
   198
val get_fact = get false;
wenzelm@26344
   199
wenzelm@26361
   200
fun get_thms thy = get_fact thy o Facts.named;
wenzelm@26344
   201
fun get_thm thy name = Facts.the_single name (get_thms thy name);
wenzelm@4783
   202
wenzelm@26292
   203
end;
wenzelm@26292
   204
wenzelm@3987
   205
wenzelm@16336
   206
(* thms_of etc. *)
wenzelm@3987
   207
wenzelm@4022
   208
fun thms_of thy =
wenzelm@17162
   209
  let val thms = #2 (theorems_of thy)
wenzelm@21646
   210
  in map (`(get_name_hint)) (maps snd (Symtab.dest thms)) end;
wenzelm@4022
   211
wenzelm@19482
   212
fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy);
wenzelm@16336
   213
wenzelm@4022
   214
wenzelm@4022
   215
wenzelm@26488
   216
(** store theorems **)
wenzelm@3987
   217
wenzelm@16441
   218
(* hiding -- affects current theory node only *)
wenzelm@12695
   219
wenzelm@26488
   220
fun hide_thms fully names =
wenzelm@26488
   221
  map_theorems (fn ((space, thms), all_facts) =>
wenzelm@26488
   222
    let val space' = fold (NameSpace.hide fully) names space
wenzelm@26488
   223
    in ((space', thms), all_facts) end);
wenzelm@12695
   224
wenzelm@12695
   225
wenzelm@21580
   226
(* fact specifications *)
wenzelm@21580
   227
wenzelm@21580
   228
fun map_facts f = map (apsnd (map (apfst (map f))));
wenzelm@21580
   229
fun burrow_fact f = split_list #>> burrow f #> op ~~;
wenzelm@21580
   230
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
wenzelm@21580
   231
wenzelm@21580
   232
wenzelm@4853
   233
(* naming *)
wenzelm@4853
   234
wenzelm@18801
   235
fun name_multi name [x] = [(name, x)]
wenzelm@26457
   236
  | name_multi "" xs = map (pair "") xs
wenzelm@26457
   237
  | name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs;
berghofe@12235
   238
wenzelm@21646
   239
fun name_thm pre official name thm = thm
wenzelm@21646
   240
  |> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name)
wenzelm@26050
   241
  |> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name)
wenzelm@26050
   242
  |> Thm.map_tags (Position.default_properties (Position.thread_data ()));
berghofe@12872
   243
wenzelm@21646
   244
fun name_thms pre official name xs =
wenzelm@21646
   245
  map (uncurry (name_thm pre official)) (name_multi name xs);
berghofe@12235
   246
wenzelm@21646
   247
fun name_thmss official name fact =
wenzelm@21646
   248
  burrow_fact (name_thms true official name) fact;
wenzelm@4853
   249
wenzelm@4853
   250
berghofe@11998
   251
(* enter_thms *)
wenzelm@4853
   252
wenzelm@26488
   253
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap
wenzelm@26488
   254
  | enter_thms pre_name post_name app_att (bname, thms) thy =
wenzelm@26488
   255
      let
wenzelm@26488
   256
        val naming = Sign.naming_of thy;
wenzelm@26488
   257
        val name = NameSpace.full naming bname;
wenzelm@26488
   258
        val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms));
wenzelm@26488
   259
        val thms'' = map (Thm.transfer thy') thms';
wenzelm@26488
   260
        val thy'' = thy' |> map_theorems (fn ((space, theorems), all_facts) =>
wenzelm@26488
   261
          let
wenzelm@26488
   262
            val space' = NameSpace.declare naming name space;
wenzelm@26488
   263
            val theorems' = Symtab.update (name, thms'') theorems;
wenzelm@26488
   264
            val all_facts' = Facts.add_global naming (name, thms'') all_facts;
wenzelm@26488
   265
          in ((space', theorems'), all_facts') end);
wenzelm@26488
   266
      in (thms'', thy'') end;
wenzelm@5933
   267
wenzelm@26488
   268
wenzelm@26488
   269
(* store_thm(s) *)
wenzelm@26488
   270
wenzelm@26488
   271
val store_thms = enter_thms (name_thms true true) (name_thms false true) I;
wenzelm@26488
   272
fun store_thm (name, th) = store_thms (name, [th]) #>> the_single;
wenzelm@26488
   273
wenzelm@26488
   274
fun store_thm_open (name, th) =
wenzelm@26488
   275
  enter_thms (name_thms true false) (name_thms false false) I (name, [th]) #>> the_single;
wenzelm@3987
   276
wenzelm@16023
   277
wenzelm@6091
   278
(* add_thms(s) *)
wenzelm@3987
   279
wenzelm@16441
   280
fun add_thms_atts pre_name ((bname, thms), atts) =
wenzelm@21646
   281
  enter_thms pre_name (name_thms false true)
wenzelm@21646
   282
    (foldl_map (Thm.theory_attributes atts)) (bname, thms);
wenzelm@3987
   283
haftmann@18377
   284
fun gen_add_thmss pre_name =
haftmann@18377
   285
  fold_map (add_thms_atts pre_name);
wenzelm@5907
   286
berghofe@12235
   287
fun gen_add_thms pre_name args =
haftmann@18377
   288
  apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args);
berghofe@12235
   289
wenzelm@21646
   290
val add_thmss = gen_add_thmss (name_thms true true);
wenzelm@21646
   291
val add_thms = gen_add_thms (name_thms true true);
wenzelm@5907
   292
wenzelm@5907
   293
wenzelm@26488
   294
(* add_thms_dynamic *)
wenzelm@26488
   295
wenzelm@26488
   296
fun add_thms_dynamic (bname, f) thy =
wenzelm@26488
   297
  let
wenzelm@26488
   298
    val name = Sign.full_name thy bname;
wenzelm@26488
   299
    val thy' = thy |> map_theorems (fn (theorems, all_facts) =>
wenzelm@26488
   300
      (theorems, Facts.add_dynamic (Sign.naming_of thy) (name, f) all_facts));
wenzelm@26488
   301
  in thy' end;
wenzelm@26488
   302
wenzelm@26488
   303
wenzelm@14564
   304
(* note_thmss(_i) *)
wenzelm@5907
   305
wenzelm@9192
   306
local
wenzelm@12711
   307
wenzelm@25981
   308
fun gen_note_thmss get tag = fold_map (fn ((bname, more_atts), ths_atts) => fn thy =>
wenzelm@12711
   309
  let
wenzelm@18728
   310
    fun app (x, (ths, atts)) = foldl_map (Thm.theory_attributes atts) (x, ths);
haftmann@18418
   311
    val (thms, thy') = thy |> enter_thms
wenzelm@21646
   312
      (name_thmss true) (name_thms false true) (apsnd flat o foldl_map app)
wenzelm@25981
   313
      (bname, map (fn (ths, atts) => (get thy ths, surround tag (atts @ more_atts))) ths_atts);
wenzelm@18801
   314
  in ((bname, thms), thy') end);
wenzelm@12711
   315
wenzelm@9192
   316
in
wenzelm@12711
   317
wenzelm@26344
   318
fun note_thmss k = gen_note_thmss get_fact (kind k);
wenzelm@25981
   319
fun note_thmss_i k = gen_note_thmss (K I) (kind k);
wenzelm@25981
   320
fun note_thmss_grouped k g = gen_note_thmss (K I) (kind k #> group g);
wenzelm@12711
   321
wenzelm@21438
   322
end;
wenzelm@21438
   323
haftmann@25598
   324
fun note kind (name, thm) =
haftmann@25598
   325
  note_thmss_i kind [((name, []), [([thm], [])])]
haftmann@25598
   326
  #>> (fn [(_, [thm])] => thm);
haftmann@25598
   327
wenzelm@18801
   328
fun note_thmss_qualified k path facts thy =
wenzelm@18801
   329
  thy
wenzelm@22796
   330
  |> Sign.add_path path
wenzelm@22796
   331
  |> Sign.no_base_names
wenzelm@18801
   332
  |> note_thmss_i k facts
wenzelm@22796
   333
  ||> Sign.restore_naming thy;
wenzelm@18801
   334
wenzelm@5280
   335
wenzelm@16722
   336
(* forall_elim_var(s) -- belongs to drule.ML *)
wenzelm@7899
   337
wenzelm@16722
   338
fun forall_elim_vars_aux strip_vars i th =
wenzelm@16722
   339
  let
wenzelm@16722
   340
    val {thy, tpairs, prop, ...} = Thm.rep_thm th;
haftmann@16787
   341
    val add_used = Term.fold_aterms
haftmann@20853
   342
      (fn Var ((x, j), _) => if i = j then insert (op =) x else I | _ => I);
wenzelm@16722
   343
    val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []);
wenzelm@16722
   344
    val vars = strip_vars prop;
wenzelm@20071
   345
    val cvars = (Name.variant_list used (map #1 vars), vars)
wenzelm@16722
   346
      |> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T)));
wenzelm@16722
   347
  in fold Thm.forall_elim cvars th end;
wenzelm@7899
   348
wenzelm@16722
   349
val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars;
wenzelm@16722
   350
wenzelm@16722
   351
fun forall_elim_var i th = forall_elim_vars_aux
wenzelm@16722
   352
  (fn Const ("all", _) $ Abs (a, T, _) => [(a, T)]
wenzelm@16722
   353
  | _ => raise THM ("forall_elim_vars", i, [th])) i th;
wenzelm@7899
   354
wenzelm@7899
   355
wenzelm@4022
   356
(* store axioms as theorems *)
wenzelm@4022
   357
wenzelm@4853
   358
local
wenzelm@17418
   359
  fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name);
wenzelm@17418
   360
  fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs;
wenzelm@26553
   361
  fun add_axm add = fold_map (fn ((name, ax), atts) => fn thy =>
wenzelm@4853
   362
    let
berghofe@11998
   363
      val named_ax = [(name, ax)];
wenzelm@7753
   364
      val thy' = add named_ax thy;
wenzelm@7753
   365
      val thm = hd (get_axs thy' named_ax);
wenzelm@26553
   366
    in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end);
wenzelm@4853
   367
in
wenzelm@26553
   368
  val add_axioms           = add_axm Theory.add_axioms;
wenzelm@26553
   369
  val add_axioms_i         = add_axm Theory.add_axioms_i;
wenzelm@26553
   370
  val add_defs             = add_axm o Theory.add_defs false;
wenzelm@26553
   371
  val add_defs_i           = add_axm o Theory.add_defs_i false;
wenzelm@26553
   372
  val add_defs_unchecked   = add_axm o Theory.add_defs true;
wenzelm@26553
   373
  val add_defs_unchecked_i = add_axm o Theory.add_defs_i true;
wenzelm@4853
   374
end;
wenzelm@4022
   375
wenzelm@4022
   376
wenzelm@3987
   377
wenzelm@26430
   378
(*** Pure theory syntax and logical content ***)
wenzelm@3987
   379
wenzelm@24243
   380
val typ = SimpleSyntax.read_typ;
wenzelm@24243
   381
val term = SimpleSyntax.read_term;
wenzelm@24243
   382
val prop = SimpleSyntax.read_prop;
wenzelm@24243
   383
wenzelm@26463
   384
val _ = Context.>> (Context.map_theory
wenzelm@26430
   385
  (Sign.add_types
wenzelm@4922
   386
   [("fun", 2, NoSyn),
wenzelm@4922
   387
    ("prop", 0, NoSyn),
wenzelm@4922
   388
    ("itself", 1, NoSyn),
wenzelm@4922
   389
    ("dummy", 0, NoSyn)]
wenzelm@26430
   390
  #> Sign.add_nonterminals Syntax.basic_nonterms
wenzelm@26430
   391
  #> Sign.add_syntax_i
wenzelm@26436
   392
   [("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
wenzelm@26436
   393
    ("_abs",        typ "'a",                          NoSyn),
wenzelm@26436
   394
    ("",            typ "'a => args",                  Delimfix "_"),
wenzelm@26436
   395
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
wenzelm@26436
   396
    ("",            typ "id => idt",                   Delimfix "_"),
wenzelm@26436
   397
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
wenzelm@26436
   398
    ("_idtyp",      typ "id => type => idt",           Mixfix ("_::_", [], 0)),
wenzelm@26436
   399
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
wenzelm@26436
   400
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
wenzelm@26436
   401
    ("",            typ "idt => idts",                 Delimfix "_"),
wenzelm@26436
   402
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
wenzelm@26436
   403
    ("",            typ "idt => pttrn",                Delimfix "_"),
wenzelm@26436
   404
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
wenzelm@26436
   405
    ("_pttrns",     typ "pttrn => pttrns => pttrns",   Mixfix ("_/ _", [1, 0], 0)),
wenzelm@26436
   406
    ("",            typ "id => aprop",                 Delimfix "_"),
wenzelm@26436
   407
    ("",            typ "longid => aprop",             Delimfix "_"),
wenzelm@26436
   408
    ("",            typ "var => aprop",                Delimfix "_"),
wenzelm@26436
   409
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
wenzelm@26436
   410
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
wenzelm@26436
   411
    ("_asm",        typ "prop => asms",                Delimfix "_"),
wenzelm@26436
   412
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
wenzelm@26436
   413
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
wenzelm@26436
   414
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
wenzelm@26436
   415
    ("_mk_ofclass", typ "dummy",                       NoSyn),
wenzelm@26436
   416
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
wenzelm@26436
   417
    ("",            typ "id => logic",                 Delimfix "_"),
wenzelm@26436
   418
    ("",            typ "longid => logic",             Delimfix "_"),
wenzelm@26436
   419
    ("",            typ "var => logic",                Delimfix "_"),
wenzelm@26436
   420
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
wenzelm@26436
   421
    ("_constify",   typ "num => num_const",            Delimfix "_"),
wenzelm@26436
   422
    ("_indexnum",   typ "num_const => index",          Delimfix "\\<^sub>_"),
wenzelm@26436
   423
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
wenzelm@26436
   424
    ("_indexdefault", typ "index",                     Delimfix ""),
wenzelm@26436
   425
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
wenzelm@26436
   426
    ("_struct",     typ "index => logic",              Mixfix ("\\<struct>_", [1000], 1000)),
wenzelm@26436
   427
    ("==>",         typ "prop => prop => prop",        Delimfix "op ==>"),
wenzelm@26436
   428
    (Term.dummy_patternN, typ "aprop",                 Delimfix "'_"),
wenzelm@26436
   429
    ("_appl",       typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
wenzelm@26436
   430
    ("_appl",       typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))]
wenzelm@26430
   431
  #> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
wenzelm@24243
   432
   [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
wenzelm@24243
   433
    ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
wenzelm@24243
   434
    ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
wenzelm@24243
   435
    ("_constrain", typ "'a => type => 'a",     Mixfix ("_\\<Colon>_", [4, 0], 3)),
wenzelm@24243
   436
    ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
wenzelm@24243
   437
    ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
wenzelm@24243
   438
    ("_type_constraint_", typ "'a",            NoSyn),
wenzelm@24243
   439
    ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
wenzelm@24243
   440
    ("==",       typ "'a => 'a => prop",       InfixrName ("\\<equiv>", 2)),
wenzelm@24243
   441
    ("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
wenzelm@24243
   442
    ("==>",      typ "prop => prop => prop",   InfixrName ("\\<Longrightarrow>", 1)),
wenzelm@24243
   443
    ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
wenzelm@24243
   444
    ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
wenzelm@24243
   445
    ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
wenzelm@26430
   446
  #> Sign.add_modesyntax_i ("", false)
wenzelm@24243
   447
   [("prop", typ "prop => prop", Mixfix ("_", [0], 0)),
wenzelm@26430
   448
    ("Pure.term", typ "'a => prop", Delimfix "TERM _"),
wenzelm@26430
   449
    ("Pure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))]
wenzelm@26430
   450
  #> Sign.add_modesyntax_i ("HTML", false)
wenzelm@24243
   451
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
wenzelm@26430
   452
  #> Sign.add_consts_i
wenzelm@24243
   453
   [("==", typ "'a => 'a => prop", InfixrName ("==", 2)),
wenzelm@24243
   454
    ("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
wenzelm@24243
   455
    ("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
wenzelm@24243
   456
    ("prop", typ "prop => prop", NoSyn),
wenzelm@24243
   457
    ("TYPE", typ "'a itself", NoSyn),
wenzelm@24243
   458
    (Term.dummy_patternN, typ "'a", Delimfix "'_")]
wenzelm@26430
   459
  #> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
wenzelm@26430
   460
  #> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
wenzelm@26430
   461
  #> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
wenzelm@26430
   462
  #> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
wenzelm@26430
   463
  #> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
wenzelm@26430
   464
  #> Sign.add_trfuns Syntax.pure_trfuns
wenzelm@26430
   465
  #> Sign.add_trfunsT Syntax.pure_trfunsT
wenzelm@26430
   466
  #> Sign.local_path
wenzelm@26430
   467
  #> Sign.add_consts_i
wenzelm@24243
   468
   [("term", typ "'a => prop", NoSyn),
wenzelm@24243
   469
    ("conjunction", typ "prop => prop => prop", NoSyn)]
wenzelm@26430
   470
  #> (add_defs_i false o map Thm.no_attributes)
wenzelm@24243
   471
   [("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
wenzelm@26430
   472
    ("term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
wenzelm@26430
   473
    ("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
wenzelm@26430
   474
  #> Sign.hide_consts false ["conjunction", "term"]
wenzelm@26430
   475
  #> add_thmss [(("nothing", []), [])] #> snd
wenzelm@26463
   476
  #> Theory.add_axioms_i Proofterm.equality_axms));
wenzelm@3987
   477
wenzelm@5091
   478
end;
wenzelm@5091
   479