author | wenzelm |
Sun, 06 Oct 2024 22:56:07 +0200 | |
changeset 81124 | 6ce0c8d59f5a |
parent 80921 | a37ed1aeb163 |
child 81125 | ec121999a9cb |
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 |
52160 | 11 |
val token_markers: string list |
3987 | 12 |
end; |
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 | 15 |
struct |
16 |
||
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
17 |
(* auxiliary *) |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
18 |
|
33384 | 19 |
val typ = Simple_Syntax.read_typ; |
20 |
val prop = Simple_Syntax.read_prop; |
|
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
21 |
|
42290
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42288
diff
changeset
|
22 |
val tycon = Lexicon.mark_type; |
b1f544c84040
discontinued special treatment of structure Lexicon;
wenzelm
parents:
42288
diff
changeset
|
23 |
val const = Lexicon.mark_const; |
24243 | 24 |
|
56234 | 25 |
val qualify = Binding.qualify true Context.PureN; |
26 |
||
62752 | 27 |
fun mixfix (sy, ps, p) = Mixfix (Input.string sy, ps, p, Position.no_range); |
28 |
fun infix_ (sy, p) = Infix (Input.string sy, p, Position.no_range); |
|
29 |
fun infixr_ (sy, p) = Infixr (Input.string sy, p, Position.no_range); |
|
30 |
fun binder (sy, p, q) = Binder (Input.string sy, p, q, Position.no_range); |
|
31 |
||
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
32 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
33 |
(* application syntax variants *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
34 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
35 |
val appl_syntax = |
80916 | 36 |
[("_appl", typ "('b \<Rightarrow> 'a) \<Rightarrow> args \<Rightarrow> logic", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
37 |
mixfix ("(\<open>indent=1 notation=application\<close>_/(1'(_')))", [1000, 0], 1000)), |
80916 | 38 |
("_appl", typ "('b \<Rightarrow> 'a) \<Rightarrow> args \<Rightarrow> aprop", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
39 |
mixfix ("(\<open>indent=1 notation=application\<close>_/(1'(_')))", [1000, 0], 1000))]; |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
40 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
41 |
val applC_syntax = |
67721 | 42 |
[("", typ "'a \<Rightarrow> cargs", Mixfix.mixfix "_"), |
43 |
("_cargs", typ "'a \<Rightarrow> cargs \<Rightarrow> cargs", mixfix ("_/ _", [1000, 1000], 1000)), |
|
80916 | 44 |
("_applC", typ "('b \<Rightarrow> 'a) \<Rightarrow> cargs \<Rightarrow> logic", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
45 |
mixfix ("(\<open>indent=1 notation=application\<close>_/ _)", [1000, 1000], 999)), |
80916 | 46 |
("_applC", typ "('b \<Rightarrow> 'a) \<Rightarrow> cargs \<Rightarrow> aprop", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
47 |
mixfix ("(\<open>indent=1 notation=application\<close>_/ _)", [1000, 1000], 999))]; |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
48 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
49 |
structure Old_Appl_Syntax = Theory_Data |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
50 |
( |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
51 |
type T = bool; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
52 |
val empty = false; |
33522 | 53 |
fun merge (b1, b2) : T = |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
54 |
if b1 = b2 then b1 |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
55 |
else error "Cannot merge theories with different application syntax"; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
56 |
); |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
57 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
58 |
val old_appl_syntax = Old_Appl_Syntax.get; |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
59 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
60 |
val old_appl_syntax_setup = |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
61 |
Old_Appl_Syntax.put true #> |
80897
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
62 |
Sign.syntax_global false Syntax.mode_default applC_syntax #> |
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
63 |
Sign.syntax_global true Syntax.mode_default appl_syntax; |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
64 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
65 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
66 |
(* main content *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
67 |
|
52160 | 68 |
val token_markers = |
69 |
["_tfree", "_tvar", "_free", "_bound", "_loose", "_var", "_numeral", "_inner_string"]; |
|
70 |
||
53171 | 71 |
val _ = Theory.setup |
72053
4ed33ea8d957
prefer conservative extend/merge of theory naming;
wenzelm
parents:
71777
diff
changeset
|
72 |
(Sign.init_naming #> |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
73 |
Old_Appl_Syntax.put false #> |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42297
diff
changeset
|
74 |
Sign.add_types_global |
64556 | 75 |
[(Binding.make ("fun", \<^here>), 2, NoSyn), |
76 |
(Binding.make ("prop", \<^here>), 0, NoSyn), |
|
77 |
(Binding.make ("itself", \<^here>), 1, NoSyn), |
|
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
78 |
(Binding.make ("dummy", \<^here>), 0, NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
79 |
(qualify (Binding.make ("proof", \<^here>)), 0, NoSyn)] |
74339 | 80 |
#> Theory.add_deps_type "fun" |
81 |
#> Theory.add_deps_type "prop" |
|
82 |
#> Theory.add_deps_type "itself" |
|
83 |
#> Theory.add_deps_type "dummy" |
|
84 |
#> Theory.add_deps_type "Pure.proof" |
|
52160 | 85 |
#> Sign.add_nonterminals_global |
64556 | 86 |
(map (fn name => Binding.make (name, \<^here>)) |
52160 | 87 |
(Lexicon.terminals @ ["logic", "type", "types", "sort", "classes", |
88 |
"args", "cargs", "pttrn", "pttrns", "idt", "idts", "aprop", "asms", |
|
58421 | 89 |
"any", "prop'", "num_const", "float_const", "num_position", |
90 |
"float_position", "index", "struct", "tid_position", |
|
55108
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55033
diff
changeset
|
91 |
"tvar_position", "id_position", "longid_position", "var_position", |
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55033
diff
changeset
|
92 |
"str_position", "string_position", "cartouche_position", "type_name", |
0b7a0c1fdf7e
inner syntax token language allows regular quoted strings;
wenzelm
parents:
55033
diff
changeset
|
93 |
"class_name"])) |
80897
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
94 |
#> Sign.syntax_global true Syntax.mode_default (map (fn x => (x, typ "'a", NoSyn)) token_markers) |
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
95 |
#> Sign.syntax_global true Syntax.mode_default |
67721 | 96 |
[("", typ "prop' \<Rightarrow> prop", Mixfix.mixfix "_"), |
97 |
("", typ "logic \<Rightarrow> any", Mixfix.mixfix "_"), |
|
98 |
("", typ "prop' \<Rightarrow> any", Mixfix.mixfix "_"), |
|
99 |
("", typ "logic \<Rightarrow> logic", Mixfix.mixfix "'(_')"), |
|
100 |
("", typ "prop' \<Rightarrow> prop'", Mixfix.mixfix "'(_')"), |
|
101 |
("_constrain", typ "logic \<Rightarrow> type \<Rightarrow> logic", mixfix ("_::_", [4, 0], 3)), |
|
102 |
("_constrain", typ "prop' \<Rightarrow> type \<Rightarrow> prop'", mixfix ("_::_", [4, 0], 3)), |
|
52211
66bc827e37f8
explicit support for type annotations within printed syntax trees;
wenzelm
parents:
52161
diff
changeset
|
103 |
("_ignore_type", typ "'a", NoSyn), |
67721 | 104 |
("", typ "tid_position \<Rightarrow> type", Mixfix.mixfix "_"), |
105 |
("", typ "tvar_position \<Rightarrow> type", Mixfix.mixfix "_"), |
|
106 |
("", typ "type_name \<Rightarrow> type", Mixfix.mixfix "_"), |
|
107 |
("_type_name", typ "id \<Rightarrow> type_name", Mixfix.mixfix "_"), |
|
108 |
("_type_name", typ "longid \<Rightarrow> type_name", Mixfix.mixfix "_"), |
|
109 |
("_ofsort", typ "tid_position \<Rightarrow> sort \<Rightarrow> type", mixfix ("_::_", [1000, 0], 1000)), |
|
110 |
("_ofsort", typ "tvar_position \<Rightarrow> sort \<Rightarrow> type", mixfix ("_::_", [1000, 0], 1000)), |
|
71546 | 111 |
("_dummy_ofsort", typ "sort \<Rightarrow> type", mixfix ("'_' ::_", [0], 1000)), |
67721 | 112 |
("", typ "class_name \<Rightarrow> sort", Mixfix.mixfix "_"), |
113 |
("_class_name", typ "id \<Rightarrow> class_name", Mixfix.mixfix "_"), |
|
114 |
("_class_name", typ "longid \<Rightarrow> class_name", Mixfix.mixfix "_"), |
|
67718 | 115 |
("_dummy_sort", typ "sort", Mixfix.mixfix "'_"), |
81124 | 116 |
("_topsort", typ "sort", |
117 |
Mixfix.mixfix "(\<open>open_block notation=\<open>mixfix sort\<close>\<close>{})"), |
|
118 |
("_sort", typ "classes \<Rightarrow> sort", |
|
119 |
Mixfix.mixfix "(\<open>open_block notation=\<open>mixfix sort\<close>\<close>{_})"), |
|
67721 | 120 |
("", typ "class_name \<Rightarrow> classes", Mixfix.mixfix "_"), |
121 |
("_classes", typ "class_name \<Rightarrow> classes \<Rightarrow> classes", Mixfix.mixfix "_,_"), |
|
81124 | 122 |
("_tapp", typ "type \<Rightarrow> type_name \<Rightarrow> type", |
123 |
mixfix ("(\<open>open_block notation=\<open>type_application\<close>\<close>_ _)", [1000, 0], 1000)), |
|
80916 | 124 |
("_tappl", typ "type \<Rightarrow> types \<Rightarrow> type_name \<Rightarrow> type", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
125 |
Mixfix.mixfix "(\<open>notation=type_application\<close>(1'(_,/ _')) _)"), |
67721 | 126 |
("", typ "type \<Rightarrow> types", Mixfix.mixfix "_"), |
127 |
("_types", typ "type \<Rightarrow> types \<Rightarrow> types", Mixfix.mixfix "_,/ _"), |
|
80916 | 128 |
("\<^type>fun", typ "type \<Rightarrow> type \<Rightarrow> type", |
129 |
mixfix ("(\<open>notation=\<open>infix \<Rightarrow>\<close>\<close>_/ \<Rightarrow> _)", [1, 0], 0)), |
|
130 |
("_bracket", typ "types \<Rightarrow> type \<Rightarrow> type", |
|
131 |
mixfix ("(\<open>notation=\<open>infix \<Rightarrow>\<close>\<close>[_]/ \<Rightarrow> _)", [0, 0], 0)), |
|
67721 | 132 |
("", typ "type \<Rightarrow> type", Mixfix.mixfix "'(_')"), |
62761 | 133 |
("\<^type>dummy", typ "type", Mixfix.mixfix "'_"), |
42263
49b1b8d0782f
type syntax as regular mixfix specification (type_ext for bootstrapping has been obsolete for many years);
wenzelm
parents:
42245
diff
changeset
|
134 |
("_type_prop", typ "'a", NoSyn), |
80916 | 135 |
("_lambda", typ "pttrns \<Rightarrow> 'a \<Rightarrow> logic", |
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
136 |
mixfix ("(\<open>indent=3 notation=abstraction\<close>\<lambda>_./ _)", [0, 3], 3)), |
26436 | 137 |
("_abs", typ "'a", NoSyn), |
67721 | 138 |
("", typ "'a \<Rightarrow> args", Mixfix.mixfix "_"), |
139 |
("_args", typ "'a \<Rightarrow> args \<Rightarrow> args", Mixfix.mixfix "_,/ _"), |
|
140 |
("", typ "id_position \<Rightarrow> idt", Mixfix.mixfix "_"), |
|
62761 | 141 |
("_idtdummy", typ "idt", Mixfix.mixfix "'_"), |
67721 | 142 |
("_idtyp", typ "id_position \<Rightarrow> type \<Rightarrow> idt", mixfix ("_::_", [], 0)), |
71546 | 143 |
("_idtypdummy", typ "type \<Rightarrow> idt", mixfix ("'_' ::_", [], 0)), |
67721 | 144 |
("", typ "idt \<Rightarrow> idt", Mixfix.mixfix "'(_')"), |
145 |
("", typ "idt \<Rightarrow> idts", Mixfix.mixfix "_"), |
|
146 |
("_idts", typ "idt \<Rightarrow> idts \<Rightarrow> idts", mixfix ("_/ _", [1, 0], 0)), |
|
147 |
("", typ "idt \<Rightarrow> pttrn", Mixfix.mixfix "_"), |
|
148 |
("", typ "pttrn \<Rightarrow> pttrns", Mixfix.mixfix "_"), |
|
149 |
("_pttrns", typ "pttrn \<Rightarrow> pttrns \<Rightarrow> pttrns", mixfix ("_/ _", [1, 0], 0)), |
|
150 |
("", typ "aprop \<Rightarrow> aprop", Mixfix.mixfix "'(_')"), |
|
151 |
("", typ "id_position \<Rightarrow> aprop", Mixfix.mixfix "_"), |
|
152 |
("", typ "longid_position \<Rightarrow> aprop", Mixfix.mixfix "_"), |
|
153 |
("", typ "var_position \<Rightarrow> aprop", Mixfix.mixfix "_"), |
|
62761 | 154 |
("_DDDOT", typ "aprop", Mixfix.mixfix "\<dots>"), |
81124 | 155 |
("_aprop", typ "aprop \<Rightarrow> prop", |
156 |
Mixfix.mixfix "(\<open>open_block notation=\<open>mixfix atomic prop\<close>\<close>PROP _)"), |
|
67721 | 157 |
("_asm", typ "prop \<Rightarrow> asms", Mixfix.mixfix "_"), |
158 |
("_asms", typ "prop \<Rightarrow> asms \<Rightarrow> asms", Mixfix.mixfix "_;/ _"), |
|
80916 | 159 |
("_bigimpl", typ "asms \<Rightarrow> prop \<Rightarrow> prop", |
160 |
mixfix ("(\<open>notation=\<open>infix \<Longrightarrow>\<close>\<close>(1\<lbrakk>_\<rbrakk>)/ \<Longrightarrow> _)", [0, 1], 1)), |
|
67721 | 161 |
("_ofclass", typ "type \<Rightarrow> logic \<Rightarrow> prop", Mixfix.mixfix "(1OFCLASS/(1'(_,/ _')))"), |
26436 | 162 |
("_mk_ofclass", typ "dummy", NoSyn), |
67721 | 163 |
("_TYPE", typ "type \<Rightarrow> logic", Mixfix.mixfix "(1TYPE/(1'(_')))"), |
164 |
("", typ "id_position \<Rightarrow> logic", Mixfix.mixfix "_"), |
|
165 |
("", typ "longid_position \<Rightarrow> logic", Mixfix.mixfix "_"), |
|
166 |
("", typ "var_position \<Rightarrow> logic", Mixfix.mixfix "_"), |
|
62761 | 167 |
("_DDDOT", typ "logic", Mixfix.mixfix "\<dots>"), |
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
|
168 |
("_strip_positions", typ "'a", NoSyn), |
67721 | 169 |
("_position", typ "num_token \<Rightarrow> num_position", Mixfix.mixfix "_"), |
170 |
("_position", typ "float_token \<Rightarrow> float_position", Mixfix.mixfix "_"), |
|
171 |
("_constify", typ "num_position \<Rightarrow> num_const", Mixfix.mixfix "_"), |
|
172 |
("_constify", typ "float_position \<Rightarrow> float_const", Mixfix.mixfix "_"), |
|
173 |
("_index", typ "logic \<Rightarrow> index", Mixfix.mixfix "(\<open>unbreakable\<close>\<^bsub>_\<^esub>)"), |
|
62761 | 174 |
("_indexdefault", typ "index", Mixfix.mixfix ""), |
175 |
("_indexvar", typ "index", Mixfix.mixfix "'\<index>"), |
|
67721 | 176 |
("_struct", typ "index \<Rightarrow> logic", NoSyn), |
35145
f132a4fd8679
moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents:
35130
diff
changeset
|
177 |
("_update_name", typ "idt", NoSyn), |
42295
8fdbb3b10beb
moved CONST syntax/translations to their proper place;
wenzelm
parents:
42294
diff
changeset
|
178 |
("_constrainAbs", typ "'a", NoSyn), |
67721 | 179 |
("_position_sort", typ "tid \<Rightarrow> tid_position", Mixfix.mixfix "_"), |
180 |
("_position_sort", typ "tvar \<Rightarrow> tvar_position", Mixfix.mixfix "_"), |
|
181 |
("_position", typ "id \<Rightarrow> id_position", Mixfix.mixfix "_"), |
|
182 |
("_position", typ "longid \<Rightarrow> longid_position", Mixfix.mixfix "_"), |
|
183 |
("_position", typ "var \<Rightarrow> var_position", Mixfix.mixfix "_"), |
|
184 |
("_position", typ "str_token \<Rightarrow> str_position", Mixfix.mixfix "_"), |
|
185 |
("_position", typ "string_token \<Rightarrow> string_position", Mixfix.mixfix "_"), |
|
186 |
("_position", typ "cartouche \<Rightarrow> cartouche_position", Mixfix.mixfix "_"), |
|
42048
afd11ca8e018
support for encoded positions (for id_position, longid_position) as pseudo type-constraints -- still inactive;
wenzelm
parents:
39557
diff
changeset
|
187 |
("_type_constraint_", typ "'a", NoSyn), |
67721 | 188 |
("_context_const", typ "id_position \<Rightarrow> logic", Mixfix.mixfix "CONST _"), |
189 |
("_context_const", typ "id_position \<Rightarrow> aprop", Mixfix.mixfix "CONST _"), |
|
190 |
("_context_const", typ "longid_position \<Rightarrow> logic", Mixfix.mixfix "CONST _"), |
|
191 |
("_context_const", typ "longid_position \<Rightarrow> aprop", Mixfix.mixfix "CONST _"), |
|
192 |
("_context_xconst", typ "id_position \<Rightarrow> logic", Mixfix.mixfix "XCONST _"), |
|
193 |
("_context_xconst", typ "id_position \<Rightarrow> aprop", Mixfix.mixfix "XCONST _"), |
|
194 |
("_context_xconst", typ "longid_position \<Rightarrow> logic", Mixfix.mixfix "XCONST _"), |
|
195 |
("_context_xconst", typ "longid_position \<Rightarrow> aprop", Mixfix.mixfix "XCONST _"), |
|
62761 | 196 |
(const "Pure.dummy_pattern", typ "aprop", Mixfix.mixfix "'_"), |
67721 | 197 |
("_sort_constraint", typ "type \<Rightarrow> prop", Mixfix.mixfix "(1SORT'_CONSTRAINT/(1'(_')))"), |
198 |
(const "Pure.term", typ "logic \<Rightarrow> prop", Mixfix.mixfix "TERM _"), |
|
199 |
(const "Pure.conjunction", typ "prop \<Rightarrow> prop \<Rightarrow> prop", infixr_ ("&&&", 2))] |
|
80897
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
200 |
#> Sign.syntax_global true Syntax.mode_default applC_syntax |
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
201 |
#> Sign.syntax_global true (Print_Mode.ASCII, true) |
80916 | 202 |
[(tycon "fun", typ "type \<Rightarrow> type \<Rightarrow> type", |
203 |
mixfix ("(\<open>notation=\<open>infix =>\<close>\<close>_/ => _)", [1, 0], 0)), |
|
204 |
("_bracket", typ "types \<Rightarrow> type \<Rightarrow> type", |
|
205 |
mixfix ("(\<open>notation=\<open>infix =>\<close>\<close>[_]/ => _)", [0, 0], 0)), |
|
206 |
("_lambda", typ "pttrns \<Rightarrow> 'a \<Rightarrow> logic", |
|
80921
a37ed1aeb163
clarified inner syntax markup: use "notation" uniformly;
wenzelm
parents:
80916
diff
changeset
|
207 |
mixfix ("(\<open>indent=3 notation=abstraction\<close>%_./ _)", [0, 3], 3)), |
67721 | 208 |
(const "Pure.eq", typ "'a \<Rightarrow> 'a \<Rightarrow> prop", infix_ ("==", 2)), |
80916 | 209 |
(const "Pure.all_binder", typ "idts \<Rightarrow> prop \<Rightarrow> prop", |
210 |
mixfix ("(\<open>indent=3 notation=\<open>binder !!\<close>\<close>!!_./ _)", [0, 0], 0)), |
|
67721 | 211 |
(const "Pure.imp", typ "prop \<Rightarrow> prop \<Rightarrow> prop", infixr_ ("==>", 1)), |
62761 | 212 |
("_DDDOT", typ "aprop", Mixfix.mixfix "..."), |
80916 | 213 |
("_bigimpl", typ "asms \<Rightarrow> prop \<Rightarrow> prop", |
214 |
mixfix ("(\<open>notation=\<open>infix \<Longrightarrow>\<close>\<close>(3[| _ |])/ ==> _)", [0, 1], 1)), |
|
62761 | 215 |
("_DDDOT", typ "logic", Mixfix.mixfix "...")] |
80897
5328d67ec647
more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents:
80753
diff
changeset
|
216 |
#> Sign.syntax_global true ("", false) |
67721 | 217 |
[(const "Pure.prop", typ "prop \<Rightarrow> prop", mixfix ("_", [0], 0))] |
56239 | 218 |
#> Sign.add_consts |
67721 | 219 |
[(qualify (Binding.make ("eq", \<^here>)), typ "'a \<Rightarrow> 'a \<Rightarrow> prop", infix_ ("\<equiv>", 2)), |
220 |
(qualify (Binding.make ("imp", \<^here>)), typ "prop \<Rightarrow> prop \<Rightarrow> prop", infixr_ ("\<Longrightarrow>", 1)), |
|
221 |
(qualify (Binding.make ("all", \<^here>)), typ "('a \<Rightarrow> prop) \<Rightarrow> prop", binder ("\<And>", 0, 0)), |
|
222 |
(qualify (Binding.make ("prop", \<^here>)), typ "prop \<Rightarrow> prop", NoSyn), |
|
64556 | 223 |
(qualify (Binding.make ("type", \<^here>)), typ "'a itself", NoSyn), |
70388
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
224 |
(qualify (Binding.make ("dummy_pattern", \<^here>)), typ "'a", Mixfix.mixfix "'_"), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
225 |
(qualify (Binding.make ("Appt", \<^here>)), typ "Pure.proof \<Rightarrow> 'a \<Rightarrow> Pure.proof", NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
226 |
(qualify (Binding.make ("AppP", \<^here>)), typ "Pure.proof \<Rightarrow> Pure.proof \<Rightarrow> Pure.proof", NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
227 |
(qualify (Binding.make ("Abst", \<^here>)), typ "('a \<Rightarrow> Pure.proof) \<Rightarrow> Pure.proof", NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
228 |
(qualify (Binding.make ("AbsP", \<^here>)), typ "prop \<Rightarrow> (Pure.proof \<Rightarrow> Pure.proof) \<Rightarrow> Pure.proof", NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
229 |
(qualify (Binding.make ("Hyp", \<^here>)), typ "prop \<Rightarrow> Pure.proof", NoSyn), |
e31271559de8
global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents:
67721
diff
changeset
|
230 |
(qualify (Binding.make ("Oracle", \<^here>)), typ "prop \<Rightarrow> Pure.proof", NoSyn), |
71777
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents:
71546
diff
changeset
|
231 |
(qualify (Binding.make ("PClass", \<^here>)), typ "('a itself \<Rightarrow> prop) \<Rightarrow> Pure.proof", NoSyn), |
70403
468cfd56ee03
avoid global syntax for MinProof (amending e31271559de8);
wenzelm
parents:
70388
diff
changeset
|
232 |
(qualify (Binding.make ("MinProof", \<^here>)), typ "Pure.proof", NoSyn)] |
74339 | 233 |
#> Theory.add_deps_const "Pure.eq" |
234 |
#> Theory.add_deps_const "Pure.imp" |
|
235 |
#> Theory.add_deps_const "Pure.all" |
|
236 |
#> Theory.add_deps_const "Pure.type" |
|
237 |
#> Theory.add_deps_const "Pure.dummy_pattern" |
|
52143 | 238 |
#> Sign.parse_ast_translation Syntax_Trans.pure_parse_ast_translation |
239 |
#> Sign.parse_translation Syntax_Trans.pure_parse_translation |
|
240 |
#> Sign.print_ast_translation Syntax_Trans.pure_print_ast_translation |
|
80753 | 241 |
#> Sign.syntax_deps |
242 |
[("_bracket", ["\<^type>fun"]), ("_bigimpl", ["\<^const>Pure.imp"])] |
|
56239 | 243 |
#> Sign.add_consts |
67721 | 244 |
[(qualify (Binding.make ("term", \<^here>)), typ "'a \<Rightarrow> prop", NoSyn), |
245 |
(qualify (Binding.make ("sort_constraint", \<^here>)), typ "'a itself \<Rightarrow> prop", NoSyn), |
|
246 |
(qualify (Binding.make ("conjunction", \<^here>)), typ "prop \<Rightarrow> prop \<Rightarrow> prop", NoSyn)] |
|
26430 | 247 |
#> Sign.local_path |
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79120
diff
changeset
|
248 |
#> fold (snd oo Global_Theory.add_def) |
64556 | 249 |
[(Binding.make ("prop_def", \<^here>), |
67721 | 250 |
prop "(CONST Pure.prop :: prop \<Rightarrow> prop) (A::prop) \<equiv> A::prop"), |
64556 | 251 |
(Binding.make ("term_def", \<^here>), |
67721 | 252 |
prop "(CONST Pure.term :: 'a \<Rightarrow> prop) (x::'a) \<equiv> (\<And>A::prop. A \<Longrightarrow> A)"), |
64556 | 253 |
(Binding.make ("sort_constraint_def", \<^here>), |
67721 | 254 |
prop "(CONST Pure.sort_constraint :: 'a itself \<Rightarrow> prop) (CONST Pure.type :: 'a itself) \<equiv>\ |
255 |
\ (CONST Pure.term :: 'a itself \<Rightarrow> prop) (CONST Pure.type :: 'a itself)"), |
|
64556 | 256 |
(Binding.make ("conjunction_def", \<^here>), |
79336
032a31db4c6f
clarified signature: downgrade old-style Global_Theory.add_defs to Global_Theory.add_def without attributes;
wenzelm
parents:
79120
diff
changeset
|
257 |
prop "(A &&& B) \<equiv> (\<And>C::prop. (A \<Longrightarrow> B \<Longrightarrow> C) \<Longrightarrow> C)")] |
79120 | 258 |
#> fold (#2 oo Thm.add_axiom_global) Theory.equality_axioms); |
3987 | 259 |
|
260 |
end; |