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