author | wenzelm |
Wed, 11 Aug 2010 18:41:06 +0200 | |
changeset 38353 | d98baa2cf589 |
parent 37216 | 3165bc303f66 |
child 38975 | ef13a2cc97be |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
26430 | 4 |
Theorem storage. Pure theory syntax and logical content. |
3987 | 5 |
*) |
6 |
||
7 |
signature PURE_THY = |
|
8 |
sig |
|
27198 | 9 |
val facts_of: theory -> Facts.T |
26666 | 10 |
val intern_fact: theory -> xstring -> string |
26693 | 11 |
val defined_fact: theory -> string -> bool |
27198 | 12 |
val hide_fact: bool -> string -> theory -> theory |
32105 | 13 |
val join_proofs: theory -> unit |
26683 | 14 |
val get_fact: Context.generic -> theory -> Facts.ref -> thm list |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
15 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
16 |
val get_thm: theory -> xstring -> thm |
16336 | 17 |
val all_thms_of: theory -> (string * thm) list |
21580 | 18 |
val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
21567 | 19 |
val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list |
21580 | 20 |
val burrow_facts: ('a list -> 'b list) -> |
21 |
('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
|
22 |
val name_multi: string -> 'a list -> (string * 'a) list |
|
33700 | 23 |
val name_thm: bool -> bool -> string -> thm -> thm |
24 |
val name_thms: bool -> bool -> string -> thm list -> thm list |
|
25 |
val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list |
|
29579 | 26 |
val store_thms: binding * thm list -> theory -> thm list * theory |
27 |
val store_thm: binding * thm -> theory -> thm * theory |
|
28 |
val store_thm_open: binding * thm -> theory -> thm * theory |
|
29 |
val add_thms: ((binding * thm) * attribute list) list -> theory -> thm list * theory |
|
30 |
val add_thm: (binding * thm) * attribute list -> theory -> thm * theory |
|
31 |
val add_thmss: ((binding * thm list) * attribute list) list -> theory -> thm list list * theory |
|
32 |
val add_thms_dynamic: binding * (Context.generic -> thm list) -> theory -> theory |
|
30853 | 33 |
val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list |
34 |
-> theory -> (string * thm list) list * theory |
|
29579 | 35 |
val add_defs: bool -> ((binding * term) * attribute list) list -> |
18377 | 36 |
theory -> thm list * theory |
29579 | 37 |
val add_defs_unchecked: bool -> ((binding * term) * attribute list) list -> |
38 |
theory -> thm list * theory |
|
30337
eb189f7e43a1
Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents:
30242
diff
changeset
|
39 |
val add_defs_cmd: bool -> ((binding * string) * attribute list) list -> |
18377 | 40 |
theory -> thm list * theory |
30337
eb189f7e43a1
Theory.add_axioms/add_defs: replaced old bstring by binding;
wenzelm
parents:
30242
diff
changeset
|
41 |
val add_defs_unchecked_cmd: bool -> ((binding * string) * attribute list) list -> |
19629 | 42 |
theory -> thm list * theory |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
43 |
val old_appl_syntax: theory -> bool |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
44 |
val old_appl_syntax_setup: theory -> theory |
3987 | 45 |
end; |
46 |
||
47 |
structure PureThy: PURE_THY = |
|
48 |
struct |
|
49 |
||
50 |
||
27198 | 51 |
(*** stored facts ***) |
3987 | 52 |
|
27198 | 53 |
(** theory data **) |
26282
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
54 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
55 |
structure Global_Facts = Theory_Data |
24713 | 56 |
( |
32105 | 57 |
type T = Facts.T * thm list; |
58 |
val empty = (Facts.empty, []); |
|
59 |
fun extend (facts, _) = (facts, []); |
|
33522 | 60 |
fun merge ((facts1, _), (facts2, _)) = (Facts.merge (facts1, facts2), []); |
24713 | 61 |
); |
3987 | 62 |
|
28841
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
63 |
|
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
64 |
(* facts *) |
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
65 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
66 |
val facts_of = #1 o Global_Facts.get; |
26666 | 67 |
|
68 |
val intern_fact = Facts.intern o facts_of; |
|
26693 | 69 |
val defined_fact = Facts.defined o facts_of; |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
70 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
71 |
fun hide_fact fully name = Global_Facts.map (apfst (Facts.hide fully name)); |
28841
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
72 |
|
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
73 |
|
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
74 |
(* proofs *) |
5556c7976837
added force_proofs (based on thms ever passed through enter_thms);
wenzelm
parents:
28674
diff
changeset
|
75 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
76 |
fun register_proofs (thy, thms) = (Global_Facts.map (apsnd (append thms)) thy, thms); |
28977 | 77 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
78 |
fun join_proofs thy = Thm.join_proofs (rev (#2 (Global_Facts.get thy))); |
27198 | 79 |
|
6367 | 80 |
|
3987 | 81 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
82 |
(** retrieve theorems **) |
3987 | 83 |
|
27198 | 84 |
fun get_fact context thy xthmref = |
26683 | 85 |
let |
86 |
val xname = Facts.name_of_ref xthmref; |
|
87 |
val pos = Facts.pos_of_ref xthmref; |
|
27198 | 88 |
|
89 |
val name = intern_fact thy xname; |
|
90 |
val res = Facts.lookup context (facts_of thy) name; |
|
91 |
val _ = Theory.check_thy thy; |
|
26683 | 92 |
in |
27198 | 93 |
(case res of |
94 |
NONE => error ("Unknown fact " ^ quote name ^ Position.str_of pos) |
|
27739 | 95 |
| SOME (static, ths) => |
96 |
(Position.report ((if static then Markup.fact else Markup.dynamic_fact) name) pos; |
|
97 |
Facts.select xthmref (map (Thm.transfer thy) ths))) |
|
26683 | 98 |
end; |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
99 |
|
26683 | 100 |
fun get_thms thy = get_fact (Context.Theory thy) thy o Facts.named; |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
101 |
fun get_thm thy name = Facts.the_single name (get_thms thy name); |
4783 | 102 |
|
27198 | 103 |
fun all_thms_of thy = |
27865
27a8ad9612a3
moved basic thm operations from structure PureThy to Thm (cf. more_thm.ML);
wenzelm
parents:
27739
diff
changeset
|
104 |
Facts.fold_static (fn (_, ths) => append (map (`(Thm.get_name_hint)) ths)) (facts_of thy) []; |
16336 | 105 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
106 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
107 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
108 |
(** store theorems **) |
3987 | 109 |
|
21580 | 110 |
(* fact specifications *) |
111 |
||
112 |
fun map_facts f = map (apsnd (map (apfst (map f)))); |
|
113 |
fun burrow_fact f = split_list #>> burrow f #> op ~~; |
|
114 |
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; |
|
115 |
||
116 |
||
4853 | 117 |
(* naming *) |
118 |
||
18801 | 119 |
fun name_multi name [x] = [(name, x)] |
26457 | 120 |
| name_multi "" xs = map (pair "") xs |
121 |
| name_multi name xs = map_index (fn (i, x) => (name ^ "_" ^ string_of_int (i + 1), x)) xs; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
122 |
|
33700 | 123 |
fun name_thm pre official name thm = thm |
36744
6e1f3d609a68
renamed Thm.get_name -> Thm.derivation_name and Thm.put_name -> Thm.name_derivation, to emphasize the true nature of these operations;
wenzelm
parents:
36106
diff
changeset
|
124 |
|> not (Thm.derivation_name thm <> "" andalso pre orelse not official) ? Thm.name_derivation name |
33700 | 125 |
|> (if Thm.has_name_hint thm andalso pre orelse name = "" then I else Thm.put_name_hint name); |
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
126 |
|
33700 | 127 |
fun name_thms pre official name xs = |
128 |
map (uncurry (name_thm pre official)) (name_multi name xs); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
129 |
|
33700 | 130 |
fun name_thmss official name fact = |
131 |
burrow_fact (name_thms true official name) fact; |
|
4853 | 132 |
|
133 |
||
11998 | 134 |
(* enter_thms *) |
4853 | 135 |
|
28861 | 136 |
fun enter_thms pre_name post_name app_att (b, thms) thy = |
28965 | 137 |
if Binding.is_empty b |
32105 | 138 |
then swap (register_proofs (app_att (thy, thms))) |
30211 | 139 |
else |
140 |
let |
|
141 |
val naming = Sign.naming_of thy; |
|
33095
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents:
32786
diff
changeset
|
142 |
val name = Name_Space.full_name naming b; |
30211 | 143 |
val (thy', thms') = |
32105 | 144 |
register_proofs (apsnd (post_name name) (app_att (thy, pre_name name thms))); |
30211 | 145 |
val thms'' = map (Thm.transfer thy') thms'; |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
146 |
val thy'' = thy' |> (Global_Facts.map o apfst) (Facts.add_global naming (b, thms'') #> snd); |
30211 | 147 |
in (thms'', thy'') end; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
148 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
149 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
150 |
(* store_thm(s) *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
151 |
|
33700 | 152 |
fun store_thms (b, thms) = |
153 |
enter_thms (name_thms true true) (name_thms false true) I (b, thms); |
|
28076 | 154 |
|
29579 | 155 |
fun store_thm (b, th) = store_thms (b, [th]) #>> the_single; |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
156 |
|
29579 | 157 |
fun store_thm_open (b, th) = |
33700 | 158 |
enter_thms (name_thms true false) (name_thms false false) I (b, [th]) #>> the_single; |
3987 | 159 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
160 |
|
6091 | 161 |
(* add_thms(s) *) |
4853 | 162 |
|
29579 | 163 |
fun add_thms_atts pre_name ((b, thms), atts) = |
33700 | 164 |
enter_thms pre_name (name_thms false true) |
30190 | 165 |
(Library.foldl_map (Thm.theory_attributes atts)) (b, thms); |
4853 | 166 |
|
18377 | 167 |
fun gen_add_thmss pre_name = |
168 |
fold_map (add_thms_atts pre_name); |
|
5907 | 169 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
170 |
fun gen_add_thms pre_name args = |
18377 | 171 |
apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
172 |
|
33700 | 173 |
val add_thmss = gen_add_thmss (name_thms true true); |
174 |
val add_thms = gen_add_thms (name_thms true true); |
|
27683 | 175 |
val add_thm = yield_singleton add_thms; |
5907 | 176 |
|
177 |
||
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
178 |
(* add_thms_dynamic *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
179 |
|
29579 | 180 |
fun add_thms_dynamic (b, f) thy = thy |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
181 |
|> (Global_Facts.map o apfst) |
29579 | 182 |
(Facts.add_dynamic (Sign.naming_of thy) (b, f) #> snd); |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
183 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
184 |
|
27728 | 185 |
(* note_thmss *) |
5907 | 186 |
|
33167 | 187 |
fun note_thmss kind = fold_map (fn ((b, more_atts), ths_atts) => fn thy => |
12711 | 188 |
let |
28941 | 189 |
val pos = Binding.pos_of b; |
28965 | 190 |
val name = Sign.full_name thy b; |
28076 | 191 |
val _ = Position.report (Markup.fact_decl name) pos; |
192 |
||
30190 | 193 |
fun app (x, (ths, atts)) = Library.foldl_map (Thm.theory_attributes atts) (x, ths); |
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
194 |
val (thms, thy') = thy |> enter_thms |
33700 | 195 |
(name_thmss true) (name_thms false true) (apsnd flat o Library.foldl_map app) |
33167 | 196 |
(b, map (fn (ths, atts) => (ths, surround (Thm.kind kind) (atts @ more_atts))) ths_atts); |
28076 | 197 |
in ((name, thms), thy') end); |
12711 | 198 |
|
5280 | 199 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
200 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
201 |
|
4853 | 202 |
local |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
203 |
|
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
204 |
fun no_read _ (_, t) = t; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
205 |
|
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
206 |
fun read thy (b, str) = |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
207 |
Syntax.read_prop_global thy str handle ERROR msg => |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
208 |
cat_error msg ("The error(s) above occurred in definition " ^ quote (Binding.str_of b)); |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
209 |
|
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
210 |
fun add prep unchecked overloaded = fold_map (fn ((b, raw_prop), atts) => fn thy => |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
211 |
let |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
212 |
val prop = prep thy (b, raw_prop); |
36106
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents:
35985
diff
changeset
|
213 |
val ((_, def), thy') = Thm.add_def unchecked overloaded (b, prop) thy; |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
214 |
val thm = def |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
215 |
|> Thm.forall_intr_frees |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
216 |
|> Thm.forall_elim_vars 0 |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
217 |
|> Thm.varifyT_global; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
218 |
in yield_singleton (gen_add_thms (K I)) ((b, thm), atts) thy' end); |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
219 |
|
4853 | 220 |
in |
35985
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
221 |
|
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
222 |
val add_defs = add no_read false; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
223 |
val add_defs_unchecked = add no_read true; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
224 |
val add_defs_cmd = add read false; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
225 |
val add_defs_unchecked_cmd = add read true; |
0bbf0d2348f9
moved Drule.forall_intr_frees to Thm.forall_intr_frees (in more_thm.ML, which is loaded before pure_thy.ML);
wenzelm
parents:
35856
diff
changeset
|
226 |
|
4853 | 227 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
228 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
229 |
|
3987 | 230 |
|
26430 | 231 |
(*** Pure theory syntax and logical content ***) |
3987 | 232 |
|
33384 | 233 |
val typ = Simple_Syntax.read_typ; |
234 |
val prop = Simple_Syntax.read_prop; |
|
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
235 |
|
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
236 |
val tycon = Syntax.mark_type; |
35262
9ea4445d2ccf
slightly more abstract syntax mark/unmark operations;
wenzelm
parents:
35255
diff
changeset
|
237 |
val const = Syntax.mark_const; |
24243 | 238 |
|
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28841
diff
changeset
|
239 |
val typeT = Syntax.typeT; |
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28841
diff
changeset
|
240 |
val spropT = Syntax.spropT; |
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28841
diff
changeset
|
241 |
|
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
242 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
243 |
(* application syntax variants *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
244 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
245 |
val appl_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
246 |
[("_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
|
247 |
("_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
|
248 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
249 |
val applC_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
250 |
[("", typ "'a => cargs", Delimfix "_"), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
251 |
("_cargs", typ "'a => cargs => cargs", Mixfix ("_/ _", [1000, 1000], 1000)), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
252 |
("_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
|
253 |
("_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
|
254 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
255 |
structure Old_Appl_Syntax = Theory_Data |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
256 |
( |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
257 |
type T = bool; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
258 |
val empty = false; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
259 |
val extend = I; |
33522 | 260 |
fun merge (b1, b2) : T = |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
261 |
if b1 = b2 then b1 |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
262 |
else error "Cannot merge theories with different application syntax"; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
263 |
); |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
264 |
|
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
265 |
val old_appl_syntax = Old_Appl_Syntax.get; |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
266 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
267 |
val old_appl_syntax_setup = |
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
36744
diff
changeset
|
268 |
Old_Appl_Syntax.put true #> |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
269 |
Sign.del_modesyntax_i Syntax.mode_default applC_syntax #> |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
270 |
Sign.add_syntax_i appl_syntax; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
271 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
272 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
273 |
(* main content *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
274 |
|
26463 | 275 |
val _ = Context.>> (Context.map_theory |
33365 | 276 |
(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
|
277 |
Old_Appl_Syntax.put false #> |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
278 |
Sign.add_types |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
279 |
[(Binding.name "fun", 2, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
280 |
(Binding.name "prop", 0, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
281 |
(Binding.name "itself", 1, NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
282 |
(Binding.name "dummy", 0, NoSyn)] |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
283 |
#> Sign.add_nonterminals (map Binding.name Syntax.basic_nonterms) |
26430 | 284 |
#> Sign.add_syntax_i |
26436 | 285 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
286 |
("_abs", typ "'a", NoSyn), |
|
287 |
("", typ "'a => args", Delimfix "_"), |
|
288 |
("_args", typ "'a => args => args", Delimfix "_,/ _"), |
|
289 |
("", typ "id => idt", Delimfix "_"), |
|
290 |
("_idtdummy", typ "idt", Delimfix "'_"), |
|
291 |
("_idtyp", typ "id => type => idt", Mixfix ("_::_", [], 0)), |
|
292 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()::_", [], 0)), |
|
293 |
("", typ "idt => idt", Delimfix "'(_')"), |
|
294 |
("", typ "idt => idts", Delimfix "_"), |
|
295 |
("_idts", typ "idt => idts => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
296 |
("", typ "idt => pttrn", Delimfix "_"), |
|
297 |
("", typ "pttrn => pttrns", Delimfix "_"), |
|
298 |
("_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
|
299 |
("", typ "aprop => aprop", Delimfix "'(_')"), |
26436 | 300 |
("", typ "id => aprop", Delimfix "_"), |
301 |
("", typ "longid => aprop", Delimfix "_"), |
|
302 |
("", typ "var => aprop", Delimfix "_"), |
|
303 |
("_DDDOT", typ "aprop", Delimfix "..."), |
|
304 |
("_aprop", typ "aprop => prop", Delimfix "PROP _"), |
|
305 |
("_asm", typ "prop => asms", Delimfix "_"), |
|
306 |
("_asms", typ "prop => asms => asms", Delimfix "_;/ _"), |
|
307 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
308 |
("_ofclass", typ "type => logic => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
309 |
("_mk_ofclass", typ "dummy", NoSyn), |
|
310 |
("_TYPE", typ "type => logic", Delimfix "(1TYPE/(1'(_')))"), |
|
311 |
("", typ "id => logic", Delimfix "_"), |
|
312 |
("", typ "longid => logic", Delimfix "_"), |
|
313 |
("", typ "var => logic", Delimfix "_"), |
|
314 |
("_DDDOT", typ "logic", Delimfix "..."), |
|
315 |
("_constify", typ "num => num_const", Delimfix "_"), |
|
29156
89f76a58a378
renamed terminal category "float" to "float_token", to avoid name
wenzelm
parents:
29002
diff
changeset
|
316 |
("_constify", typ "float_token => float_const", Delimfix "_"), |
26436 | 317 |
("_indexnum", typ "num_const => index", Delimfix "\\<^sub>_"), |
318 |
("_index", typ "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
319 |
("_indexdefault", typ "index", Delimfix ""), |
|
320 |
("_indexvar", typ "index", Delimfix "'\\<index>"), |
|
321 |
("_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
|
322 |
("_update_name", typ "idt", NoSyn), |
35255 | 323 |
(const "==>", typ "prop => prop => prop", Delimfix "op ==>"), |
324 |
(const Term.dummy_patternN, typ "aprop", Delimfix "'_"), |
|
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28841
diff
changeset
|
325 |
("_sort_constraint", typ "type => prop", Delimfix "(1SORT'_CONSTRAINT/(1'(_')))"), |
35255 | 326 |
(const "Pure.term", typ "logic => prop", Delimfix "TERM _"), |
327 |
(const "Pure.conjunction", typ "prop => prop => prop", Infixr ("&&&", 2))] |
|
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
328 |
#> Sign.add_syntax_i applC_syntax |
26430 | 329 |
#> Sign.add_modesyntax_i (Symbol.xsymbolsN, true) |
35429
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
330 |
[(tycon "fun", typ "type => type => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
331 |
("_bracket", typ "types => type => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
332 |
("_ofsort", typ "tid => sort => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
333 |
("_constrain", typ "logic => type => logic", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
334 |
("_constrain", [spropT, typeT] ---> spropT, Mixfix ("_\\<Colon>_", [4, 0], 3)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
335 |
("_idtyp", typ "id => type => idt", Mixfix ("_\\<Colon>_", [], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
336 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
337 |
("_type_constraint_", typ "'a", NoSyn), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
338 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
339 |
(const "==", typ "'a => 'a => prop", Infixr ("\\<equiv>", 2)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
340 |
(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
|
341 |
(const "==>", typ "prop => prop => prop", Infixr ("\\<Longrightarrow>", 1)), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
342 |
("_DDDOT", typ "aprop", Delimfix "\\<dots>"), |
afa8cf9e63d8
authentic syntax for classes and type constructors;
wenzelm
parents:
35262
diff
changeset
|
343 |
("_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
|
344 |
("_DDDOT", typ "logic", Delimfix "\\<dots>")] |
26430 | 345 |
#> Sign.add_modesyntax_i ("", false) |
35255 | 346 |
[(const "prop", typ "prop => prop", Mixfix ("_", [0], 0))] |
26430 | 347 |
#> Sign.add_modesyntax_i ("HTML", false) |
24243 | 348 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
26430 | 349 |
#> Sign.add_consts_i |
35130 | 350 |
[(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
|
351 |
(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
|
352 |
(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
|
353 |
(Binding.name "prop", typ "prop => prop", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
354 |
(Binding.name "TYPE", typ "'a itself", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
355 |
(Binding.name Term.dummy_patternN, typ "'a", Delimfix "'_")] |
26430 | 356 |
#> Theory.add_deps "==" ("==", typ "'a => 'a => prop") [] |
357 |
#> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") [] |
|
358 |
#> Theory.add_deps "all" ("all", typ "('a => prop) => prop") [] |
|
359 |
#> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") [] |
|
360 |
#> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") [] |
|
361 |
#> Sign.add_trfuns Syntax.pure_trfuns |
|
362 |
#> Sign.add_trfunsT Syntax.pure_trfunsT |
|
363 |
#> Sign.local_path |
|
364 |
#> Sign.add_consts_i |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
365 |
[(Binding.name "term", typ "'a => prop", NoSyn), |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30337
diff
changeset
|
366 |
(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
|
367 |
(Binding.name "conjunction", typ "prop => prop => prop", NoSyn)] |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
368 |
#> (add_defs false o map Thm.no_attributes) |
29579 | 369 |
[(Binding.name "prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"), |
370 |
(Binding.name "term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"), |
|
371 |
(Binding.name "sort_constraint_def", |
|
28622
1a0b845855ac
added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents:
28076
diff
changeset
|
372 |
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
|
373 |
\ (CONST Pure.term :: 'a itself => prop) (CONST TYPE :: 'a itself)"), |
29579 | 374 |
(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
|
375 |
#> Sign.hide_const false "Pure.term" |
1a0b845855ac
added const sort_constraint with syntax SORT_CONSTRAINT -- logically vacous;
wenzelm
parents:
28076
diff
changeset
|
376 |
#> Sign.hide_const false "Pure.sort_constraint" |
26666 | 377 |
#> Sign.hide_const false "Pure.conjunction" |
29579 | 378 |
#> add_thmss [((Binding.name "nothing", []), [])] #> snd |
35856
f81557a124d5
replaced PureThy.add_axioms by more basic Drule.add_axiom, which is old-style nonetheless;
wenzelm
parents:
35852
diff
changeset
|
379 |
#> fold (fn (a, prop) => snd o Thm.add_axiom (Binding.name a, prop)) Proofterm.equality_axms)); |
3987 | 380 |
|
381 |
end; |