author | haftmann |
Tue, 29 Jul 2008 08:15:40 +0200 | |
changeset 27691 | ce171cbd4b93 |
parent 27683 | add9a605d562 |
child 27728 | 9a9e54042800 |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
26430 | 5 |
Theorem storage. Pure theory syntax and logical content. |
3987 | 6 |
*) |
7 |
||
8 |
signature PURE_THY = |
|
9 |
sig |
|
23657 | 10 |
val tag_rule: Markup.property -> thm -> thm |
18801 | 11 |
val untag_rule: string -> thm -> thm |
23657 | 12 |
val tag: Markup.property -> attribute |
18801 | 13 |
val untag: string -> attribute |
21964 | 14 |
val has_name_hint: thm -> bool |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
15 |
val get_name_hint: thm -> string |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
16 |
val put_name_hint: string -> thm -> thm |
25981 | 17 |
val get_group: thm -> string option |
18 |
val put_group: string -> thm -> thm |
|
19 |
val group: string -> attribute |
|
22251 | 20 |
val has_kind: thm -> bool |
18801 | 21 |
val get_kind: thm -> string |
22 |
val kind_rule: string -> thm -> thm |
|
23 |
val kind: string -> attribute |
|
24 |
val kind_internal: attribute |
|
23657 | 25 |
val has_internal: Markup.property list -> bool |
18801 | 26 |
val is_internal: thm -> bool |
27198 | 27 |
val facts_of: theory -> Facts.T |
26666 | 28 |
val intern_fact: theory -> xstring -> string |
26693 | 29 |
val defined_fact: theory -> string -> bool |
27198 | 30 |
val hide_fact: bool -> string -> theory -> theory |
26683 | 31 |
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
|
32 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
33 |
val get_thm: theory -> xstring -> thm |
16336 | 34 |
val all_thms_of: theory -> (string * thm) list |
21580 | 35 |
val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
21567 | 36 |
val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list |
21580 | 37 |
val burrow_facts: ('a list -> 'b list) -> |
38 |
('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
|
39 |
val name_multi: string -> 'a list -> (string * 'a) list |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
40 |
val name_thm: bool -> bool -> string -> thm -> thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
41 |
val name_thms: bool -> bool -> string -> thm list -> thm list |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
42 |
val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
43 |
val store_thms: bstring * thm list -> theory -> thm list * theory |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
44 |
val store_thm: bstring * thm -> theory -> thm * theory |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
45 |
val store_thm_open: bstring * thm -> theory -> thm * theory |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
46 |
val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory |
27683 | 47 |
val add_thm: (bstring * thm) * attribute list -> theory -> thm * theory |
24965 | 48 |
val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
49 |
val add_thms_dynamic: bstring * (Context.generic -> thm list) -> theory -> theory |
18801 | 50 |
val note_thmss: string -> ((bstring * attribute list) * |
51 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
25981 | 52 |
val note_thmss_grouped: string -> string -> ((bstring * attribute list) * |
53 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
54 |
val note_thmss_cmd: string -> ((bstring * attribute list) * |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
55 |
(Facts.ref * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
56 |
val add_axioms: ((bstring * term) * attribute list) list -> theory -> thm list * theory |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
57 |
val add_axioms_cmd: ((bstring * string) * attribute list) list -> theory -> thm list * theory |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
58 |
val add_defs: bool -> ((bstring * term) * attribute list) list -> |
18377 | 59 |
theory -> thm list * theory |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
60 |
val add_defs_unchecked: bool -> ((bstring * term) * attribute list) list -> |
18377 | 61 |
theory -> thm list * theory |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
62 |
val add_defs_unchecked_cmd: bool -> ((bstring * string) * attribute list) list -> |
19629 | 63 |
theory -> thm list * theory |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
64 |
val add_defs_cmd: bool -> ((bstring * string) * attribute list) list -> |
19629 | 65 |
theory -> thm list * theory |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
66 |
val old_appl_syntax: theory -> bool |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
67 |
val old_appl_syntax_setup: theory -> theory |
3987 | 68 |
end; |
69 |
||
70 |
structure PureThy: PURE_THY = |
|
71 |
struct |
|
72 |
||
73 |
||
18801 | 74 |
(*** theorem tags ***) |
75 |
||
76 |
(* add / delete tags *) |
|
77 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
78 |
fun tag_rule tg = Thm.map_tags (insert (op =) tg); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
79 |
fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s')); |
18801 | 80 |
|
81 |
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x; |
|
82 |
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x; |
|
83 |
||
84 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
85 |
(* unofficial theorem names *) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
86 |
|
23657 | 87 |
fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN); |
22251 | 88 |
|
89 |
val has_name_hint = can the_name_hint; |
|
90 |
val get_name_hint = the_default "??.unknown" o try the_name_hint; |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
91 |
|
23657 | 92 |
fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name); |
21964 | 93 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
94 |
|
25981 | 95 |
(* theorem groups *) |
96 |
||
97 |
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN; |
|
98 |
||
99 |
fun put_group name = |
|
100 |
if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name)); |
|
101 |
||
102 |
fun group name = Thm.rule_attribute (K (put_group name)); |
|
103 |
||
104 |
||
18801 | 105 |
(* theorem kinds *) |
106 |
||
23657 | 107 |
fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN); |
22251 | 108 |
|
109 |
val has_kind = can the_kind; |
|
25981 | 110 |
val get_kind = the_default "" o try the_kind; |
18801 | 111 |
|
23657 | 112 |
fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN; |
18801 | 113 |
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x; |
22363 | 114 |
fun kind_internal x = kind Thm.internalK x; |
23657 | 115 |
fun has_internal tags = exists (fn tg => tg = (Markup.kindN, Thm.internalK)) tags; |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
116 |
val is_internal = has_internal o Thm.get_tags; |
18801 | 117 |
|
118 |
||
119 |
||
27198 | 120 |
(*** stored facts ***) |
3987 | 121 |
|
27198 | 122 |
(** 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
|
123 |
|
27198 | 124 |
structure FactsData = TheoryDataFun |
24713 | 125 |
( |
27198 | 126 |
type T = Facts.T; |
127 |
val empty = Facts.empty; |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
128 |
val copy = I; |
27198 | 129 |
val extend = I; |
130 |
fun merge _ = Facts.merge; |
|
24713 | 131 |
); |
3987 | 132 |
|
27198 | 133 |
val facts_of = FactsData.get; |
26666 | 134 |
|
135 |
val intern_fact = Facts.intern o facts_of; |
|
26693 | 136 |
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
|
137 |
|
27198 | 138 |
fun hide_fact fully name = FactsData.map (Facts.hide fully name); |
139 |
||
6367 | 140 |
|
3987 | 141 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
142 |
(** retrieve theorems **) |
3987 | 143 |
|
27198 | 144 |
fun get_fact context thy xthmref = |
26683 | 145 |
let |
146 |
val xname = Facts.name_of_ref xthmref; |
|
147 |
val pos = Facts.pos_of_ref xthmref; |
|
27198 | 148 |
|
149 |
val name = intern_fact thy xname; |
|
150 |
val res = Facts.lookup context (facts_of thy) name; |
|
151 |
val _ = Theory.check_thy thy; |
|
26683 | 152 |
in |
27198 | 153 |
(case res of |
154 |
NONE => error ("Unknown fact " ^ quote name ^ Position.str_of pos) |
|
155 |
| SOME ths => Facts.select xthmref (map (Thm.transfer thy) ths)) |
|
26683 | 156 |
end; |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
157 |
|
26683 | 158 |
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
|
159 |
fun get_thm thy name = Facts.the_single name (get_thms thy name); |
4783 | 160 |
|
27198 | 161 |
fun all_thms_of thy = |
162 |
Facts.fold_static (fn (_, ths) => append (map (`(get_name_hint)) ths)) (facts_of thy) []; |
|
16336 | 163 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
164 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
165 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
166 |
(** store theorems **) |
3987 | 167 |
|
21580 | 168 |
(* fact specifications *) |
169 |
||
170 |
fun map_facts f = map (apsnd (map (apfst (map f)))); |
|
171 |
fun burrow_fact f = split_list #>> burrow f #> op ~~; |
|
172 |
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; |
|
173 |
||
174 |
||
4853 | 175 |
(* naming *) |
176 |
||
18801 | 177 |
fun name_multi name [x] = [(name, x)] |
26457 | 178 |
| name_multi "" xs = map (pair "") xs |
179 |
| 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
|
180 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
181 |
fun name_thm pre official name thm = thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
182 |
|> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name) |
26050 | 183 |
|> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name) |
184 |
|> Thm.map_tags (Position.default_properties (Position.thread_data ())); |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
185 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
186 |
fun name_thms pre official name xs = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
187 |
map (uncurry (name_thm pre official)) (name_multi name xs); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
188 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
189 |
fun name_thmss official name fact = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
190 |
burrow_fact (name_thms true official name) fact; |
4853 | 191 |
|
192 |
||
11998 | 193 |
(* enter_thms *) |
4853 | 194 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
195 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
196 |
| enter_thms pre_name post_name app_att (bname, thms) thy = |
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
197 |
let |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
198 |
val naming = Sign.naming_of thy; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
199 |
val name = NameSpace.full naming bname; |
16441 | 200 |
val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms)); |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
201 |
val thms'' = map (Thm.transfer thy') thms'; |
27198 | 202 |
val thy'' = thy' |> FactsData.map (Facts.add_global naming (name, thms'')); |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
203 |
in (thms'', thy'') end; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
204 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
205 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
206 |
(* store_thm(s) *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
207 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
208 |
val store_thms = enter_thms (name_thms true true) (name_thms false true) I; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
209 |
fun store_thm (name, th) = store_thms (name, [th]) #>> the_single; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
210 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
211 |
fun store_thm_open (name, th) = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
212 |
enter_thms (name_thms true false) (name_thms false false) I (name, [th]) #>> the_single; |
3987 | 213 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
214 |
|
6091 | 215 |
(* add_thms(s) *) |
4853 | 216 |
|
16441 | 217 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
218 |
enter_thms pre_name (name_thms false true) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
219 |
(foldl_map (Thm.theory_attributes atts)) (bname, thms); |
4853 | 220 |
|
18377 | 221 |
fun gen_add_thmss pre_name = |
222 |
fold_map (add_thms_atts pre_name); |
|
5907 | 223 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
224 |
fun gen_add_thms pre_name args = |
18377 | 225 |
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
|
226 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
227 |
val add_thmss = gen_add_thmss (name_thms true true); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
228 |
val add_thms = gen_add_thms (name_thms true true); |
27683 | 229 |
val add_thm = yield_singleton add_thms; |
5907 | 230 |
|
231 |
||
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
232 |
(* add_thms_dynamic *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
233 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
234 |
fun add_thms_dynamic (bname, f) thy = |
27198 | 235 |
let val name = Sign.full_name thy bname |
236 |
in thy |> FactsData.map (Facts.add_dynamic (Sign.naming_of thy) (name, f)) end; |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
237 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
238 |
|
14564 | 239 |
(* note_thmss(_i) *) |
5907 | 240 |
|
9192 | 241 |
local |
12711 | 242 |
|
25981 | 243 |
fun gen_note_thmss get tag = fold_map (fn ((bname, more_atts), ths_atts) => fn thy => |
12711 | 244 |
let |
18728 | 245 |
fun app (x, (ths, atts)) = 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
|
246 |
val (thms, thy') = thy |> enter_thms |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
247 |
(name_thmss true) (name_thms false true) (apsnd flat o foldl_map app) |
25981 | 248 |
(bname, map (fn (ths, atts) => (get thy ths, surround tag (atts @ more_atts))) ths_atts); |
18801 | 249 |
in ((bname, thms), thy') end); |
12711 | 250 |
|
9192 | 251 |
in |
12711 | 252 |
|
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
253 |
fun note_thmss k = gen_note_thmss (K I) (kind k); |
25981 | 254 |
fun note_thmss_grouped k g = gen_note_thmss (K I) (kind k #> group g); |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
255 |
fun note_thmss_cmd k = gen_note_thmss (fn thy => get_fact (Context.Theory thy) thy) (kind k); |
12711 | 256 |
|
21438 | 257 |
end; |
258 |
||
5280 | 259 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
260 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
261 |
|
4853 | 262 |
local |
17418 | 263 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
26655 | 264 |
fun get_axs thy named_axs = map (Thm.forall_elim_vars 0 o get_ax thy) named_axs; |
26553 | 265 |
fun add_axm add = fold_map (fn ((name, ax), atts) => fn thy => |
4853 | 266 |
let |
11998 | 267 |
val named_ax = [(name, ax)]; |
7753 | 268 |
val thy' = add named_ax thy; |
269 |
val thm = hd (get_axs thy' named_ax); |
|
26553 | 270 |
in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end); |
4853 | 271 |
in |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
272 |
val add_defs = add_axm o Theory.add_defs_i false; |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
273 |
val add_defs_unchecked = add_axm o Theory.add_defs_i true; |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
274 |
val add_axioms = add_axm Theory.add_axioms_i; |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
275 |
val add_defs_cmd = add_axm o Theory.add_defs false; |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
276 |
val add_defs_unchecked_cmd = add_axm o Theory.add_defs true; |
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
277 |
val add_axioms_cmd = add_axm Theory.add_axioms; |
4853 | 278 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
279 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
280 |
|
3987 | 281 |
|
26430 | 282 |
(*** Pure theory syntax and logical content ***) |
3987 | 283 |
|
24243 | 284 |
val typ = SimpleSyntax.read_typ; |
285 |
val term = SimpleSyntax.read_term; |
|
286 |
val prop = SimpleSyntax.read_prop; |
|
287 |
||
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
288 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
289 |
(* application syntax variants *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
290 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
291 |
val appl_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
292 |
[("_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
|
293 |
("_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
|
294 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
295 |
val applC_syntax = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
296 |
[("", typ "'a => cargs", Delimfix "_"), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
297 |
("_cargs", typ "'a => cargs => cargs", Mixfix ("_/ _", [1000, 1000], 1000)), |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
298 |
("_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
|
299 |
("_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
|
300 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
301 |
structure OldApplSyntax = TheoryDataFun |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
302 |
( |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
303 |
type T = bool; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
304 |
val empty = false; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
305 |
val copy = I; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
306 |
val extend = I; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
307 |
fun merge _ (b1, b2) : T = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
308 |
if b1 = b2 then b1 |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
309 |
else error "Cannot merge theories with different application syntax"; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
310 |
); |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
311 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
312 |
val old_appl_syntax = OldApplSyntax.get; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
313 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
314 |
val old_appl_syntax_setup = |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
315 |
OldApplSyntax.put true #> |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
316 |
Sign.del_modesyntax_i Syntax.mode_default applC_syntax #> |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
317 |
Sign.add_syntax_i appl_syntax; |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
318 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
319 |
|
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
320 |
(* main content *) |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
321 |
|
26463 | 322 |
val _ = Context.>> (Context.map_theory |
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
323 |
(OldApplSyntax.init #> |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
324 |
Sign.add_types |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
325 |
[("fun", 2, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
326 |
("prop", 0, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
327 |
("itself", 1, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
328 |
("dummy", 0, NoSyn)] |
26430 | 329 |
#> Sign.add_nonterminals Syntax.basic_nonterms |
330 |
#> Sign.add_syntax_i |
|
26436 | 331 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
332 |
("_abs", typ "'a", NoSyn), |
|
333 |
("", typ "'a => args", Delimfix "_"), |
|
334 |
("_args", typ "'a => args => args", Delimfix "_,/ _"), |
|
335 |
("", typ "id => idt", Delimfix "_"), |
|
336 |
("_idtdummy", typ "idt", Delimfix "'_"), |
|
337 |
("_idtyp", typ "id => type => idt", Mixfix ("_::_", [], 0)), |
|
338 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()::_", [], 0)), |
|
339 |
("", typ "idt => idt", Delimfix "'(_')"), |
|
340 |
("", typ "idt => idts", Delimfix "_"), |
|
341 |
("_idts", typ "idt => idts => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
342 |
("", typ "idt => pttrn", Delimfix "_"), |
|
343 |
("", typ "pttrn => pttrns", Delimfix "_"), |
|
344 |
("_pttrns", typ "pttrn => pttrns => pttrns", Mixfix ("_/ _", [1, 0], 0)), |
|
345 |
("", typ "id => aprop", Delimfix "_"), |
|
346 |
("", typ "longid => aprop", Delimfix "_"), |
|
347 |
("", typ "var => aprop", Delimfix "_"), |
|
348 |
("_DDDOT", typ "aprop", Delimfix "..."), |
|
349 |
("_aprop", typ "aprop => prop", Delimfix "PROP _"), |
|
350 |
("_asm", typ "prop => asms", Delimfix "_"), |
|
351 |
("_asms", typ "prop => asms => asms", Delimfix "_;/ _"), |
|
352 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
353 |
("_ofclass", typ "type => logic => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
354 |
("_mk_ofclass", typ "dummy", NoSyn), |
|
355 |
("_TYPE", typ "type => logic", Delimfix "(1TYPE/(1'(_')))"), |
|
356 |
("", typ "id => logic", Delimfix "_"), |
|
357 |
("", typ "longid => logic", Delimfix "_"), |
|
358 |
("", typ "var => logic", Delimfix "_"), |
|
359 |
("_DDDOT", typ "logic", Delimfix "..."), |
|
360 |
("_constify", typ "num => num_const", Delimfix "_"), |
|
361 |
("_indexnum", typ "num_const => index", Delimfix "\\<^sub>_"), |
|
362 |
("_index", typ "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
363 |
("_indexdefault", typ "index", Delimfix ""), |
|
364 |
("_indexvar", typ "index", Delimfix "'\\<index>"), |
|
365 |
("_struct", typ "index => logic", Mixfix ("\\<struct>_", [1000], 1000)), |
|
366 |
("==>", typ "prop => prop => prop", Delimfix "op ==>"), |
|
26959
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
367 |
(Term.dummy_patternN, typ "aprop", Delimfix "'_")] |
f8f2df3e4d83
theory Pure provides regular application syntax by default;
wenzelm
parents:
26693
diff
changeset
|
368 |
#> Sign.add_syntax_i applC_syntax |
26430 | 369 |
#> Sign.add_modesyntax_i (Symbol.xsymbolsN, true) |
24243 | 370 |
[("fun", typ "type => type => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
371 |
("_bracket", typ "types => type => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
|
372 |
("_ofsort", typ "tid => sort => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
|
373 |
("_constrain", typ "'a => type => 'a", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
|
374 |
("_idtyp", typ "id => type => idt", Mixfix ("_\\<Colon>_", [], 0)), |
|
375 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
|
376 |
("_type_constraint_", typ "'a", NoSyn), |
|
377 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
|
378 |
("==", typ "'a => 'a => prop", InfixrName ("\\<equiv>", 2)), |
|
379 |
("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)), |
|
380 |
("==>", typ "prop => prop => prop", InfixrName ("\\<Longrightarrow>", 1)), |
|
381 |
("_DDDOT", typ "aprop", Delimfix "\\<dots>"), |
|
382 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)), |
|
383 |
("_DDDOT", typ "logic", Delimfix "\\<dots>")] |
|
26430 | 384 |
#> Sign.add_modesyntax_i ("", false) |
24243 | 385 |
[("prop", typ "prop => prop", Mixfix ("_", [0], 0)), |
26430 | 386 |
("Pure.term", typ "'a => prop", Delimfix "TERM _"), |
387 |
("Pure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))] |
|
388 |
#> Sign.add_modesyntax_i ("HTML", false) |
|
24243 | 389 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
26430 | 390 |
#> Sign.add_consts_i |
24243 | 391 |
[("==", typ "'a => 'a => prop", InfixrName ("==", 2)), |
392 |
("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
393 |
("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)), |
|
394 |
("prop", typ "prop => prop", NoSyn), |
|
395 |
("TYPE", typ "'a itself", NoSyn), |
|
396 |
(Term.dummy_patternN, typ "'a", Delimfix "'_")] |
|
26430 | 397 |
#> Theory.add_deps "==" ("==", typ "'a => 'a => prop") [] |
398 |
#> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") [] |
|
399 |
#> Theory.add_deps "all" ("all", typ "('a => prop) => prop") [] |
|
400 |
#> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") [] |
|
401 |
#> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") [] |
|
402 |
#> Sign.add_trfuns Syntax.pure_trfuns |
|
403 |
#> Sign.add_trfunsT Syntax.pure_trfunsT |
|
404 |
#> Sign.local_path |
|
405 |
#> Sign.add_consts_i |
|
24243 | 406 |
[("term", typ "'a => prop", NoSyn), |
407 |
("conjunction", typ "prop => prop => prop", NoSyn)] |
|
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
408 |
#> (add_defs false o map Thm.no_attributes) |
24243 | 409 |
[("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"), |
26430 | 410 |
("term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"), |
411 |
("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd |
|
26666 | 412 |
#> Sign.hide_const false "Pure.conjunction" |
413 |
#> Sign.hide_const false "Pure.term" |
|
26430 | 414 |
#> add_thmss [(("nothing", []), [])] #> snd |
26463 | 415 |
#> Theory.add_axioms_i Proofterm.equality_axms)); |
3987 | 416 |
|
417 |
end; |
|
418 |