src/Pure/pure_thy.ML
author haftmann
Sat, 19 Dec 2015 17:03:17 +0100
changeset 61891 76189756ff65
parent 61256 9ce5de06cd3b
child 61957 301833d9013a
permissions -rw-r--r--
documentation on last state of the art concerning interpretation
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
52160
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    11
  val token_markers: string list
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    12
end;
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    13
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
    14
structure Pure_Thy: PURE_THY =
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    15
struct
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
    16
33384
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
    17
val typ = Simple_Syntax.read_typ;
1b5ba4e6a953 modernized structure Simple_Syntax;
wenzelm
parents: 33365
diff changeset
    18
val prop = Simple_Syntax.read_prop;
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
    19
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42288
diff changeset
    20
val tycon = Lexicon.mark_type;
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42288
diff changeset
    21
val const = Lexicon.mark_const;
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
    22
56234
59662ce44f02 produce qualified names more directly;
wenzelm
parents: 55108
diff changeset
    23
val qualify = Binding.qualify true Context.PureN;
59662ce44f02 produce qualified names more directly;
wenzelm
parents: 55108
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 #>
56240
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
    52
  Sign.del_syntax Syntax.mode_default applC_syntax #>
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
    53
  Sign.add_syntax Syntax.mode_default appl_syntax;
26959
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
52160
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    58
val token_markers =
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    59
  ["_tfree", "_tvar", "_free", "_bound", "_loose", "_var", "_numeral", "_inner_string"];
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    60
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 52211
diff changeset
    61
val _ = Theory.setup
33365
4db1b31b246e set Pure theory name properly
haftmann
parents: 33167
diff changeset
    62
  (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
    63
   Old_Appl_Syntax.put false #>
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42297
diff changeset
    64
   Sign.add_types_global
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
    65
   [(Binding.make ("fun", @{here}), 2, NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
    66
    (Binding.make ("prop", @{here}), 0, NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
    67
    (Binding.make ("itself", @{here}), 1, NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
    68
    (Binding.make ("dummy", @{here}), 0, NoSyn)]
61255
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61246
diff changeset
    69
  #> Theory.add_deps_global "fun" ((Defs.Type, "fun"), [typ "'a", typ "'b"]) []
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61246
diff changeset
    70
  #> Theory.add_deps_global "prop" ((Defs.Type, "prop"), []) []
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61246
diff changeset
    71
  #> Theory.add_deps_global "itself" ((Defs.Type, "itself"), [typ "'a"]) []
15865e0c5598 eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents: 61246
diff changeset
    72
  #> Theory.add_deps_global "dummy" ((Defs.Type, "dummy"), []) []
52160
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    73
  #> Sign.add_nonterminals_global
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
    74
    (map (fn name => Binding.make (name, @{here}))
52160
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    75
      (Lexicon.terminals @ ["logic", "type", "types", "sort", "classes",
7746c9f1baf3 tuned signature;
wenzelm
parents: 52143
diff changeset
    76
        "args", "cargs", "pttrn", "pttrns", "idt", "idts", "aprop", "asms",
58421
37cbbd8eb460 discontinued old "xnum" token category;
wenzelm
parents: 56436
diff changeset
    77
        "any", "prop'", "num_const", "float_const", "num_position",
37cbbd8eb460 discontinued old "xnum" token category;
wenzelm
parents: 56436
diff changeset
    78
        "float_position", "index", "struct", "tid_position",
55108
0b7a0c1fdf7e inner syntax token language allows regular quoted strings;
wenzelm
parents: 55033
diff changeset
    79
        "tvar_position", "id_position", "longid_position", "var_position",
0b7a0c1fdf7e inner syntax token language allows regular quoted strings;
wenzelm
parents: 55033
diff changeset
    80
        "str_position", "string_position", "cartouche_position", "type_name",
0b7a0c1fdf7e inner syntax token language allows regular quoted strings;
wenzelm
parents: 55033
diff changeset
    81
        "class_name"]))
56240
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
    82
  #> Sign.add_syntax Syntax.mode_default (map (fn x => (x, typ "'a", NoSyn)) token_markers)
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
    83
  #> Sign.add_syntax Syntax.mode_default
42294
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    84
   [("",            typ "prop' => prop",               Delimfix "_"),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    85
    ("",            typ "logic => any",                Delimfix "_"),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    86
    ("",            typ "prop' => any",                Delimfix "_"),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    87
    ("",            typ "logic => logic",              Delimfix "'(_')"),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    88
    ("",            typ "prop' => prop'",              Delimfix "'(_')"),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    89
    ("_constrain",  typ "logic => type => logic",      Mixfix ("_::_", [4, 0], 3)),
0f4372a2d2e4 simplified Pure syntax bootstrap;
wenzelm
parents: 42293
diff changeset
    90
    ("_constrain",  typ "prop' => type => prop'",      Mixfix ("_::_", [4, 0], 3)),
52211
66bc827e37f8 explicit support for type annotations within printed syntax trees;
wenzelm
parents: 52161
diff changeset
    91
    ("_ignore_type", typ "'a",                         NoSyn),
49674
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 46483
diff changeset
    92
    ("",            typ "tid_position => type",        Delimfix "_"),
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 46483
diff changeset
    93
    ("",            typ "tvar_position => type",       Delimfix "_"),
42263
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
    94
    ("",            typ "type_name => type",           Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
    95
    ("_type_name",  typ "id => type_name",             Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
    96
    ("_type_name",  typ "longid => type_name",         Delimfix "_"),
49685
4341e4d86872 allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents: 49674
diff changeset
    97
    ("_ofsort",     typ "tid_position => sort => type", Mixfix ("_::_", [1000, 0], 1000)),
4341e4d86872 allow position constraints to coexist with 0 or 1 sort constraints;
wenzelm
parents: 49674
diff changeset
    98
    ("_ofsort",     typ "tvar_position => sort => type", Mixfix ("_::_", [1000, 0], 1000)),
42297
140f283266b7 discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents: 42296
diff changeset
    99
    ("_dummy_ofsort", typ "sort => type",              Mixfix ("'_()::_", [0], 1000)),
42263
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   100
    ("",            typ "class_name => sort",          Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   101
    ("_class_name", typ "id => class_name",            Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   102
    ("_class_name", typ "longid => class_name",        Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   103
    ("_topsort",    typ "sort",                        Delimfix "{}"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   104
    ("_sort",       typ "classes => sort",             Delimfix "{_}"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   105
    ("",            typ "class_name => classes",       Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   106
    ("_classes",    typ "class_name => classes => classes", Delimfix "_,_"),
42297
140f283266b7 discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents: 42296
diff changeset
   107
    ("_tapp",       typ "type => type_name => type",   Mixfix ("_ _", [1000, 0], 1000)),
42263
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   108
    ("_tappl",      typ "type => types => type_name => type", Delimfix "((1'(_,/ _')) _)"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   109
    ("",            typ "type => types",               Delimfix "_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   110
    ("_types",      typ "type => types => types",      Delimfix "_,/ _"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   111
    ("\\<^type>fun", typ "type => type => type",       Mixfix ("(_/ => _)", [1, 0], 0)),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   112
    ("_bracket",    typ "types => type => type",       Mixfix ("([_]/ => _)", [0, 0], 0)),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   113
    ("",            typ "type => type",                Delimfix "'(_')"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   114
    ("\\<^type>dummy", typ "type",                     Delimfix "'_"),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   115
    ("_type_prop",  typ "'a",                          NoSyn),
49b1b8d0782f type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents: 42245
diff changeset
   116
    ("_lambda",     typ "pttrns => 'a => logic",       Mixfix ("(3%_./ _)", [0, 3], 3)),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   117
    ("_abs",        typ "'a",                          NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   118
    ("",            typ "'a => args",                  Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   119
    ("_args",       typ "'a => args => args",          Delimfix "_,/ _"),
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   120
    ("",            typ "id_position => idt",          Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   121
    ("_idtdummy",   typ "idt",                         Delimfix "'_"),
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   122
    ("_idtyp",      typ "id_position => type => idt",  Mixfix ("_::_", [], 0)),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   123
    ("_idtypdummy", typ "type => idt",                 Mixfix ("'_()::_", [], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   124
    ("",            typ "idt => idt",                  Delimfix "'(_')"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   125
    ("",            typ "idt => idts",                 Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   126
    ("_idts",       typ "idt => idts => idts",         Mixfix ("_/ _", [1, 0], 0)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   127
    ("",            typ "idt => pttrn",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   128
    ("",            typ "pttrn => pttrns",             Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   129
    ("_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
   130
    ("",            typ "aprop => aprop",              Delimfix "'(_')"),
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   131
    ("",            typ "id_position => aprop",        Delimfix "_"),
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   132
    ("",            typ "longid_position => aprop",    Delimfix "_"),
51612
6a1e40f9dd55 added var_position in analogy to longid_position, for typing reports on input;
wenzelm
parents: 50636
diff changeset
   133
    ("",            typ "var_position => aprop",       Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   134
    ("_DDDOT",      typ "aprop",                       Delimfix "..."),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   135
    ("_aprop",      typ "aprop => prop",               Delimfix "PROP _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   136
    ("_asm",        typ "prop => asms",                Delimfix "_"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   137
    ("_asms",       typ "prop => asms => asms",        Delimfix "_;/ _"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   138
    ("_bigimpl",    typ "asms => prop => prop",        Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   139
    ("_ofclass",    typ "type => logic => prop",       Delimfix "(1OFCLASS/(1'(_,/ _')))"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   140
    ("_mk_ofclass", typ "dummy",                       NoSyn),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   141
    ("_TYPE",       typ "type => logic",               Delimfix "(1TYPE/(1'(_')))"),
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   142
    ("",            typ "id_position => logic",        Delimfix "_"),
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   143
    ("",            typ "longid_position => logic",    Delimfix "_"),
51612
6a1e40f9dd55 added var_position in analogy to longid_position, for typing reports on input;
wenzelm
parents: 50636
diff changeset
   144
    ("",            typ "var_position => logic",       Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   145
    ("_DDDOT",      typ "logic",                       Delimfix "..."),
42057
3eba96ff3d3e more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
wenzelm
parents: 42048
diff changeset
   146
    ("_strip_positions", typ "'a", NoSyn),
46236
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 45703
diff changeset
   147
    ("_position",   typ "num_token => num_position",   Delimfix "_"),
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 45703
diff changeset
   148
    ("_position",   typ "float_token => float_position", Delimfix "_"),
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 45703
diff changeset
   149
    ("_constify",   typ "num_position => num_const",   Delimfix "_"),
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 45703
diff changeset
   150
    ("_constify",   typ "float_position => float_const", Delimfix "_"),
26436
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   151
    ("_index",      typ "logic => index",              Delimfix "(00\\<^bsub>_\\<^esub>)"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   152
    ("_indexdefault", typ "index",                     Delimfix ""),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   153
    ("_indexvar",   typ "index",                       Delimfix "'\\<index>"),
dfd6947ab5c2 removed obsolete appl_syntax, applC_syntax;
wenzelm
parents: 26430
diff changeset
   154
    ("_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
   155
    ("_update_name", typ "idt",                        NoSyn),
42295
8fdbb3b10beb moved CONST syntax/translations to their proper place;
wenzelm
parents: 42294
diff changeset
   156
    ("_constrainAbs", typ "'a",                        NoSyn),
49674
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 46483
diff changeset
   157
    ("_position_sort", typ "tid => tid_position",      Delimfix "_"),
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 46483
diff changeset
   158
    ("_position_sort", typ "tvar => tvar_position",    Delimfix "_"),
42410
16bc5564535f less bulky "_position", for improved readability of parse trees;
wenzelm
parents: 42375
diff changeset
   159
    ("_position",   typ "id => id_position",           Delimfix "_"),
16bc5564535f less bulky "_position", for improved readability of parse trees;
wenzelm
parents: 42375
diff changeset
   160
    ("_position",   typ "longid => longid_position",   Delimfix "_"),
51612
6a1e40f9dd55 added var_position in analogy to longid_position, for typing reports on input;
wenzelm
parents: 50636
diff changeset
   161
    ("_position",   typ "var => var_position",         Delimfix "_"),
46483
10a9c31a22b4 renamed "xstr" to "str_token";
wenzelm
parents: 46236
diff changeset
   162
    ("_position",   typ "str_token => str_position",   Delimfix "_"),
55108
0b7a0c1fdf7e inner syntax token language allows regular quoted strings;
wenzelm
parents: 55033
diff changeset
   163
    ("_position",   typ "string_token => string_position", Delimfix "_"),
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 53171
diff changeset
   164
    ("_position",   typ "cartouche => cartouche_position", Delimfix "_"),
42048
afd11ca8e018 support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents: 39557
diff changeset
   165
    ("_type_constraint_", typ "'a",                    NoSyn),
42296
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   166
    ("_context_const", typ "id_position => logic",     Delimfix "CONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   167
    ("_context_const", typ "id_position => aprop",     Delimfix "CONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   168
    ("_context_const", typ "longid_position => logic", Delimfix "CONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   169
    ("_context_const", typ "longid_position => aprop", Delimfix "CONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   170
    ("_context_xconst", typ "id_position => logic",    Delimfix "XCONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   171
    ("_context_xconst", typ "id_position => aprop",    Delimfix "XCONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   172
    ("_context_xconst", typ "longid_position => logic", Delimfix "XCONST _"),
dcc08f2a8671 CONST syntax with positions;
wenzelm
parents: 42295
diff changeset
   173
    ("_context_xconst", typ "longid_position => aprop", Delimfix "XCONST _"),
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 56244
diff changeset
   174
    (const "Pure.imp",  typ "prop => prop => prop",     Delimfix "op ==>"),
56241
029246729dc0 more qualified names;
wenzelm
parents: 56240
diff changeset
   175
    (const "Pure.dummy_pattern", typ "aprop",          Delimfix "'_"),
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28841
diff changeset
   176
    ("_sort_constraint", typ "type => prop",           Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   177
    (const "Pure.term", typ "logic => prop",           Delimfix "TERM _"),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35145
diff changeset
   178
    (const "Pure.conjunction", typ "prop => prop => prop", Infixr ("&&&", 2))]
56240
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
   179
  #> Sign.add_syntax Syntax.mode_default applC_syntax
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
   180
  #> Sign.add_syntax (Symbol.xsymbolsN, true)
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   181
   [(tycon "fun",         typ "type => type => type",   Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   182
    ("_bracket",          typ "types => type => type",  Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   183
    ("_lambda",           typ "pttrns => 'a => logic",  Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 56244
diff changeset
   184
    (const "Pure.eq",     typ "'a => 'a => prop",       Infix ("\\<equiv>", 2)),
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 56244
diff changeset
   185
    (const "Pure.all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 56244
diff changeset
   186
    (const "Pure.imp",    typ "prop => prop => prop",   Infixr ("\\<Longrightarrow>", 1)),
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   187
    ("_DDDOT",            typ "aprop",                  Delimfix "\\<dots>"),
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35262
diff changeset
   188
    ("_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
   189
    ("_DDDOT",            typ "logic",                  Delimfix "\\<dots>")]
56240
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
   190
  #> Sign.add_syntax ("", false)
56244
3298b7a2795a more qualified names;
wenzelm
parents: 56243
diff changeset
   191
   [(const "Pure.prop", typ "prop => prop", Mixfix ("_", [0], 0))]
56240
938c6c7e10eb tuned signature;
wenzelm
parents: 56239
diff changeset
   192
  #> Sign.add_syntax ("HTML", false)
24243
08db58fd6374 moved appl syntax to PureThy;
wenzelm
parents: 24137
diff changeset
   193
   [("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
56239
17df7145a871 tuned signature;
wenzelm
parents: 56234
diff changeset
   194
  #> Sign.add_consts
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   195
   [(qualify (Binding.make ("eq", @{here})), typ "'a => 'a => prop", Infix ("==", 2)),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   196
    (qualify (Binding.make ("imp", @{here})), typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   197
    (qualify (Binding.make ("all", @{here})), typ "('a => prop) => prop", Binder ("!!", 0, 0)),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   198
    (qualify (Binding.make ("prop", @{here})), typ "prop => prop", NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   199
    (qualify (Binding.make ("type", @{here})), typ "'a itself", NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   200
    (qualify (Binding.make ("dummy_pattern", @{here})), typ "'a", Delimfix "'_")]
61256
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   201
  #> Theory.add_deps_global "Pure.eq" ((Defs.Const, "Pure.eq"), [typ "'a"]) []
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   202
  #> Theory.add_deps_global "Pure.imp" ((Defs.Const, "Pure.imp"), []) []
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   203
  #> Theory.add_deps_global "Pure.all" ((Defs.Const, "Pure.all"), [typ "'a"]) []
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   204
  #> Theory.add_deps_global "Pure.type" ((Defs.Const, "Pure.type"), [typ "'a"]) []
9ce5de06cd3b tuned signature;
wenzelm
parents: 61255
diff changeset
   205
  #> Theory.add_deps_global "Pure.dummy_pattern" ((Defs.Const, "Pure.dummy_pattern"), [typ "'a"]) []
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51612
diff changeset
   206
  #> Sign.parse_ast_translation Syntax_Trans.pure_parse_ast_translation
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51612
diff changeset
   207
  #> Sign.parse_translation Syntax_Trans.pure_parse_translation
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51612
diff changeset
   208
  #> Sign.print_ast_translation Syntax_Trans.pure_print_ast_translation
56239
17df7145a871 tuned signature;
wenzelm
parents: 56234
diff changeset
   209
  #> Sign.add_consts
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   210
   [(qualify (Binding.make ("term", @{here})), typ "'a => prop", NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   211
    (qualify (Binding.make ("sort_constraint", @{here})), typ "'a itself => prop", NoSyn),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   212
    (qualify (Binding.make ("conjunction", @{here})), typ "prop => prop => prop", NoSyn)]
26430
8ddb2e7c5a1e eliminated theory ProtoPure;
wenzelm
parents: 26395
diff changeset
   213
  #> Sign.local_path
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
   214
  #> (Global_Theory.add_defs false o map Thm.no_attributes)
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   215
   [(Binding.make ("prop_def", @{here}),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   216
      prop "(CONST Pure.prop :: prop => prop) (A::prop) == A::prop"),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   217
    (Binding.make ("term_def", @{here}),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   218
      prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   219
    (Binding.make ("sort_constraint_def", @{here}),
56243
2e10a36b8d46 more qualified names;
wenzelm
parents: 56241
diff changeset
   220
      prop "(CONST Pure.sort_constraint :: 'a itself => prop) (CONST Pure.type :: 'a itself) ==\
2e10a36b8d46 more qualified names;
wenzelm
parents: 56241
diff changeset
   221
      \ (CONST Pure.term :: 'a itself => prop) (CONST Pure.type :: 'a itself)"),
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   222
    (Binding.make ("conjunction_def", @{here}),
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   223
      prop "(A &&& B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   224
  #> Global_Theory.add_thmss [((Binding.make ("nothing", @{here}), []), [])] #> snd
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42297
diff changeset
   225
  #> fold (fn (a, prop) =>
56436
30ccec1e82fb more source positions;
wenzelm
parents: 56245
diff changeset
   226
      snd o Thm.add_axiom_global (Binding.make (a, @{here}), prop)) Proofterm.equality_axms);
3987
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   227
22f5291012df Init 'theorems' data. The Pure theories.
wenzelm
parents:
diff changeset
   228
end;