src/Pure/pure_thy.ML
author wenzelm
Thu, 04 Dec 2008 23:02:52 +0100
changeset 28977 08990d02211f
parent 28939 128459bd72d2
child 28981 c9cf71e161b9
permissions -rw-r--r--
renamed type Lazy.T to lazy;
force_proofs: original order;
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@27198
    10
  val facts_of: theory -> Facts.T
wenzelm@26666
    11
  val intern_fact: theory -> xstring -> string
wenzelm@26693
    12
  val defined_fact: theory -> string -> bool
wenzelm@27198
    13
  val hide_fact: bool -> string -> theory -> theory
wenzelm@28841
    14
  val force_proofs: theory -> unit
wenzelm@26683
    15
  val get_fact: Context.generic -> theory -> Facts.ref -> thm list
wenzelm@26344
    16
  val get_thms: theory -> xstring -> thm list
wenzelm@26344
    17
  val get_thm: theory -> xstring -> thm
wenzelm@16336
    18
  val all_thms_of: theory -> (string * thm) list
wenzelm@21580
    19
  val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
wenzelm@21567
    20
  val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list
wenzelm@21580
    21
  val burrow_facts: ('a list -> 'b list) ->
wenzelm@21580
    22
    ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list
wenzelm@21580
    23
  val name_multi: string -> 'a list -> (string * 'a) list
wenzelm@28076
    24
  val name_thm: bool -> bool -> Position.T -> string -> thm -> thm
wenzelm@28076
    25
  val name_thms: bool -> bool -> Position.T -> string -> thm list -> thm list
wenzelm@28076
    26
  val name_thmss: bool -> Position.T -> string -> (thm list * 'a) list -> (thm list * 'a) list
wenzelm@26488
    27
  val store_thms: bstring * thm list -> theory -> thm list * theory
wenzelm@26488
    28
  val store_thm: bstring * thm -> theory -> thm * theory
wenzelm@26488
    29
  val store_thm_open: bstring * thm -> theory -> thm * theory
haftmann@27691
    30
  val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory
haftmann@27683
    31
  val add_thm: (bstring * thm) * attribute list -> theory -> thm * theory
wenzelm@24965
    32
  val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory
wenzelm@26488
    33
  val add_thms_dynamic: bstring * (Context.generic -> thm list) -> theory -> theory
wenzelm@28076
    34
  val note_thmss: string -> ((Name.binding * attribute list) *
wenzelm@28076
    35
    (thm list * attribute list) list) list -> theory -> (string * thm list) list * theory
wenzelm@28076
    36
  val note_thmss_grouped: string -> string -> ((Name.binding * attribute list) *
wenzelm@28076
    37
    (thm list * attribute list) list) list -> theory -> (string * thm list) list * theory
haftmann@27691
    38
  val add_axioms: ((bstring * term) * attribute list) list -> theory -> thm list * theory
haftmann@27691
    39
  val add_axioms_cmd: ((bstring * string) * attribute list) list -> theory -> thm list * theory
haftmann@27691
    40
  val add_defs: bool -> ((bstring * term) * attribute list) list ->
haftmann@18377
    41
    theory -> thm list * theory
haftmann@27691
    42
  val add_defs_unchecked: bool -> ((bstring * term) * attribute list) list ->
haftmann@18377
    43
    theory -> thm list * theory
haftmann@27691
    44
  val add_defs_unchecked_cmd: bool -> ((bstring * string) * attribute list) list ->
wenzelm@19629
    45
    theory -> thm list * theory
haftmann@27691
    46
  val add_defs_cmd: bool -> ((bstring * string) * attribute list) list ->
wenzelm@19629
    47
    theory -> thm list * theory
wenzelm@26959
    48
  val old_appl_syntax: theory -> bool
wenzelm@26959
    49
  val old_appl_syntax_setup: theory -> theory
wenzelm@3987
    50
end;
wenzelm@3987
    51
wenzelm@3987
    52
structure PureThy: PURE_THY =
wenzelm@3987
    53
struct
wenzelm@3987
    54
wenzelm@3987
    55
wenzelm@27198
    56
(*** stored facts ***)
wenzelm@3987
    57
wenzelm@27198
    58
(** theory data **)
wenzelm@3987
    59
wenzelm@27198
    60
structure FactsData = TheoryDataFun
wenzelm@24713
    61
(
wenzelm@28977
    62
  type T = Facts.T * unit lazy list;
wenzelm@28841
    63
  val empty = (Facts.empty, []);
wenzelm@26488
    64
  val copy = I;
wenzelm@28841
    65
  fun extend (facts, _) = (facts, []);
wenzelm@28841
    66
  fun merge _ ((facts1, _), (facts2, _)) = (Facts.merge (facts1, facts2), []);
wenzelm@24713
    67
);
wenzelm@5005
    68
wenzelm@28841
    69
wenzelm@28841
    70
(* facts *)
wenzelm@28841
    71
wenzelm@28841
    72
val facts_of = #1 o FactsData.get;
wenzelm@26666
    73
wenzelm@26666
    74
val intern_fact = Facts.intern o facts_of;
wenzelm@26693
    75
val defined_fact = Facts.defined o facts_of;
wenzelm@16023
    76
wenzelm@28841
    77
fun hide_fact fully name = FactsData.map (apfst (Facts.hide fully name));
wenzelm@28841
    78
wenzelm@28841
    79
wenzelm@28841
    80
(* proofs *)
wenzelm@28841
    81
wenzelm@28841
    82
fun lazy_proof thm = Lazy.lazy (fn () => Thm.force_proof thm);
wenzelm@28977
    83
wenzelm@28977
    84
fun force_proofs thy =
wenzelm@28977
    85
  ignore (Exn.release_all (map (Exn.capture Lazy.force) (rev (#2 (FactsData.get thy)))));
wenzelm@27198
    86
wenzelm@6367
    87
wenzelm@4022
    88
wenzelm@4022
    89
(** retrieve theorems **)
wenzelm@4022
    90
wenzelm@27198
    91
fun get_fact context thy xthmref =
wenzelm@26683
    92
  let
wenzelm@26683
    93
    val xname = Facts.name_of_ref xthmref;
wenzelm@26683
    94
    val pos = Facts.pos_of_ref xthmref;
wenzelm@27198
    95
wenzelm@27198
    96
    val name = intern_fact thy xname;
wenzelm@27198
    97
    val res = Facts.lookup context (facts_of thy) name;
wenzelm@27198
    98
    val _ = Theory.check_thy thy;
wenzelm@26683
    99
  in
wenzelm@27198
   100
    (case res of
wenzelm@27198
   101
      NONE => error ("Unknown fact " ^ quote name ^ Position.str_of pos)
wenzelm@27739
   102
    | SOME (static, ths) =>
wenzelm@27739
   103
        (Position.report ((if static then Markup.fact else Markup.dynamic_fact) name) pos;
wenzelm@27739
   104
         Facts.select xthmref (map (Thm.transfer thy) ths)))
wenzelm@26683
   105
  end;
wenzelm@26344
   106
wenzelm@26683
   107
fun get_thms thy = get_fact (Context.Theory thy) thy o Facts.named;
wenzelm@26344
   108
fun get_thm thy name = Facts.the_single name (get_thms thy name);
wenzelm@4783
   109
wenzelm@27198
   110
fun all_thms_of thy =
wenzelm@27865
   111
  Facts.fold_static (fn (_, ths) => append (map (`(Thm.get_name_hint)) ths)) (facts_of thy) [];
wenzelm@16336
   112
wenzelm@4022
   113
wenzelm@4022
   114
wenzelm@26488
   115
(** store theorems **)
wenzelm@3987
   116
wenzelm@21580
   117
(* fact specifications *)
wenzelm@21580
   118
wenzelm@21580
   119
fun map_facts f = map (apsnd (map (apfst (map f))));
wenzelm@21580
   120
fun burrow_fact f = split_list #>> burrow f #> op ~~;
wenzelm@21580
   121
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~;
wenzelm@21580
   122
wenzelm@21580
   123
wenzelm@4853
   124
(* naming *)
wenzelm@4853
   125
wenzelm@18801
   126
fun name_multi name [x] = [(name, x)]
wenzelm@26457
   127
  | name_multi "" xs = map (pair "") xs
wenzelm@26457
   128
  | name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs;
berghofe@12235
   129
wenzelm@28076
   130
fun name_thm pre official pos name thm = thm
wenzelm@21646
   131
  |> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name)
wenzelm@27865
   132
  |> (if Thm.has_name_hint thm andalso pre orelse name = "" then I else Thm.put_name_hint name)
wenzelm@28076
   133
  |> Thm.default_position pos
wenzelm@27865
   134
  |> Thm.default_position (Position.thread_data ());
berghofe@12872
   135
wenzelm@28076
   136
fun name_thms pre official pos name xs =
wenzelm@28076
   137
  map (uncurry (name_thm pre official pos)) (name_multi name xs);
berghofe@12235
   138
wenzelm@28076
   139
fun name_thmss official pos name fact =
wenzelm@28076
   140
  burrow_fact (name_thms true official pos name) fact;
wenzelm@4853
   141
wenzelm@4853
   142
berghofe@11998
   143
(* enter_thms *)
wenzelm@4853
   144
wenzelm@28841
   145
fun enter_proofs (thy, thms) =
wenzelm@28841
   146
  (FactsData.map (apsnd (fold (cons o lazy_proof) thms)) thy, thms);
wenzelm@28841
   147
haftmann@28861
   148
fun enter_thms pre_name post_name app_att (b, thms) thy =
haftmann@28939
   149
  if Binding.is_nothing b
haftmann@28861
   150
  then swap (enter_proofs (app_att (thy, thms)))
haftmann@28861
   151
  else let
haftmann@28861
   152
    val naming = Sign.naming_of thy;
haftmann@28861
   153
    val name = NameSpace.full_binding naming b;
haftmann@28861
   154
    val (thy', thms') =
haftmann@28861
   155
      enter_proofs (apsnd (post_name name) (app_att (thy, pre_name name thms)));
haftmann@28861
   156
    val thms'' = map (Thm.transfer thy') thms';
haftmann@28864
   157
    val thy'' = thy' |> (FactsData.map o apfst) (Facts.add_global naming (b, thms'') #> snd);
haftmann@28861
   158
  in (thms'', thy'') end;
wenzelm@5933
   159
wenzelm@26488
   160
wenzelm@26488
   161
(* store_thm(s) *)
wenzelm@26488
   162
haftmann@28861
   163
fun store_thms (bname, thms) = enter_thms (name_thms true true Position.none)
haftmann@28861
   164
  (name_thms false true Position.none) I (Name.binding bname, thms);
wenzelm@28076
   165
haftmann@28861
   166
fun store_thm (bname, th) = store_thms (bname, [th]) #>> the_single;
wenzelm@26488
   167
haftmann@28861
   168
fun store_thm_open (bname, th) =
wenzelm@28076
   169
  enter_thms (name_thms true false Position.none) (name_thms false false Position.none) I
haftmann@28861
   170
    (Name.binding bname, [th]) #>> the_single;
wenzelm@3987
   171
wenzelm@16023
   172
wenzelm@6091
   173
(* add_thms(s) *)
wenzelm@3987
   174
wenzelm@16441
   175
fun add_thms_atts pre_name ((bname, thms), atts) =
wenzelm@28076
   176
  enter_thms pre_name (name_thms false true Position.none)
haftmann@28861
   177
    (foldl_map (Thm.theory_attributes atts)) (Name.binding bname, thms);
wenzelm@3987
   178
haftmann@18377
   179
fun gen_add_thmss pre_name =
haftmann@18377
   180
  fold_map (add_thms_atts pre_name);
wenzelm@5907
   181
berghofe@12235
   182
fun gen_add_thms pre_name args =
haftmann@18377
   183
  apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args);
berghofe@12235
   184
wenzelm@28076
   185
val add_thmss = gen_add_thmss (name_thms true true Position.none);
wenzelm@28076
   186
val add_thms = gen_add_thms (name_thms true true Position.none);
haftmann@27683
   187
val add_thm = yield_singleton add_thms;
wenzelm@5907
   188
wenzelm@5907
   189
wenzelm@26488
   190
(* add_thms_dynamic *)
wenzelm@26488
   191
haftmann@28864
   192
fun add_thms_dynamic (bname, f) thy = thy
haftmann@28864
   193
  |> (FactsData.map o apfst)
haftmann@28864
   194
      (Facts.add_dynamic (Sign.naming_of thy) (Name.binding bname, f) #> snd);
wenzelm@26488
   195
wenzelm@26488
   196
wenzelm@27728
   197
(* note_thmss *)
wenzelm@5907
   198
wenzelm@9192
   199
local
wenzelm@12711
   200
haftmann@28861
   201
fun gen_note_thmss tag = fold_map (fn ((b, more_atts), ths_atts) => fn thy =>
wenzelm@12711
   202
  let
haftmann@28939
   203
    val pos = Binding.pos_of b;
haftmann@28861
   204
    val name = Sign.full_binding thy b;
wenzelm@28076
   205
    val _ = Position.report (Markup.fact_decl name) pos;
wenzelm@28076
   206
wenzelm@18728
   207
    fun app (x, (ths, atts)) = foldl_map (Thm.theory_attributes atts) (x, ths);
haftmann@18418
   208
    val (thms, thy') = thy |> enter_thms
wenzelm@28076
   209
      (name_thmss true pos) (name_thms false true pos) (apsnd flat o foldl_map app)
haftmann@28861
   210
      (b, map (fn (ths, atts) => (ths, surround tag (atts @ more_atts))) ths_atts);
wenzelm@28076
   211
  in ((name, thms), thy') end);
wenzelm@12711
   212
wenzelm@9192
   213
in
wenzelm@12711
   214
wenzelm@27865
   215
fun note_thmss k = gen_note_thmss (Thm.kind k);
wenzelm@27865
   216
fun note_thmss_grouped k g = gen_note_thmss (Thm.kind k #> Thm.group g);
wenzelm@12711
   217
wenzelm@21438
   218
end;
wenzelm@21438
   219
wenzelm@5280
   220
wenzelm@4022
   221
(* store axioms as theorems *)
wenzelm@4022
   222
wenzelm@4853
   223
local
wenzelm@28674
   224
  fun get_ax thy (name, _) = Thm.axiom thy (Sign.full_name thy name);
wenzelm@26655
   225
  fun get_axs thy named_axs = map (Thm.forall_elim_vars 0 o get_ax thy) named_axs;
wenzelm@26553
   226
  fun add_axm add = fold_map (fn ((name, ax), atts) => fn thy =>
wenzelm@4853
   227
    let
berghofe@11998
   228
      val named_ax = [(name, ax)];
wenzelm@7753
   229
      val thy' = add named_ax thy;
wenzelm@7753
   230
      val thm = hd (get_axs thy' named_ax);
wenzelm@26553
   231
    in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end);
wenzelm@4853
   232
in
haftmann@27691
   233
  val add_defs               = add_axm o Theory.add_defs_i false;
haftmann@27691
   234
  val add_defs_unchecked     = add_axm o Theory.add_defs_i true;
haftmann@27691
   235
  val add_axioms             = add_axm Theory.add_axioms_i;
haftmann@27691
   236
  val add_defs_cmd           = add_axm o Theory.add_defs false;
haftmann@27691
   237
  val add_defs_unchecked_cmd = add_axm o Theory.add_defs true;
haftmann@27691
   238
  val add_axioms_cmd         = add_axm Theory.add_axioms;
wenzelm@4853
   239
end;
wenzelm@4022
   240
wenzelm@4022
   241
wenzelm@3987
   242
wenzelm@26430
   243
(*** Pure theory syntax and logical content ***)
wenzelm@3987
   244
wenzelm@24243
   245
val typ = SimpleSyntax.read_typ;
wenzelm@24243
   246
val term = SimpleSyntax.read_term;
wenzelm@24243
   247
val prop = SimpleSyntax.read_prop;
wenzelm@24243
   248
wenzelm@28856
   249
val typeT = Syntax.typeT;
wenzelm@28856
   250
val spropT = Syntax.spropT;
wenzelm@28856
   251
wenzelm@26959
   252
wenzelm@26959
   253
(* application syntax variants *)
wenzelm@26959
   254
wenzelm@26959
   255
val appl_syntax =
wenzelm@26959
   256
 [("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)),
wenzelm@26959
   257
  ("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))];
wenzelm@26959
   258
wenzelm@26959
   259
val applC_syntax =
wenzelm@26959
   260
 [("",       typ "'a => cargs",                  Delimfix "_"),
wenzelm@26959
   261
  ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
wenzelm@26959
   262
  ("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)),
wenzelm@26959
   263
  ("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))];
wenzelm@26959
   264
wenzelm@26959
   265
structure OldApplSyntax = TheoryDataFun
wenzelm@26959
   266
(
wenzelm@26959
   267
  type T = bool;
wenzelm@26959
   268
  val empty = false;
wenzelm@26959
   269
  val copy = I;
wenzelm@26959
   270
  val extend = I;
wenzelm@26959
   271
  fun merge _ (b1, b2) : T =
wenzelm@26959
   272
    if b1 = b2 then b1
wenzelm@26959
   273
    else error "Cannot merge theories with different application syntax";
wenzelm@26959
   274
);
wenzelm@26959
   275
wenzelm@26959
   276
val old_appl_syntax = OldApplSyntax.get;
wenzelm@26959
   277
wenzelm@26959
   278
val old_appl_syntax_setup =
wenzelm@26959
   279
  OldApplSyntax.put true #>
wenzelm@26959
   280
  Sign.del_modesyntax_i Syntax.mode_default applC_syntax #>
wenzelm@26959
   281
  Sign.add_syntax_i appl_syntax;
wenzelm@26959
   282
wenzelm@26959
   283
wenzelm@26959
   284
(* main content *)
wenzelm@26959
   285
wenzelm@26463
   286
val _ = Context.>> (Context.map_theory
wenzelm@26959
   287
  (OldApplSyntax.init #>
wenzelm@26959
   288
   Sign.add_types
wenzelm@4922
   289
   [("fun", 2, NoSyn),
wenzelm@4922
   290
    ("prop", 0, NoSyn),
wenzelm@4922
   291
    ("itself", 1, NoSyn),
wenzelm@4922
   292
    ("dummy", 0, NoSyn)]
wenzelm@26430
   293
  #> Sign.add_nonterminals Syntax.basic_nonterms
wenzelm@26430
   294
  #> Sign.add_syntax_i
wenzelm@26436
   295
   [("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
wenzelm@26436
   296
    ("_abs",        typ "'a",                          NoSyn),
wenzelm@26436
   297
    ("",            typ "'a => args",                  Delimfix "_"),
wenzelm@26436
   298
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
wenzelm@26436
   299
    ("",            typ "id => idt",                   Delimfix "_"),
wenzelm@26436
   300
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
wenzelm@26436
   301
    ("_idtyp",      typ "id => type => idt",           Mixfix ("_::_", [], 0)),
wenzelm@26436
   302
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
wenzelm@26436
   303
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
wenzelm@26436
   304
    ("",            typ "idt => idts",                 Delimfix "_"),
wenzelm@26436
   305
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
wenzelm@26436
   306
    ("",            typ "idt => pttrn",                Delimfix "_"),
wenzelm@26436
   307
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
wenzelm@26436
   308
    ("_pttrns",     typ "pttrn => pttrns => pttrns",   Mixfix ("_/ _", [1, 0], 0)),
wenzelm@28856
   309
    ("",            typ "aprop => aprop",              Delimfix "'(_')"),
wenzelm@26436
   310
    ("",            typ "id => aprop",                 Delimfix "_"),
wenzelm@26436
   311
    ("",            typ "longid => aprop",             Delimfix "_"),
wenzelm@26436
   312
    ("",            typ "var => aprop",                Delimfix "_"),
wenzelm@26436
   313
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
wenzelm@26436
   314
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
wenzelm@26436
   315
    ("_asm",        typ "prop => asms",                Delimfix "_"),
wenzelm@26436
   316
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
wenzelm@26436
   317
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
wenzelm@26436
   318
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
wenzelm@26436
   319
    ("_mk_ofclass", typ "dummy",                       NoSyn),
wenzelm@26436
   320
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
wenzelm@26436
   321
    ("",            typ "id => logic",                 Delimfix "_"),
wenzelm@26436
   322
    ("",            typ "longid => logic",             Delimfix "_"),
wenzelm@26436
   323
    ("",            typ "var => logic",                Delimfix "_"),
wenzelm@26436
   324
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
wenzelm@26436
   325
    ("_constify",   typ "num => num_const",            Delimfix "_"),
nipkow@28904
   326
    ("_constify",   typ "float => float_const",        Delimfix "_"),
wenzelm@26436
   327
    ("_indexnum",   typ "num_const => index",          Delimfix "\\<^sub>_"),
wenzelm@26436
   328
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
wenzelm@26436
   329
    ("_indexdefault", typ "index",                     Delimfix ""),
wenzelm@26436
   330
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
wenzelm@26436
   331
    ("_struct",     typ "index => logic",              Mixfix ("\\<struct>_", [1000], 1000)),
wenzelm@26436
   332
    ("==>",         typ "prop => prop => prop",        Delimfix "op ==>"),
wenzelm@28622
   333
    (Term.dummy_patternN, typ "aprop",                 Delimfix "'_"),
wenzelm@28856
   334
    ("_sort_constraint", typ "type => prop",           Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"),
wenzelm@28856
   335
    ("Pure.term",   typ "logic => prop",               Delimfix "TERM _"),
wenzelm@28856
   336
    ("Pure.conjunction", typ "prop => prop => prop",   InfixrName ("&&&", 2))]
wenzelm@26959
   337
  #> Sign.add_syntax_i applC_syntax
wenzelm@26430
   338
  #> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
wenzelm@24243
   339
   [("fun",      typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
wenzelm@24243
   340
    ("_bracket", typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
wenzelm@24243
   341
    ("_ofsort",  typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
wenzelm@28856
   342
    ("_constrain", typ "logic => type => logic", Mixfix ("_\\<Colon>_", [4, 0], 3)),
wenzelm@28856
   343
    ("_constrain", [spropT, typeT] ---> spropT, Mixfix ("_\\<Colon>_", [4, 0], 3)),
wenzelm@24243
   344
    ("_idtyp",    typ "id => type => idt",     Mixfix ("_\\<Colon>_", [], 0)),
wenzelm@24243
   345
    ("_idtypdummy", typ "type => idt",         Mixfix ("'_()\\<Colon>_", [], 0)),
wenzelm@24243
   346
    ("_type_constraint_", typ "'a",            NoSyn),
wenzelm@24243
   347
    ("_lambda",  typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
wenzelm@24243
   348
    ("==",       typ "'a => 'a => prop",       InfixrName ("\\<equiv>", 2)),
wenzelm@24243
   349
    ("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
wenzelm@24243
   350
    ("==>",      typ "prop => prop => prop",   InfixrName ("\\<Longrightarrow>", 1)),
wenzelm@24243
   351
    ("_DDDOT",   typ "aprop",                  Delimfix "\\<dots>"),
wenzelm@24243
   352
    ("_bigimpl", typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
wenzelm@24243
   353
    ("_DDDOT",   typ "logic",                  Delimfix "\\<dots>")]
wenzelm@26430
   354
  #> Sign.add_modesyntax_i ("", false)
wenzelm@28856
   355
   [("prop", typ "prop => prop", Mixfix ("_", [0], 0))]
wenzelm@26430
   356
  #> Sign.add_modesyntax_i ("HTML", false)
wenzelm@24243
   357
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
wenzelm@26430
   358
  #> Sign.add_consts_i
wenzelm@24243
   359
   [("==", typ "'a => 'a => prop", InfixrName ("==", 2)),
wenzelm@24243
   360
    ("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
wenzelm@24243
   361
    ("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
wenzelm@24243
   362
    ("prop", typ "prop => prop", NoSyn),
wenzelm@24243
   363
    ("TYPE", typ "'a itself", NoSyn),
wenzelm@24243
   364
    (Term.dummy_patternN, typ "'a", Delimfix "'_")]
wenzelm@26430
   365
  #> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
wenzelm@26430
   366
  #> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
wenzelm@26430
   367
  #> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
wenzelm@26430
   368
  #> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
wenzelm@26430
   369
  #> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
wenzelm@26430
   370
  #> Sign.add_trfuns Syntax.pure_trfuns
wenzelm@26430
   371
  #> Sign.add_trfunsT Syntax.pure_trfunsT
wenzelm@26430
   372
  #> Sign.local_path
wenzelm@26430
   373
  #> Sign.add_consts_i
wenzelm@24243
   374
   [("term", typ "'a => prop", NoSyn),
wenzelm@28622
   375
    ("sort_constraint", typ "'a itself => prop", NoSyn),
wenzelm@24243
   376
    ("conjunction", typ "prop => prop => prop", NoSyn)]
haftmann@27691
   377
  #> (add_defs false o map Thm.no_attributes)
wenzelm@24243
   378
   [("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
wenzelm@26430
   379
    ("term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
wenzelm@28622
   380
    ("sort_constraint_def",
wenzelm@28622
   381
      prop "(CONST Pure.sort_constraint :: 'a itself => prop) (CONST TYPE :: 'a itself) ==\
wenzelm@28622
   382
      \ (CONST Pure.term :: 'a itself => prop) (CONST TYPE :: 'a itself)"),
wenzelm@28856
   383
    ("conjunction_def", prop "(A &&& B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
wenzelm@28622
   384
  #> Sign.hide_const false "Pure.term"
wenzelm@28622
   385
  #> Sign.hide_const false "Pure.sort_constraint"
wenzelm@26666
   386
  #> Sign.hide_const false "Pure.conjunction"
wenzelm@26430
   387
  #> add_thmss [(("nothing", []), [])] #> snd
wenzelm@26463
   388
  #> Theory.add_axioms_i Proofterm.equality_axms));
wenzelm@3987
   389
wenzelm@5091
   390
end;