src/Pure/pure_thy.ML
author wenzelm
Mon, 20 Sep 2010 16:05:25 +0200
changeset 39557 fe5722fce758
parent 39507 839873937ddd
child 42048 afd11ca8e018
permissions -rw-r--r--
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
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
    Author:     Markus Wenzel, TU Muenchen
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     3
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39507
diff changeset
     4
Pure theory syntax and further logical content.
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     5
*)
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     6
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     7
signature PURE_THY =
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
     8
sig
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
     9
  val old_appl_syntax: theory -> bool
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    10
  val old_appl_syntax_setup: theory -> theory
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    11
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    12
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39507
diff changeset
    13
structure Pure_Thy: PURE_THY =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    14
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    15
33384
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
    16
val typ = Simple_Syntax.read_typ;
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
    17
val prop = Simple_Syntax.read_prop;
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
    18
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
    19
val tycon = Syntax.mark_type;
35262
9ea4445d2ccf slightly more abstract syntax mark/unmark operations;
wenzelm
parents: 35255
diff changeset
    20
val const = Syntax.mark_const;
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
    21
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
    22
val typeT = Syntax.typeT;
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
    23
val spropT = Syntax.spropT;
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
    24
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    25
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    26
(* application syntax variants *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    27
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    28
val appl_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    29
 [("_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
    30
  ("_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
    31
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    32
val applC_syntax =
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    33
 [("",       typ "'a => cargs",                  Delimfix "_"),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    34
  ("_cargs", typ "'a => cargs => cargs",         Mixfix ("_/ _", [1000, 1000], 1000)),
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    35
  ("_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
    36
  ("_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
    37
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36744
diff changeset
    38
structure Old_Appl_Syntax = Theory_Data
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    39
(
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    40
  type T = bool;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    41
  val empty = false;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    42
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33384
diff changeset
    43
  fun merge (b1, b2) : T =
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    44
    if b1 = b2 then b1
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    45
    else error "Cannot merge theories with different application syntax";
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    46
);
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    47
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36744
diff changeset
    48
val old_appl_syntax = Old_Appl_Syntax.get;
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    49
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    50
val old_appl_syntax_setup =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36744
diff changeset
    51
  Old_Appl_Syntax.put true #>
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    52
  Sign.del_modesyntax_i Syntax.mode_default applC_syntax #>
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    53
  Sign.add_syntax_i appl_syntax;
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    54
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    55
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    56
(* main content *)
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    57
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26457
diff changeset
    58
val _ = Context.>> (Context.map_theory
33365
4db1b31b246e set Pure theory name properly
haftmann
parents: 33167
diff changeset
    59
  (Sign.map_naming (Name_Space.set_theory_name Context.PureN) #>
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36744
diff changeset
    60
   Old_Appl_Syntax.put false #>
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
    61
   Sign.add_types
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
    62
   [(Binding.name "fun", 2, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
    63
    (Binding.name "prop", 0, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
    64
    (Binding.name "itself", 1, NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
    65
    (Binding.name "dummy", 0, NoSyn)]
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
    66
  #> Sign.add_nonterminals (map Binding.name Syntax.basic_nonterms)
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
    67
  #> Sign.add_syntax_i
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    68
   [("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    69
    ("_abs",        typ "'a",                          NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    70
    ("",            typ "'a => args",                  Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    71
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    72
    ("",            typ "id => idt",                   Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    73
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    74
    ("_idtyp",      typ "id => type => idt",           Mixfix ("_::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    75
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    76
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    77
    ("",            typ "idt => idts",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    78
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    79
    ("",            typ "idt => pttrn",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    80
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    81
    ("_pttrns",     typ "pttrn => pttrns => pttrns",   Mixfix ("_/ _", [1, 0], 0)),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
    82
    ("",            typ "aprop => aprop",              Delimfix "'(_')"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    83
    ("",            typ "id => aprop",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    84
    ("",            typ "longid => aprop",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    85
    ("",            typ "var => aprop",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    86
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    87
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    88
    ("_asm",        typ "prop => asms",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    89
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    90
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    91
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    92
    ("_mk_ofclass", typ "dummy",                       NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    93
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    94
    ("",            typ "id => logic",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    95
    ("",            typ "longid => logic",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    96
    ("",            typ "var => logic",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    97
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
    98
    ("_constify",   typ "num => num_const",            Delimfix "_"),
29156
89f76a58a378 renamed terminal category "float" to "float_token", to avoid name
wenzelm
parents: 29002
diff changeset
    99
    ("_constify",   typ "float_token => float_const",  Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   100
    ("_indexnum",   typ "num_const => index",          Delimfix "\\<^sub>_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   101
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   102
    ("_indexdefault", typ "index",                     Delimfix ""),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   103
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   104
    ("_struct",     typ "index => logic",              Mixfix ("\\<struct>_", [1000], 1000)),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 35130
diff changeset
   105
    ("_update_name", typ "idt",                        NoSyn),
38975
ef13a2cc97be actually declare "_constrainAbs" as @{syntax_const};
wenzelm
parents: 37216
diff changeset
   106
    (Syntax.constrainAbsC, typ "'a",                   NoSyn),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   107
    (const "==>",   typ "prop => prop => prop",        Delimfix "op ==>"),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   108
    (const Term.dummy_patternN, typ "aprop",           Delimfix "'_"),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   109
    ("_sort_constraint", typ "type => prop",           Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   110
    (const "Pure.term", typ "logic => prop",           Delimfix "TERM _"),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   111
    (const "Pure.conjunction", typ "prop => prop => prop", Infixr ("&&&", 2))]
26959
f8f2df3e4d83 theory Pure provides regular application syntax by default;
wenzelm
parents: 26693
diff changeset
   112
  #> Sign.add_syntax_i applC_syntax
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   113
  #> Sign.add_modesyntax_i (Symbol.xsymbolsN, true)
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   114
   [(tycon "fun",         typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   115
    ("_bracket",          typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   116
    ("_ofsort",           typ "tid => sort => type",    Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   117
    ("_constrain",        typ "logic => type => logic", Mixfix ("_\\<Colon>_", [4, 0], 3)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   118
    ("_constrain",        [spropT, typeT] ---> spropT,  Mixfix ("_\\<Colon>_", [4, 0], 3)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   119
    ("_idtyp",            typ "id => type => idt",      Mixfix ("_\\<Colon>_", [], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   120
    ("_idtypdummy",       typ "type => idt",            Mixfix ("'_()\\<Colon>_", [], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   121
    ("_type_constraint_", typ "'a",                     NoSyn),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   122
    ("_lambda",           typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   123
    (const "==",          typ "'a => 'a => prop",       Infixr ("\\<equiv>", 2)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   124
    (const "all_binder",  typ "idts => prop => prop",   Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   125
    (const "==>",         typ "prop => prop => prop",   Infixr ("\\<Longrightarrow>", 1)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   126
    ("_DDDOT",            typ "aprop",                  Delimfix "\\<dots>"),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   127
    ("_bigimpl",          typ "asms => prop => prop",   Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   128
    ("_DDDOT",            typ "logic",                  Delimfix "\\<dots>")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   129
  #> Sign.add_modesyntax_i ("", false)
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   130
   [(const "prop", typ "prop => prop", Mixfix ("_", [0], 0))]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   131
  #> Sign.add_modesyntax_i ("HTML", false)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   132
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   133
  #> Sign.add_consts_i
35130
0991c84e8dcf renamed InfixName to Infix etc.;
wenzelm
parents: 33700
diff changeset
   134
   [(Binding.name "==", typ "'a => 'a => prop", Infixr ("==", 2)),
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   135
    (Binding.name "==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   136
    (Binding.name "all", typ "('a => prop) => prop", Binder ("!!", 0, 0)),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   137
    (Binding.name "prop", typ "prop => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   138
    (Binding.name "TYPE", typ "'a itself", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   139
    (Binding.name Term.dummy_patternN, typ "'a", Delimfix "'_")]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   140
  #> Theory.add_deps "==" ("==", typ "'a => 'a => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   141
  #> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   142
  #> Theory.add_deps "all" ("all", typ "('a => prop) => prop") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   143
  #> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   144
  #> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") []
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   145
  #> Sign.add_trfuns Syntax.pure_trfuns
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   146
  #> Sign.add_trfunsT Syntax.pure_trfunsT
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   147
  #> Sign.local_path
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   148
  #> Sign.add_consts_i
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   149
   [(Binding.name "term", typ "'a => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   150
    (Binding.name "sort_constraint", typ "'a itself => prop", NoSyn),
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30337
diff changeset
   151
    (Binding.name "conjunction", typ "prop => prop => prop", NoSyn)]
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39507
diff changeset
   152
  #> (Global_Theory.add_defs false o map Thm.no_attributes)
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   153
   [(Binding.name "prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"),
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   154
    (Binding.name "term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   155
    (Binding.name "sort_constraint_def",
28622
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   156
      prop "(CONST Pure.sort_constraint :: 'a itself => prop) (CONST TYPE :: 'a itself) ==\
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   157
      \ (CONST Pure.term :: 'a itself => prop) (CONST TYPE :: 'a itself)"),
29579
cb520b766e00 binding replaces bstring
haftmann
parents: 29433
diff changeset
   158
    (Binding.name "conjunction_def", prop "(A &&& B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
28622
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   159
  #> Sign.hide_const false "Pure.term"
1a0b845855ac added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents: 28076
diff changeset
   160
  #> Sign.hide_const false "Pure.sort_constraint"
26666
433b165b0a8c added intern_fact, check_fact, hide_fact;
wenzelm
parents: 26655
diff changeset
   161
  #> Sign.hide_const false "Pure.conjunction"
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39507
diff changeset
   162
  #> Global_Theory.add_thmss [((Binding.name "nothing", []), [])] #> snd
35856
f81557a124d5 replaced PureThy.add_axioms by more basic Drule.add_axiom, which is old-style nonetheless;
wenzelm
parents: 35852
diff changeset
   163
  #> fold (fn (a, prop) => snd o Thm.add_axiom (Binding.name a, prop)) Proofterm.equality_axms));
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   164
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   165
end;