author | wenzelm |
Fri, 28 Oct 2011 15:38:41 +0200 | |
changeset 45289 | 25e9e7f527b4 |
parent 44433 | 9fbee4aab115 |
child 45389 | bc0d50f8ae19 |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
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 | 5 |
*) |
6 |
||
7 |
signature PURE_THY = |
|
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 | 11 |
end; |
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 | 14 |
struct |
15 |
||
33384 | 16 |
val typ = Simple_Syntax.read_typ; |
17 |
val prop = Simple_Syntax.read_prop; |
|
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
18 |
|
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42288
diff
changeset
|
19 |
val tycon = Lexicon.mark_type; |
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42288
diff
changeset
|
20 |
val const = Lexicon.mark_const; |
24243 | 21 |
|
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
22 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
23 |
(* application syntax variants *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
24 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
25 |
val appl_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
26 |
[("_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
|
27 |
("_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
|
28 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
29 |
val applC_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
30 |
[("", typ "'a => cargs", Delimfix "_"), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
31 |
("_cargs", typ "'a => cargs => cargs", Mixfix ("_/ _", [1000, 1000], 1000)), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
32 |
("_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
|
33 |
("_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
|
34 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
35 |
structure Old_Appl_Syntax = Theory_Data |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
36 |
( |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
37 |
type T = bool; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
38 |
val empty = false; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
39 |
val extend = I; |
33522 | 40 |
fun merge (b1, b2) : T = |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
41 |
if b1 = b2 then b1 |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
42 |
else error "Cannot merge theories with different application syntax"; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
43 |
); |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
44 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
45 |
val old_appl_syntax = Old_Appl_Syntax.get; |
26959
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 |
val old_appl_syntax_setup = |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
48 |
Old_Appl_Syntax.put true #> |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
49 |
Sign.del_modesyntax_i Syntax.mode_default applC_syntax #> |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
50 |
Sign.add_syntax_i appl_syntax; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
51 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
52 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
53 |
(* main content *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
54 |
|
26463 | 55 |
val _ = Context.>> (Context.map_theory |
33365 | 56 |
(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
|
57 |
Old_Appl_Syntax.put false #> |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
58 |
Sign.add_types_global |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
59 |
[(Binding.name "fun", 2, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
60 |
(Binding.name "prop", 0, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
61 |
(Binding.name "itself", 1, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
62 |
(Binding.name "dummy", 0, NoSyn)] |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
63 |
#> Sign.add_nonterminals_global (map Binding.name Syntax.basic_nonterms) |
42294 | 64 |
#> Sign.add_syntax_i (map (fn x => (x, typ "'a", NoSyn)) Syntax.token_markers) |
26430 | 65 |
#> Sign.add_syntax_i |
42294 | 66 |
[("", typ "prop' => prop", Delimfix "_"), |
67 |
("", typ "logic => any", Delimfix "_"), |
|
68 |
("", typ "prop' => any", Delimfix "_"), |
|
69 |
("", typ "logic => logic", Delimfix "'(_')"), |
|
70 |
("", typ "prop' => prop'", Delimfix "'(_')"), |
|
71 |
("_constrain", typ "logic => type => logic", Mixfix ("_::_", [4, 0], 3)), |
|
72 |
("_constrain", typ "prop' => type => prop'", Mixfix ("_::_", [4, 0], 3)), |
|
73 |
("", typ "tid => 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
|
74 |
("", typ "tvar => type", Delimfix "_"), |
49b1b8d0782f
type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents:
42245
diff
changeset
|
75 |
("", 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
|
76 |
("_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
|
77 |
("_type_name", typ "longid => type_name", Delimfix "_"), |
42297
140f283266b7
discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents:
42296
diff
changeset
|
78 |
("_ofsort", typ "tid => sort => type", Mixfix ("_::_", [1000, 0], 1000)), |
140f283266b7
discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents:
42296
diff
changeset
|
79 |
("_ofsort", typ "tvar => sort => type", Mixfix ("_::_", [1000, 0], 1000)), |
140f283266b7
discontinued Syntax.max_pri, which is not really a symbolic parameter;
wenzelm
parents:
42296
diff
changeset
|
80 |
("_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
|
81 |
("", 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
|
82 |
("_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
|
83 |
("_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
|
84 |
("_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
|
85 |
("_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
|
86 |
("", 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
|
87 |
("_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
|
88 |
("_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
|
89 |
("_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
|
90 |
("", 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
|
91 |
("_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
|
92 |
("\\<^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
|
93 |
("_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
|
94 |
("", 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
|
95 |
("\\<^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
|
96 |
("_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
|
97 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
26436 | 98 |
("_abs", typ "'a", NoSyn), |
99 |
("", typ "'a => args", Delimfix "_"), |
|
100 |
("_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
|
101 |
("", typ "id_position => idt", Delimfix "_"), |
26436 | 102 |
("_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
|
103 |
("_idtyp", typ "id_position => type => idt", Mixfix ("_::_", [], 0)), |
26436 | 104 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()::_", [], 0)), |
105 |
("", typ "idt => idt", Delimfix "'(_')"), |
|
106 |
("", typ "idt => idts", Delimfix "_"), |
|
107 |
("_idts", typ "idt => idts => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
108 |
("", typ "idt => pttrn", Delimfix "_"), |
|
109 |
("", typ "pttrn => pttrns", Delimfix "_"), |
|
110 |
("_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
|
111 |
("", 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
|
112 |
("", 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
|
113 |
("", typ "longid_position => aprop", Delimfix "_"), |
26436 | 114 |
("", typ "var => aprop", Delimfix "_"), |
115 |
("_DDDOT", typ "aprop", Delimfix "..."), |
|
116 |
("_aprop", typ "aprop => prop", Delimfix "PROP _"), |
|
117 |
("_asm", typ "prop => asms", Delimfix "_"), |
|
118 |
("_asms", typ "prop => asms => asms", Delimfix "_;/ _"), |
|
119 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
120 |
("_ofclass", typ "type => logic => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
121 |
("_mk_ofclass", typ "dummy", NoSyn), |
|
122 |
("_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
|
123 |
("", 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
|
124 |
("", typ "longid_position => logic", Delimfix "_"), |
26436 | 125 |
("", typ "var => logic", Delimfix "_"), |
126 |
("_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
|
127 |
("_strip_positions", typ "'a", NoSyn), |
26436 | 128 |
("_constify", typ "num => num_const", Delimfix "_"), |
29156
89f76a58a378
renamed terminal category "float" to "float_token", to avoid name
wenzelm
parents:
29002
diff
changeset
|
129 |
("_constify", typ "float_token => float_const", Delimfix "_"), |
44433
9fbee4aab115
special treatment of structure index 1 in Pure, including legacy warning;
wenzelm
parents:
42410
diff
changeset
|
130 |
("_index1", typ "index", Delimfix "\\<^sub>1"), |
26436 | 131 |
("_indexnum", typ "num_const => index", Delimfix "\\<^sub>_"), |
132 |
("_index", typ "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
133 |
("_indexdefault", typ "index", Delimfix ""), |
|
134 |
("_indexvar", typ "index", Delimfix "'\\<index>"), |
|
135 |
("_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
|
136 |
("_update_name", typ "idt", NoSyn), |
42295
8fdbb3b10beb
moved CONST syntax/translations to their proper place;
wenzelm
parents:
42294
diff
changeset
|
137 |
("_constrainAbs", typ "'a", NoSyn), |
42410
16bc5564535f
less bulky "_position", for improved readability of parse trees;
wenzelm
parents:
42375
diff
changeset
|
138 |
("_position", typ "id => id_position", Delimfix "_"), |
16bc5564535f
less bulky "_position", for improved readability of parse trees;
wenzelm
parents:
42375
diff
changeset
|
139 |
("_position", typ "longid => longid_position", Delimfix "_"), |
42048
afd11ca8e018
support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents:
39557
diff
changeset
|
140 |
("_type_constraint_", typ "'a", NoSyn), |
42296 | 141 |
("_context_const", typ "id_position => logic", Delimfix "CONST _"), |
142 |
("_context_const", typ "id_position => aprop", Delimfix "CONST _"), |
|
143 |
("_context_const", typ "longid_position => logic", Delimfix "CONST _"), |
|
144 |
("_context_const", typ "longid_position => aprop", Delimfix "CONST _"), |
|
145 |
("_context_xconst", typ "id_position => logic", Delimfix "XCONST _"), |
|
146 |
("_context_xconst", typ "id_position => aprop", Delimfix "XCONST _"), |
|
147 |
("_context_xconst", typ "longid_position => logic", Delimfix "XCONST _"), |
|
148 |
("_context_xconst", typ "longid_position => aprop", Delimfix "XCONST _"), |
|
35255 | 149 |
(const "==>", typ "prop => prop => prop", Delimfix "op ==>"), |
150 |
(const Term.dummy_patternN, typ "aprop", Delimfix "'_"), |
|
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28841
diff
changeset
|
151 |
("_sort_constraint", typ "type => prop", Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"), |
35255 | 152 |
(const "Pure.term", typ "logic => prop", Delimfix "TERM _"), |
153 |
(const "Pure.conjunction", typ "prop => prop => prop", Infixr ("&&&", 2))] |
|
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
154 |
#> Sign.add_syntax_i applC_syntax |
26430 | 155 |
#> Sign.add_modesyntax_i (Symbol.xsymbolsN, true) |
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
156 |
[(tycon "fun", typ "type => type => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
157 |
("_bracket", typ "types => type => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
158 |
("_ofsort", typ "tid => sort => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
159 |
("_constrain", typ "logic => type => logic", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
42293
6cca0343ea48
renamed sprop "prop#" to "prop'" -- proper identifier;
wenzelm
parents:
42290
diff
changeset
|
160 |
("_constrain", typ "prop' => type => prop'", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
42048
afd11ca8e018
support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents:
39557
diff
changeset
|
161 |
("_idtyp", typ "id_position => type => idt", Mixfix ("_\\<Colon>_", [], 0)), |
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
162 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
163 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
164 |
(const "==", typ "'a => 'a => prop", Infixr ("\\<equiv>", 2)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
165 |
(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
|
166 |
(const "==>", typ "prop => prop => prop", Infixr ("\\<Longrightarrow>", 1)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
167 |
("_DDDOT", typ "aprop", Delimfix "\\<dots>"), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
168 |
("_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
|
169 |
("_DDDOT", typ "logic", Delimfix "\\<dots>")] |
26430 | 170 |
#> Sign.add_modesyntax_i ("", false) |
35255 | 171 |
[(const "prop", typ "prop => prop", Mixfix ("_", [0], 0))] |
26430 | 172 |
#> Sign.add_modesyntax_i ("HTML", false) |
24243 | 173 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
26430 | 174 |
#> Sign.add_consts_i |
35130 | 175 |
[(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
|
176 |
(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
|
177 |
(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
|
178 |
(Binding.name "prop", typ "prop => prop", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
179 |
(Binding.name "TYPE", typ "'a itself", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
180 |
(Binding.name Term.dummy_patternN, typ "'a", Delimfix "'_")] |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
181 |
#> Theory.add_deps_global "==" ("==", typ "'a => 'a => prop") [] |
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
182 |
#> Theory.add_deps_global "==>" ("==>", typ "prop => prop => prop") [] |
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
183 |
#> Theory.add_deps_global "all" ("all", typ "('a => prop) => prop") [] |
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
184 |
#> Theory.add_deps_global "TYPE" ("TYPE", typ "'a itself") [] |
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
185 |
#> Theory.add_deps_global Term.dummy_patternN (Term.dummy_patternN, typ "'a") [] |
42284 | 186 |
#> Sign.add_trfuns Syntax_Trans.pure_trfuns |
26430 | 187 |
#> Sign.local_path |
188 |
#> Sign.add_consts_i |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
189 |
[(Binding.name "term", typ "'a => prop", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
190 |
(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
|
191 |
(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
|
192 |
#> (Global_Theory.add_defs false o map Thm.no_attributes) |
29579 | 193 |
[(Binding.name "prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"), |
194 |
(Binding.name "term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"), |
|
195 |
(Binding.name "sort_constraint_def", |
|
28622
1a0b845855ac
added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents:
28076
diff
changeset
|
196 |
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
|
197 |
\ (CONST Pure.term :: 'a itself => prop) (CONST TYPE :: 'a itself)"), |
29579 | 198 |
(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
|
199 |
#> Sign.hide_const false "Pure.term" |
1a0b845855ac
added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents:
28076
diff
changeset
|
200 |
#> Sign.hide_const false "Pure.sort_constraint" |
26666 | 201 |
#> 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
|
202 |
#> Global_Theory.add_thmss [((Binding.name "nothing", []), [])] #> snd |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
203 |
#> fold (fn (a, prop) => |
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
204 |
snd o Thm.add_axiom_global (Binding.name a, prop)) Proofterm.equality_axms)); |
3987 | 205 |
|
206 |
end; |