author | wenzelm |
Sat, 29 Mar 2008 19:14:10 +0100 | |
changeset 26488 | b497e3187ec7 |
parent 26471 | f4c956461353 |
child 26553 | 748631e95425 |
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 |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
27 |
val get_fact: theory -> Facts.ref -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
28 |
val get_fact_silent: theory -> Facts.ref -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
29 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
30 |
val get_thm: theory -> xstring -> thm |
17162 | 31 |
val theorems_of: theory -> thm list NameSpace.table |
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
|
32 |
val all_facts_of: theory -> Facts.T |
16336 | 33 |
val thms_of: theory -> (string * thm) list |
34 |
val all_thms_of: theory -> (string * thm) list |
|
12695 | 35 |
val hide_thms: bool -> string list -> theory -> theory |
21580 | 36 |
val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
21567 | 37 |
val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list |
21580 | 38 |
val burrow_facts: ('a list -> 'b list) -> |
39 |
('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
|
40 |
val name_multi: string -> 'a list -> (string * 'a) list |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
41 |
val name_thm: bool -> bool -> string -> thm -> thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
42 |
val name_thms: bool -> bool -> string -> thm list -> thm list |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
43 |
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
|
44 |
val store_thms: bstring * thm list -> theory -> thm list * theory |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
45 |
val store_thm: bstring * thm -> theory -> thm * theory |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
46 |
val store_thm_open: bstring * thm -> theory -> thm * theory |
18728 | 47 |
val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * 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 |
25598 | 50 |
val note: string -> string * thm -> theory -> thm * theory |
18801 | 51 |
val note_thmss: string -> ((bstring * attribute list) * |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26320
diff
changeset
|
52 |
(Facts.ref * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
18801 | 53 |
val note_thmss_i: string -> ((bstring * attribute list) * |
54 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
25981 | 55 |
val note_thmss_grouped: string -> string -> ((bstring * attribute list) * |
56 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
18801 | 57 |
val note_thmss_qualified: string -> string -> ((bstring * attribute list) * |
18728 | 58 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
59 |
val forall_elim_var: int -> thm -> thm |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
60 |
val forall_elim_vars: int -> thm -> thm |
18728 | 61 |
val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory |
62 |
val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory |
|
63 |
val add_axiomss: ((bstring * string list) * attribute list) list -> |
|
64 |
theory -> thm list list * theory |
|
65 |
val add_axiomss_i: ((bstring * term list) * attribute list) list -> |
|
66 |
theory -> thm list list * theory |
|
67 |
val add_defs: bool -> ((bstring * string) * attribute list) list -> |
|
18377 | 68 |
theory -> thm list * theory |
18728 | 69 |
val add_defs_i: bool -> ((bstring * term) * attribute list) list -> |
18377 | 70 |
theory -> thm list * theory |
19629 | 71 |
val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list -> |
72 |
theory -> thm list * theory |
|
73 |
val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list -> |
|
74 |
theory -> thm list * theory |
|
3987 | 75 |
end; |
76 |
||
77 |
structure PureThy: PURE_THY = |
|
78 |
struct |
|
79 |
||
80 |
||
18801 | 81 |
(*** theorem tags ***) |
82 |
||
83 |
(* add / delete tags *) |
|
84 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
85 |
fun tag_rule tg = Thm.map_tags (insert (op =) tg); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
86 |
fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s')); |
18801 | 87 |
|
88 |
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x; |
|
89 |
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x; |
|
90 |
||
91 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
92 |
(* unofficial theorem names *) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
93 |
|
23657 | 94 |
fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN); |
22251 | 95 |
|
96 |
val has_name_hint = can the_name_hint; |
|
97 |
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
|
98 |
|
23657 | 99 |
fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name); |
21964 | 100 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
101 |
|
25981 | 102 |
(* theorem groups *) |
103 |
||
104 |
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN; |
|
105 |
||
106 |
fun put_group name = |
|
107 |
if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name)); |
|
108 |
||
109 |
fun group name = Thm.rule_attribute (K (put_group name)); |
|
110 |
||
111 |
||
18801 | 112 |
(* theorem kinds *) |
113 |
||
23657 | 114 |
fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN); |
22251 | 115 |
|
116 |
val has_kind = can the_kind; |
|
25981 | 117 |
val get_kind = the_default "" o try the_kind; |
18801 | 118 |
|
23657 | 119 |
fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN; |
18801 | 120 |
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x; |
22363 | 121 |
fun kind_internal x = kind Thm.internalK x; |
23657 | 122 |
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
|
123 |
val is_internal = has_internal o Thm.get_tags; |
18801 | 124 |
|
125 |
||
126 |
||
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
127 |
(*** theorem database ***) |
3987 | 128 |
|
16441 | 129 |
(** dataype theorems **) |
3987 | 130 |
|
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
|
131 |
datatype thms = Thms of |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
132 |
{theorems: thm list NameSpace.table, (* FIXME legacy *) |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
133 |
all_facts: Facts.T}; |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
134 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
135 |
fun make_thms (theorems, all_facts) = Thms {theorems = theorems, all_facts = all_facts}; |
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
|
136 |
|
16441 | 137 |
structure TheoremsData = TheoryDataFun |
24713 | 138 |
( |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
139 |
type T = thms; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
140 |
val empty = make_thms (NameSpace.empty_table, Facts.empty); |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
141 |
val copy = I; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
142 |
fun extend (Thms {theorems = _, all_facts}) = make_thms (NameSpace.empty_table, all_facts); |
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
|
143 |
fun merge _ |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
144 |
(Thms {theorems = _, all_facts = all_facts1}, |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
145 |
Thms {theorems = _, all_facts = all_facts2}) = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
146 |
make_thms (NameSpace.empty_table, Facts.merge (all_facts1, all_facts2)); |
24713 | 147 |
); |
3987 | 148 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
149 |
fun map_theorems f = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
150 |
TheoremsData.map (fn Thms {theorems, all_facts} => make_thms (f (theorems, all_facts))); |
26430 | 151 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
152 |
val get_theorems = (fn Thms args => args) o TheoremsData.get; |
17162 | 153 |
val theorems_of = #theorems o get_theorems; |
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
|
154 |
val all_facts_of = #all_facts o get_theorems; |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
155 |
|
6367 | 156 |
|
3987 | 157 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
158 |
(** retrieve theorems **) |
3987 | 159 |
|
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
160 |
local |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
161 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
162 |
fun lookup_thms thy xname = |
9564 | 163 |
let |
16493 | 164 |
val (space, thms) = #theorems (get_theorems thy); |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
165 |
val name = NameSpace.intern space xname; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
166 |
in Option.map (pair name) (Symtab.lookup thms name) end; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
167 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
168 |
fun lookup_fact thy xname = |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
169 |
let |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
170 |
val facts = all_facts_of thy; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
171 |
val name = NameSpace.intern (Facts.space_of facts) xname; |
26393 | 172 |
in Option.map (pair name) (Facts.lookup (Context.Theory thy) facts name) end; |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
173 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
174 |
fun show_result NONE = "none" |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
175 |
| show_result (SOME (name, _)) = quote name; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
176 |
|
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
177 |
fun get silent theory thmref = |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
178 |
let |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26320
diff
changeset
|
179 |
val name = Facts.name_of_ref thmref; |
26367
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
180 |
val pos = Facts.pos_of_ref thmref; |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
181 |
val new_res = lookup_fact theory name; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
182 |
val old_res = get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory); |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
183 |
val _ = Theory.check_thy theory; |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
184 |
val is_same = |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
185 |
(case (new_res, old_res) of |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
186 |
(NONE, NONE) => true |
26395 | 187 |
| (SOME (_, ths1), SOME (_, ths2)) => Thm.eq_thms (ths1, ths2) |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
188 |
| _ => false); |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
189 |
val _ = |
26320 | 190 |
if is_same orelse silent then () |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
191 |
else legacy_feature ("Fact lookup differs from old-style thm database:\n" ^ |
26367
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
192 |
show_result new_res ^ " vs " ^ show_result old_res ^ Position.str_of pos); |
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
193 |
in |
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
194 |
(case old_res of |
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
195 |
NONE => error ("Unknown theorem(s) " ^ quote name ^ Position.str_of pos) |
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
196 |
| SOME (_, ths) => Facts.select thmref (map (Thm.transfer theory) ths)) |
06635166d211
get_thms etc.: improved reporting of source position;
wenzelm
parents:
26361
diff
changeset
|
197 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
198 |
|
26320 | 199 |
in |
200 |
||
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
201 |
val get_fact_silent = get true; |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
202 |
val get_fact = get false; |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
203 |
|
26361 | 204 |
fun get_thms thy = get_fact thy o Facts.named; |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
205 |
fun get_thm thy name = Facts.the_single name (get_thms thy name); |
4783 | 206 |
|
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
207 |
end; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
208 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
209 |
|
16336 | 210 |
(* thms_of etc. *) |
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
211 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
212 |
fun thms_of thy = |
17162 | 213 |
let val thms = #2 (theorems_of thy) |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
214 |
in map (`(get_name_hint)) (maps snd (Symtab.dest thms)) end; |
15703 | 215 |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
216 |
fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy); |
16336 | 217 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
218 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
219 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
220 |
(** store theorems **) |
3987 | 221 |
|
16441 | 222 |
(* hiding -- affects current theory node only *) |
12695 | 223 |
|
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
224 |
fun hide_thms fully names = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
225 |
map_theorems (fn ((space, thms), all_facts) => |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
226 |
let val space' = fold (NameSpace.hide fully) names space |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
227 |
in ((space', thms), all_facts) end); |
12695 | 228 |
|
229 |
||
21580 | 230 |
(* fact specifications *) |
231 |
||
232 |
fun map_facts f = map (apsnd (map (apfst (map f)))); |
|
233 |
fun burrow_fact f = split_list #>> burrow f #> op ~~; |
|
234 |
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; |
|
235 |
||
236 |
||
4853 | 237 |
(* naming *) |
238 |
||
18801 | 239 |
fun name_multi name [x] = [(name, x)] |
26457 | 240 |
| name_multi "" xs = map (pair "") xs |
241 |
| 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
|
242 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
243 |
fun name_thm pre official name thm = thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
244 |
|> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name) |
26050 | 245 |
|> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name) |
246 |
|> 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
|
247 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
248 |
fun name_thms pre official name xs = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
249 |
map (uncurry (name_thm pre official)) (name_multi name xs); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
250 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
251 |
fun name_thmss official name fact = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
252 |
burrow_fact (name_thms true official name) fact; |
4853 | 253 |
|
254 |
||
11998 | 255 |
(* enter_thms *) |
4853 | 256 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
257 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
258 |
| 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
|
259 |
let |
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
260 |
val naming = Sign.naming_of thy; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
261 |
val name = NameSpace.full naming bname; |
16441 | 262 |
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
|
263 |
val thms'' = map (Thm.transfer thy') thms'; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
264 |
val thy'' = thy' |> map_theorems (fn ((space, theorems), all_facts) => |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
265 |
let |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
266 |
val space' = NameSpace.declare naming name space; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
267 |
val theorems' = Symtab.update (name, thms'') theorems; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
268 |
val all_facts' = Facts.add_global naming (name, thms'') all_facts; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
269 |
in ((space', theorems'), all_facts') end); |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
270 |
in (thms'', thy'') end; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
271 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
272 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
273 |
(* store_thm(s) *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
274 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
275 |
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
|
276 |
fun store_thm (name, th) = store_thms (name, [th]) #>> the_single; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
277 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
278 |
fun store_thm_open (name, th) = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
279 |
enter_thms (name_thms true false) (name_thms false false) I (name, [th]) #>> the_single; |
3987 | 280 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
281 |
|
6091 | 282 |
(* add_thms(s) *) |
4853 | 283 |
|
16441 | 284 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
285 |
enter_thms pre_name (name_thms false true) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
286 |
(foldl_map (Thm.theory_attributes atts)) (bname, thms); |
4853 | 287 |
|
18377 | 288 |
fun gen_add_thmss pre_name = |
289 |
fold_map (add_thms_atts pre_name); |
|
5907 | 290 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
291 |
fun gen_add_thms pre_name args = |
18377 | 292 |
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
|
293 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
294 |
val add_thmss = gen_add_thmss (name_thms true true); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
295 |
val add_thms = gen_add_thms (name_thms true true); |
5907 | 296 |
|
297 |
||
26488
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
298 |
(* add_thms_dynamic *) |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
299 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
300 |
fun add_thms_dynamic (bname, f) thy = |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
301 |
let |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
302 |
val name = Sign.full_name thy bname; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
303 |
val thy' = thy |> map_theorems (fn (theorems, all_facts) => |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
304 |
(theorems, Facts.add_dynamic (Sign.naming_of thy) (name, f) all_facts)); |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
305 |
in thy' end; |
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
306 |
|
b497e3187ec7
eliminated destructive/critical theorem database;
wenzelm
parents:
26471
diff
changeset
|
307 |
|
14564 | 308 |
(* note_thmss(_i) *) |
5907 | 309 |
|
9192 | 310 |
local |
12711 | 311 |
|
25981 | 312 |
fun gen_note_thmss get tag = fold_map (fn ((bname, more_atts), ths_atts) => fn thy => |
12711 | 313 |
let |
18728 | 314 |
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
|
315 |
val (thms, thy') = thy |> enter_thms |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
316 |
(name_thmss true) (name_thms false true) (apsnd flat o foldl_map app) |
25981 | 317 |
(bname, map (fn (ths, atts) => (get thy ths, surround tag (atts @ more_atts))) ths_atts); |
18801 | 318 |
in ((bname, thms), thy') end); |
12711 | 319 |
|
9192 | 320 |
in |
12711 | 321 |
|
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
322 |
fun note_thmss k = gen_note_thmss get_fact (kind k); |
25981 | 323 |
fun note_thmss_i k = gen_note_thmss (K I) (kind k); |
324 |
fun note_thmss_grouped k g = gen_note_thmss (K I) (kind k #> group g); |
|
12711 | 325 |
|
21438 | 326 |
end; |
327 |
||
25598 | 328 |
fun note kind (name, thm) = |
329 |
note_thmss_i kind [((name, []), [([thm], [])])] |
|
330 |
#>> (fn [(_, [thm])] => thm); |
|
331 |
||
18801 | 332 |
fun note_thmss_qualified k path facts thy = |
333 |
thy |
|
22796 | 334 |
|> Sign.add_path path |
335 |
|> Sign.no_base_names |
|
18801 | 336 |
|> note_thmss_i k facts |
22796 | 337 |
||> Sign.restore_naming thy; |
18801 | 338 |
|
5280 | 339 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
340 |
(* forall_elim_var(s) -- belongs to drule.ML *) |
7899 | 341 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
342 |
fun forall_elim_vars_aux strip_vars i th = |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
343 |
let |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
344 |
val {thy, tpairs, prop, ...} = Thm.rep_thm th; |
16787 | 345 |
val add_used = Term.fold_aterms |
20853 | 346 |
(fn Var ((x, j), _) => if i = j then insert (op =) x else I | _ => I); |
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
347 |
val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []); |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
348 |
val vars = strip_vars prop; |
20071
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
20057
diff
changeset
|
349 |
val cvars = (Name.variant_list used (map #1 vars), vars) |
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
350 |
|> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T))); |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
351 |
in fold Thm.forall_elim cvars th end; |
7899 | 352 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
353 |
val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars; |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
354 |
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
355 |
fun forall_elim_var i th = forall_elim_vars_aux |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
356 |
(fn Const ("all", _) $ Abs (a, T, _) => [(a, T)] |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
357 |
| _ => raise THM ("forall_elim_vars", i, [th])) i th; |
7899 | 358 |
|
359 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
360 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
361 |
|
4853 | 362 |
local |
17418 | 363 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
364 |
fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs; |
|
18377 | 365 |
fun add_single add ((name, ax), atts) thy = |
4853 | 366 |
let |
11998 | 367 |
val named_ax = [(name, ax)]; |
7753 | 368 |
val thy' = add named_ax thy; |
369 |
val thm = hd (get_axs thy' named_ax); |
|
18377 | 370 |
in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
371 |
fun add_multi add ((name, axs), atts) thy = |
|
7753 | 372 |
let |
373 |
val named_axs = name_multi name axs; |
|
4853 | 374 |
val thy' = add named_axs thy; |
7753 | 375 |
val thms = get_axs thy' named_axs; |
18377 | 376 |
in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
377 |
fun add_singles add = fold_map (add_single add); |
|
378 |
fun add_multis add = fold_map (add_multi add); |
|
4853 | 379 |
in |
19629 | 380 |
val add_axioms = add_singles Theory.add_axioms; |
381 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
382 |
val add_axiomss = add_multis Theory.add_axioms; |
|
383 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
22796 | 384 |
val add_defs = add_singles o Theory.add_defs false; |
385 |
val add_defs_i = add_singles o Theory.add_defs_i false; |
|
386 |
val add_defs_unchecked = add_singles o Theory.add_defs true; |
|
387 |
val add_defs_unchecked_i = add_singles o Theory.add_defs_i true; |
|
4853 | 388 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
389 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
390 |
|
3987 | 391 |
|
26430 | 392 |
(*** Pure theory syntax and logical content ***) |
3987 | 393 |
|
24243 | 394 |
val typ = SimpleSyntax.read_typ; |
395 |
val term = SimpleSyntax.read_term; |
|
396 |
val prop = SimpleSyntax.read_prop; |
|
397 |
||
26463 | 398 |
val _ = Context.>> (Context.map_theory |
26430 | 399 |
(Sign.add_types |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
400 |
[("fun", 2, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
401 |
("prop", 0, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
402 |
("itself", 1, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
403 |
("dummy", 0, NoSyn)] |
26430 | 404 |
#> Sign.add_nonterminals Syntax.basic_nonterms |
405 |
#> Sign.add_syntax_i |
|
26436 | 406 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
407 |
("_abs", typ "'a", NoSyn), |
|
408 |
("", typ "'a => args", Delimfix "_"), |
|
409 |
("_args", typ "'a => args => args", Delimfix "_,/ _"), |
|
410 |
("", typ "id => idt", Delimfix "_"), |
|
411 |
("_idtdummy", typ "idt", Delimfix "'_"), |
|
412 |
("_idtyp", typ "id => type => idt", Mixfix ("_::_", [], 0)), |
|
413 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()::_", [], 0)), |
|
414 |
("", typ "idt => idt", Delimfix "'(_')"), |
|
415 |
("", typ "idt => idts", Delimfix "_"), |
|
416 |
("_idts", typ "idt => idts => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
417 |
("", typ "idt => pttrn", Delimfix "_"), |
|
418 |
("", typ "pttrn => pttrns", Delimfix "_"), |
|
419 |
("_pttrns", typ "pttrn => pttrns => pttrns", Mixfix ("_/ _", [1, 0], 0)), |
|
420 |
("", typ "id => aprop", Delimfix "_"), |
|
421 |
("", typ "longid => aprop", Delimfix "_"), |
|
422 |
("", typ "var => aprop", Delimfix "_"), |
|
423 |
("_DDDOT", typ "aprop", Delimfix "..."), |
|
424 |
("_aprop", typ "aprop => prop", Delimfix "PROP _"), |
|
425 |
("_asm", typ "prop => asms", Delimfix "_"), |
|
426 |
("_asms", typ "prop => asms => asms", Delimfix "_;/ _"), |
|
427 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
428 |
("_ofclass", typ "type => logic => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
429 |
("_mk_ofclass", typ "dummy", NoSyn), |
|
430 |
("_TYPE", typ "type => logic", Delimfix "(1TYPE/(1'(_')))"), |
|
431 |
("", typ "id => logic", Delimfix "_"), |
|
432 |
("", typ "longid => logic", Delimfix "_"), |
|
433 |
("", typ "var => logic", Delimfix "_"), |
|
434 |
("_DDDOT", typ "logic", Delimfix "..."), |
|
435 |
("_constify", typ "num => num_const", Delimfix "_"), |
|
436 |
("_indexnum", typ "num_const => index", Delimfix "\\<^sub>_"), |
|
437 |
("_index", typ "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
438 |
("_indexdefault", typ "index", Delimfix ""), |
|
439 |
("_indexvar", typ "index", Delimfix "'\\<index>"), |
|
440 |
("_struct", typ "index => logic", Mixfix ("\\<struct>_", [1000], 1000)), |
|
441 |
("==>", typ "prop => prop => prop", Delimfix "op ==>"), |
|
442 |
(Term.dummy_patternN, typ "aprop", Delimfix "'_"), |
|
443 |
("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)), |
|
444 |
("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))] |
|
26430 | 445 |
#> Sign.add_modesyntax_i (Symbol.xsymbolsN, true) |
24243 | 446 |
[("fun", typ "type => type => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
447 |
("_bracket", typ "types => type => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
|
448 |
("_ofsort", typ "tid => sort => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
|
449 |
("_constrain", typ "'a => type => 'a", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
|
450 |
("_idtyp", typ "id => type => idt", Mixfix ("_\\<Colon>_", [], 0)), |
|
451 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
|
452 |
("_type_constraint_", typ "'a", NoSyn), |
|
453 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
|
454 |
("==", typ "'a => 'a => prop", InfixrName ("\\<equiv>", 2)), |
|
455 |
("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)), |
|
456 |
("==>", typ "prop => prop => prop", InfixrName ("\\<Longrightarrow>", 1)), |
|
457 |
("_DDDOT", typ "aprop", Delimfix "\\<dots>"), |
|
458 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)), |
|
459 |
("_DDDOT", typ "logic", Delimfix "\\<dots>")] |
|
26430 | 460 |
#> Sign.add_modesyntax_i ("", false) |
24243 | 461 |
[("prop", typ "prop => prop", Mixfix ("_", [0], 0)), |
26430 | 462 |
("Pure.term", typ "'a => prop", Delimfix "TERM _"), |
463 |
("Pure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))] |
|
464 |
#> Sign.add_modesyntax_i ("HTML", false) |
|
24243 | 465 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
26430 | 466 |
#> Sign.add_consts_i |
24243 | 467 |
[("==", typ "'a => 'a => prop", InfixrName ("==", 2)), |
468 |
("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
469 |
("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)), |
|
470 |
("prop", typ "prop => prop", NoSyn), |
|
471 |
("TYPE", typ "'a itself", NoSyn), |
|
472 |
(Term.dummy_patternN, typ "'a", Delimfix "'_")] |
|
26430 | 473 |
#> Theory.add_deps "==" ("==", typ "'a => 'a => prop") [] |
474 |
#> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") [] |
|
475 |
#> Theory.add_deps "all" ("all", typ "('a => prop) => prop") [] |
|
476 |
#> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") [] |
|
477 |
#> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") [] |
|
478 |
#> Sign.add_trfuns Syntax.pure_trfuns |
|
479 |
#> Sign.add_trfunsT Syntax.pure_trfunsT |
|
480 |
#> Sign.local_path |
|
481 |
#> Sign.add_consts_i |
|
24243 | 482 |
[("term", typ "'a => prop", NoSyn), |
483 |
("conjunction", typ "prop => prop => prop", NoSyn)] |
|
26430 | 484 |
#> (add_defs_i false o map Thm.no_attributes) |
24243 | 485 |
[("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"), |
26430 | 486 |
("term_def", prop "(CONST Pure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"), |
487 |
("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] #> snd |
|
488 |
#> Sign.hide_consts false ["conjunction", "term"] |
|
489 |
#> add_thmss [(("nothing", []), [])] #> snd |
|
26463 | 490 |
#> Theory.add_axioms_i Proofterm.equality_axms)); |
3987 | 491 |
|
492 |
end; |
|
493 |