author | wenzelm |
Thu, 20 Mar 2008 00:20:48 +0100 | |
changeset 26344 | 04dacc6809b6 |
parent 26336 | a0e2b706ce73 |
child 26361 | 7946f459c6c8 |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
16441 | 5 |
Theorem storage. The ProtoPure theory. |
3987 | 6 |
*) |
7 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
8 |
signature BASIC_PURE_THY = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
9 |
sig |
5091 | 10 |
structure ProtoPure: |
11 |
sig |
|
12 |
val thy: theory |
|
18031 | 13 |
val prop_def: thm |
19775 | 14 |
val term_def: thm |
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
15 |
val conjunction_def: thm |
5091 | 16 |
end |
4853 | 17 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
18 |
|
3987 | 19 |
signature PURE_THY = |
20 |
sig |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
21 |
include BASIC_PURE_THY |
23657 | 22 |
val tag_rule: Markup.property -> thm -> thm |
18801 | 23 |
val untag_rule: string -> thm -> thm |
23657 | 24 |
val tag: Markup.property -> attribute |
18801 | 25 |
val untag: string -> attribute |
21964 | 26 |
val has_name_hint: thm -> bool |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
27 |
val get_name_hint: thm -> string |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
28 |
val put_name_hint: string -> thm -> thm |
25981 | 29 |
val get_group: thm -> string option |
30 |
val put_group: string -> thm -> thm |
|
31 |
val group: string -> attribute |
|
22251 | 32 |
val has_kind: thm -> bool |
18801 | 33 |
val get_kind: thm -> string |
34 |
val kind_rule: string -> thm -> thm |
|
35 |
val kind: string -> attribute |
|
36 |
val kind_internal: attribute |
|
23657 | 37 |
val has_internal: Markup.property list -> bool |
18801 | 38 |
val is_internal: thm -> bool |
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
39 |
val get_fact: theory -> Facts.ref -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
40 |
val get_fact_silent: theory -> Facts.ref -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
41 |
val get_thms: theory -> xstring -> thm list |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
42 |
val get_thm: theory -> xstring -> thm |
17162 | 43 |
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
|
44 |
val all_facts_of: theory -> Facts.T |
16336 | 45 |
val thms_of: theory -> (string * thm) list |
46 |
val all_thms_of: theory -> (string * thm) list |
|
12695 | 47 |
val hide_thms: bool -> string list -> theory -> theory |
21580 | 48 |
val map_facts: ('a -> 'b) -> ('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
21567 | 49 |
val burrow_fact: ('a list -> 'b list) -> ('a list * 'c) list -> ('b list * 'c) list |
21580 | 50 |
val burrow_facts: ('a list -> 'b list) -> |
51 |
('c * ('a list * 'd) list) list -> ('c * ('b list * 'd) list) list |
|
52 |
val name_multi: string -> 'a list -> (string * 'a) list |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
53 |
val name_thm: bool -> bool -> string -> thm -> thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
54 |
val name_thms: bool -> bool -> string -> thm list -> thm list |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
55 |
val name_thmss: bool -> string -> (thm list * 'a) list -> (thm list * 'a) list |
18728 | 56 |
val store_thm: (bstring * thm) * attribute list -> theory -> thm * theory |
7405 | 57 |
val smart_store_thms: (bstring * thm list) -> thm list |
12138
7cad58fbc866
renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents:
12123
diff
changeset
|
58 |
val smart_store_thms_open: (bstring * thm list) -> thm list |
7899 | 59 |
val forall_elim_var: int -> thm -> thm |
60 |
val forall_elim_vars: int -> thm -> thm |
|
18728 | 61 |
val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory |
24965 | 62 |
val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory |
25598 | 63 |
val note: string -> string * thm -> theory -> thm * theory |
18801 | 64 |
val note_thmss: string -> ((bstring * attribute list) * |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26320
diff
changeset
|
65 |
(Facts.ref * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
18801 | 66 |
val note_thmss_i: string -> ((bstring * attribute list) * |
67 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
25981 | 68 |
val note_thmss_grouped: string -> string -> ((bstring * attribute list) * |
69 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
18801 | 70 |
val note_thmss_qualified: string -> string -> ((bstring * attribute list) * |
18728 | 71 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
72 |
val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory |
|
73 |
val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory |
|
74 |
val add_axiomss: ((bstring * string list) * attribute list) list -> |
|
75 |
theory -> thm list list * theory |
|
76 |
val add_axiomss_i: ((bstring * term list) * attribute list) list -> |
|
77 |
theory -> thm list list * theory |
|
78 |
val add_defs: bool -> ((bstring * string) * attribute list) list -> |
|
18377 | 79 |
theory -> thm list * theory |
18728 | 80 |
val add_defs_i: bool -> ((bstring * term) * attribute list) list -> |
18377 | 81 |
theory -> thm list * theory |
19629 | 82 |
val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list -> |
83 |
theory -> thm list * theory |
|
84 |
val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list -> |
|
85 |
theory -> thm list * theory |
|
24243 | 86 |
val appl_syntax: (string * typ * mixfix) list |
87 |
val applC_syntax: (string * typ * mixfix) list |
|
3987 | 88 |
end; |
89 |
||
90 |
structure PureThy: PURE_THY = |
|
91 |
struct |
|
92 |
||
93 |
||
18801 | 94 |
(*** theorem tags ***) |
95 |
||
96 |
(* add / delete tags *) |
|
97 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
98 |
fun tag_rule tg = Thm.map_tags (insert (op =) tg); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
99 |
fun untag_rule s = Thm.map_tags (filter_out (fn (s', _) => s = s')); |
18801 | 100 |
|
101 |
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x; |
|
102 |
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x; |
|
103 |
||
104 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
105 |
(* unofficial theorem names *) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
106 |
|
23657 | 107 |
fun the_name_hint thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.nameN); |
22251 | 108 |
|
109 |
val has_name_hint = can the_name_hint; |
|
110 |
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
|
111 |
|
23657 | 112 |
fun put_name_hint name = untag_rule Markup.nameN #> tag_rule (Markup.nameN, name); |
21964 | 113 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
114 |
|
25981 | 115 |
(* theorem groups *) |
116 |
||
117 |
fun get_group thm = AList.lookup (op =) (Thm.get_tags thm) Markup.groupN; |
|
118 |
||
119 |
fun put_group name = |
|
120 |
if name = "" then I else Thm.map_tags (AList.update (op =) (Markup.groupN, name)); |
|
121 |
||
122 |
fun group name = Thm.rule_attribute (K (put_group name)); |
|
123 |
||
124 |
||
18801 | 125 |
(* theorem kinds *) |
126 |
||
23657 | 127 |
fun the_kind thm = the (AList.lookup (op =) (Thm.get_tags thm) Markup.kindN); |
22251 | 128 |
|
129 |
val has_kind = can the_kind; |
|
25981 | 130 |
val get_kind = the_default "" o try the_kind; |
18801 | 131 |
|
23657 | 132 |
fun kind_rule k = tag_rule (Markup.kindN, k) o untag_rule Markup.kindN; |
18801 | 133 |
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x; |
22363 | 134 |
fun kind_internal x = kind Thm.internalK x; |
23657 | 135 |
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
|
136 |
val is_internal = has_internal o Thm.get_tags; |
18801 | 137 |
|
138 |
||
139 |
||
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
140 |
(*** theorem database ***) |
3987 | 141 |
|
16441 | 142 |
(** dataype theorems **) |
3987 | 143 |
|
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
|
144 |
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
|
145 |
{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
|
146 |
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
|
147 |
|
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
148 |
fun make_thms theorems all_facts = Thms {theorems = theorems, all_facts = all_facts}; |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
149 |
|
16441 | 150 |
structure TheoremsData = TheoryDataFun |
24713 | 151 |
( |
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
|
152 |
type T = thms ref; (* 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
|
153 |
val empty = ref (make_thms NameSpace.empty_table Facts.empty); |
6547 | 154 |
fun copy (ref x) = ref x; |
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
|
155 |
fun extend (ref (Thms {theorems = _, all_facts})) = ref (make_thms NameSpace.empty_table all_facts); |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
156 |
fun merge _ |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
157 |
(ref (Thms {theorems = _, all_facts = all_facts1}), |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
158 |
ref (Thms {theorems = _, all_facts = all_facts2})) = |
305d5ca4fa9d
replaced obsolete FactIndex.T by Facts.T (cumulative version, assumes that facts are only added to unfinished theories);
wenzelm
parents:
26050
diff
changeset
|
159 |
ref (make_thms NameSpace.empty_table (Facts.merge (all_facts1, all_facts2))); |
24713 | 160 |
); |
3987 | 161 |
|
16493 | 162 |
val get_theorems_ref = TheoremsData.get; |
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
|
163 |
val get_theorems = (fn Thms args => args) o ! o get_theorems_ref; |
17162 | 164 |
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
|
165 |
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
|
166 |
|
6367 | 167 |
|
3987 | 168 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
169 |
(** retrieve theorems **) |
3987 | 170 |
|
15531 | 171 |
fun the_thms _ (SOME thms) = thms |
172 |
| the_thms name NONE = error ("Unknown theorem(s) " ^ quote name); |
|
4037 | 173 |
|
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
174 |
local |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
175 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
176 |
fun lookup_thms thy xname = |
9564 | 177 |
let |
16493 | 178 |
val (space, thms) = #theorems (get_theorems thy); |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
179 |
val name = NameSpace.intern space xname; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
180 |
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
|
181 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
182 |
fun lookup_fact thy xname = |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
183 |
let |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
184 |
val facts = all_facts_of thy; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
185 |
val name = NameSpace.intern (Facts.space_of facts) xname; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
186 |
in Option.map (pair name) (Facts.lookup facts name) end; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
187 |
|
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
188 |
fun show_result NONE = "none" |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
189 |
| show_result (SOME (name, _)) = quote name; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
190 |
|
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
191 |
fun get silent theory thmref = |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
192 |
let |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26320
diff
changeset
|
193 |
val name = Facts.name_of_ref thmref; |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
194 |
val new_res = lookup_fact theory name; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
195 |
val old_res = get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory); |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
196 |
val is_same = |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
197 |
(case (new_res, old_res) of |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
198 |
(NONE, NONE) => true |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
199 |
| (SOME (name1, ths1), SOME (name2, ths2)) => name1 = name2 andalso Thm.eq_thms (ths1, ths2) |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
200 |
| _ => false); |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
201 |
val _ = |
26320 | 202 |
if is_same orelse silent then () |
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
203 |
else legacy_feature ("Fact lookup differs from old-style thm database:\n" ^ |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
204 |
show_result new_res ^ " vs " ^ show_result old_res ^ |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
205 |
Position.str_of (Position.thread_data ())); |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26320
diff
changeset
|
206 |
in Option.map #2 old_res |> the_thms name |> Facts.select thmref |> map (Thm.transfer theory) end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
207 |
|
26320 | 208 |
in |
209 |
||
26344
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
210 |
val get_fact_silent = get true; |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
211 |
val get_fact = get false; |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
212 |
|
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
213 |
fun get_thms thy name = get_fact thy (Facts.Named (name, NONE)); |
04dacc6809b6
simplified get_thm(s): back to plain name argument;
wenzelm
parents:
26336
diff
changeset
|
214 |
fun get_thm thy name = Facts.the_single name (get_thms thy name); |
4783 | 215 |
|
26292
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
216 |
end; |
009e56d16080
get_thm(s): check facts lookup vs. old thm database;
wenzelm
parents:
26282
diff
changeset
|
217 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
218 |
|
16336 | 219 |
(* thms_of etc. *) |
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
220 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
221 |
fun thms_of thy = |
17162 | 222 |
let val thms = #2 (theorems_of thy) |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
223 |
in map (`(get_name_hint)) (maps snd (Symtab.dest thms)) end; |
15703 | 224 |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
225 |
fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy); |
16336 | 226 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
227 |
|
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 |
(** store theorems **) (*DESTRUCTIVE*) |
3987 | 230 |
|
16441 | 231 |
(* hiding -- affects current theory node only *) |
12695 | 232 |
|
23933 | 233 |
fun hide_thms fully names thy = CRITICAL (fn () => |
12695 | 234 |
let |
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
|
235 |
val r as ref (Thms {theorems = (space, thms), all_facts}) = get_theorems_ref thy; |
16132 | 236 |
val space' = fold (NameSpace.hide fully) names space; |
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
|
237 |
in r := make_thms (space', thms) all_facts; thy end); |
12695 | 238 |
|
239 |
||
21580 | 240 |
(* fact specifications *) |
241 |
||
242 |
fun map_facts f = map (apsnd (map (apfst (map f)))); |
|
243 |
fun burrow_fact f = split_list #>> burrow f #> op ~~; |
|
244 |
fun burrow_facts f = split_list ##> burrow (burrow_fact f) #> op ~~; |
|
245 |
||
246 |
||
4853 | 247 |
(* naming *) |
248 |
||
18614 | 249 |
fun gen_names _ len "" = replicate len "" |
250 |
| gen_names j len name = map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len); |
|
4853 | 251 |
|
18801 | 252 |
fun name_multi name [x] = [(name, x)] |
253 |
| name_multi name xs = gen_names 0 (length xs) name ~~ xs; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
254 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
255 |
fun name_thm pre official name thm = thm |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
256 |
|> (if Thm.get_name thm <> "" andalso pre orelse not official then I else Thm.put_name name) |
26050 | 257 |
|> (if has_name_hint thm andalso pre orelse name = "" then I else put_name_hint name) |
258 |
|> 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
|
259 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
260 |
fun name_thms pre official name xs = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
261 |
map (uncurry (name_thm pre official)) (name_multi name xs); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
262 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
263 |
fun name_thmss official name fact = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
264 |
burrow_fact (name_thms true official name) fact; |
4853 | 265 |
|
266 |
||
11998 | 267 |
(* enter_thms *) |
4853 | 268 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
269 |
fun warn_overwrite name = warning ("Replaced old copy of theorems " ^ quote name); |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
270 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name); |
3987 | 271 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
272 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap |
23933 | 273 |
| enter_thms pre_name post_name app_att (bname, thms) thy = CRITICAL (fn () => |
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
274 |
let |
16441 | 275 |
val name = Sign.full_name thy bname; |
276 |
val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms)); |
|
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
|
277 |
val r as ref (Thms {theorems = (space, theorems), all_facts}) = get_theorems_ref thy'; |
16513
f38693aad717
enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents:
16493
diff
changeset
|
278 |
val space' = Sign.declare_name thy' name space; |
17418 | 279 |
val theorems' = Symtab.update (name, thms') theorems; |
26308 | 280 |
val all_facts' = Facts.add_global (Sign.naming_of thy') (name, thms') all_facts; |
13274 | 281 |
in |
17418 | 282 |
(case Symtab.lookup theorems name of |
15531 | 283 |
NONE => () |
16441 | 284 |
| SOME thms'' => |
285 |
if Thm.eq_thms (thms', thms'') then warn_same name |
|
13274 | 286 |
else warn_overwrite name); |
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
|
287 |
r := make_thms (space', theorems') all_facts'; |
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
288 |
(thms', thy') |
23933 | 289 |
end); |
3987 | 290 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
291 |
|
6091 | 292 |
(* add_thms(s) *) |
4853 | 293 |
|
16441 | 294 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
295 |
enter_thms pre_name (name_thms false true) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
296 |
(foldl_map (Thm.theory_attributes atts)) (bname, thms); |
4853 | 297 |
|
18377 | 298 |
fun gen_add_thmss pre_name = |
299 |
fold_map (add_thms_atts pre_name); |
|
5907 | 300 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
301 |
fun gen_add_thms pre_name args = |
18377 | 302 |
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
|
303 |
|
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
304 |
val add_thmss = gen_add_thmss (name_thms true true); |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
305 |
val add_thms = gen_add_thms (name_thms true true); |
5907 | 306 |
|
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 |
|
6091 | 340 |
(* store_thm *) |
5280 | 341 |
|
11998 | 342 |
fun store_thm ((bname, thm), atts) thy = |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
343 |
let val ([th'], thy') = add_thms_atts (name_thms true true) ((bname, [thm]), atts) thy |
18358 | 344 |
in (th', thy') end; |
3987 | 345 |
|
346 |
||
16441 | 347 |
(* smart_store_thms(_open) *) |
3987 | 348 |
|
16441 | 349 |
local |
350 |
||
351 |
fun smart_store _ (name, []) = |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
352 |
error ("Cannot store empty list of theorems: " ^ quote name) |
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
353 |
| smart_store official (name, [thm]) = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
354 |
fst (enter_thms (name_thms true official) (name_thms false official) I (name, [thm]) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
355 |
(Thm.theory_of_thm thm)) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
356 |
| smart_store official (name, thms) = |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
357 |
let val thy = Theory.merge_list (map Thm.theory_of_thm thms) in |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
358 |
fst (enter_thms (name_thms true official) (name_thms false official) I (name, thms) thy) |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
359 |
end; |
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
360 |
|
16441 | 361 |
in |
362 |
||
21646
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
363 |
val smart_store_thms = smart_store true; |
c07b5b0e8492
thm/prf: separate official name vs. additional tags;
wenzelm
parents:
21606
diff
changeset
|
364 |
val smart_store_thms_open = smart_store false; |
16441 | 365 |
|
366 |
end; |
|
3987 | 367 |
|
368 |
||
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
369 |
(* forall_elim_var(s) -- belongs to drule.ML *) |
7899 | 370 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
371 |
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
|
372 |
let |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
373 |
val {thy, tpairs, prop, ...} = Thm.rep_thm th; |
16787 | 374 |
val add_used = Term.fold_aterms |
20853 | 375 |
(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
|
376 |
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
|
377 |
val vars = strip_vars prop; |
20071
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
20057
diff
changeset
|
378 |
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
|
379 |
|> 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
|
380 |
in fold Thm.forall_elim cvars th end; |
7899 | 381 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
382 |
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
|
383 |
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
384 |
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
|
385 |
(fn Const ("all", _) $ Abs (a, T, _) => [(a, T)] |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
386 |
| _ => raise THM ("forall_elim_vars", i, [th])) i th; |
7899 | 387 |
|
388 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
389 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
390 |
|
4853 | 391 |
local |
17418 | 392 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
393 |
fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs; |
|
18377 | 394 |
fun add_single add ((name, ax), atts) thy = |
4853 | 395 |
let |
11998 | 396 |
val named_ax = [(name, ax)]; |
7753 | 397 |
val thy' = add named_ax thy; |
398 |
val thm = hd (get_axs thy' named_ax); |
|
18377 | 399 |
in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
400 |
fun add_multi add ((name, axs), atts) thy = |
|
7753 | 401 |
let |
402 |
val named_axs = name_multi name axs; |
|
4853 | 403 |
val thy' = add named_axs thy; |
7753 | 404 |
val thms = get_axs thy' named_axs; |
18377 | 405 |
in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
406 |
fun add_singles add = fold_map (add_single add); |
|
407 |
fun add_multis add = fold_map (add_multi add); |
|
4853 | 408 |
in |
19629 | 409 |
val add_axioms = add_singles Theory.add_axioms; |
410 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
411 |
val add_axiomss = add_multis Theory.add_axioms; |
|
412 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
22796 | 413 |
val add_defs = add_singles o Theory.add_defs false; |
414 |
val add_defs_i = add_singles o Theory.add_defs_i false; |
|
415 |
val add_defs_unchecked = add_singles o Theory.add_defs true; |
|
416 |
val add_defs_unchecked_i = add_singles o Theory.add_defs_i true; |
|
4853 | 417 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
418 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
419 |
|
3987 | 420 |
|
5091 | 421 |
(*** the ProtoPure theory ***) |
3987 | 422 |
|
24243 | 423 |
val typ = SimpleSyntax.read_typ; |
424 |
val term = SimpleSyntax.read_term; |
|
425 |
val prop = SimpleSyntax.read_prop; |
|
426 |
||
427 |
val appl_syntax = |
|
428 |
[("_appl", typ "('b => 'a) => args => logic", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000)), |
|
429 |
("_appl", typ "('b => 'a) => args => aprop", Mixfix ("(1_/(1'(_')))", [1000, 0], 1000))]; |
|
430 |
||
431 |
val applC_syntax = |
|
432 |
[("", typ "'a => cargs", Delimfix "_"), |
|
433 |
("_cargs", typ "'a => cargs => cargs", Mixfix ("_/ _", [1000, 1000], 1000)), |
|
434 |
("_applC", typ "('b => 'a) => cargs => logic", Mixfix ("(1_/ _)", [1000, 1000], 999)), |
|
435 |
("_applC", typ "('b => 'a) => cargs => aprop", Mixfix ("(1_/ _)", [1000, 1000], 999))]; |
|
16441 | 436 |
|
3987 | 437 |
val proto_pure = |
16493 | 438 |
Context.pre_pure_thy |
16987 | 439 |
|> Compress.init_data |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
440 |
|> TheoremsData.init |
22796 | 441 |
|> Sign.add_types |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
442 |
[("fun", 2, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
443 |
("prop", 0, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
444 |
("itself", 1, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
445 |
("dummy", 0, NoSyn)] |
22796 | 446 |
|> Sign.add_nonterminals Syntax.basic_nonterms |
24243 | 447 |
|> Sign.add_syntax_i |
448 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
|
449 |
("_abs", typ "'a", NoSyn), |
|
450 |
("", typ "'a => args", Delimfix "_"), |
|
451 |
("_args", typ "'a => args => args", Delimfix "_,/ _"), |
|
452 |
("", typ "id => idt", Delimfix "_"), |
|
453 |
("_idtdummy", typ "idt", Delimfix "'_"), |
|
454 |
("_idtyp", typ "id => type => idt", Mixfix ("_::_", [], 0)), |
|
455 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()::_", [], 0)), |
|
456 |
("", typ "idt => idt", Delimfix "'(_')"), |
|
457 |
("", typ "idt => idts", Delimfix "_"), |
|
458 |
("_idts", typ "idt => idts => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
459 |
("", typ "idt => pttrn", Delimfix "_"), |
|
460 |
("", typ "pttrn => pttrns", Delimfix "_"), |
|
461 |
("_pttrns", typ "pttrn => pttrns => pttrns", Mixfix ("_/ _", [1, 0], 0)), |
|
462 |
("", typ "id => aprop", Delimfix "_"), |
|
463 |
("", typ "longid => aprop", Delimfix "_"), |
|
464 |
("", typ "var => aprop", Delimfix "_"), |
|
465 |
("_DDDOT", typ "aprop", Delimfix "..."), |
|
466 |
("_aprop", typ "aprop => prop", Delimfix "PROP _"), |
|
467 |
("_asm", typ "prop => asms", Delimfix "_"), |
|
468 |
("_asms", typ "prop => asms => asms", Delimfix "_;/ _"), |
|
469 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
470 |
("_ofclass", typ "type => logic => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
471 |
("_mk_ofclass", typ "dummy", NoSyn), |
|
472 |
("_TYPE", typ "type => logic", Delimfix "(1TYPE/(1'(_')))"), |
|
473 |
("", typ "id => logic", Delimfix "_"), |
|
474 |
("", typ "longid => logic", Delimfix "_"), |
|
475 |
("", typ "var => logic", Delimfix "_"), |
|
476 |
("_DDDOT", typ "logic", Delimfix "..."), |
|
477 |
("_constify", typ "num => num_const", Delimfix "_"), |
|
478 |
("_indexnum", typ "num_const => index", Delimfix "\\<^sub>_"), |
|
479 |
("_index", typ "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
480 |
("_indexdefault", typ "index", Delimfix ""), |
|
481 |
("_indexvar", typ "index", Delimfix "'\\<index>"), |
|
482 |
("_struct", typ "index => logic", Mixfix ("\\<struct>_", [1000], 1000)), |
|
483 |
("==>", typ "prop => prop => prop", Delimfix "op ==>"), |
|
484 |
(Term.dummy_patternN, typ "aprop", Delimfix "'_")] |
|
485 |
|> Sign.add_syntax_i appl_syntax |
|
486 |
|> Sign.add_modesyntax_i (Symbol.xsymbolsN, true) |
|
487 |
[("fun", typ "type => type => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
|
488 |
("_bracket", typ "types => type => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
|
489 |
("_ofsort", typ "tid => sort => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
|
490 |
("_constrain", typ "'a => type => 'a", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
|
491 |
("_idtyp", typ "id => type => idt", Mixfix ("_\\<Colon>_", [], 0)), |
|
492 |
("_idtypdummy", typ "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
|
493 |
("_type_constraint_", typ "'a", NoSyn), |
|
494 |
("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
|
495 |
("==", typ "'a => 'a => prop", InfixrName ("\\<equiv>", 2)), |
|
496 |
("all_binder", typ "idts => prop => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)), |
|
497 |
("==>", typ "prop => prop => prop", InfixrName ("\\<Longrightarrow>", 1)), |
|
498 |
("_DDDOT", typ "aprop", Delimfix "\\<dots>"), |
|
499 |
("_bigimpl", typ "asms => prop => prop", Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)), |
|
500 |
("_DDDOT", typ "logic", Delimfix "\\<dots>")] |
|
501 |
|> Sign.add_modesyntax_i ("", false) |
|
502 |
[("prop", typ "prop => prop", Mixfix ("_", [0], 0)), |
|
503 |
("ProtoPure.term", typ "'a => prop", Delimfix "TERM _"), |
|
504 |
("ProtoPure.conjunction", typ "prop => prop => prop", InfixrName ("&&", 2))] |
|
505 |
|> Sign.add_modesyntax_i ("HTML", false) |
|
506 |
[("_lambda", typ "pttrns => 'a => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
|
507 |
|> Sign.add_consts_i |
|
508 |
[("==", typ "'a => 'a => prop", InfixrName ("==", 2)), |
|
509 |
("==>", typ "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
510 |
("all", typ "('a => prop) => prop", Binder ("!!", 0, 0)), |
|
511 |
("prop", typ "prop => prop", NoSyn), |
|
512 |
("TYPE", typ "'a itself", NoSyn), |
|
513 |
(Term.dummy_patternN, typ "'a", Delimfix "'_")] |
|
25018
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents:
24965
diff
changeset
|
514 |
|> Theory.add_deps "==" ("==", typ "'a => 'a => prop") [] |
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents:
24965
diff
changeset
|
515 |
|> Theory.add_deps "==>" ("==>", typ "prop => prop => prop") [] |
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents:
24965
diff
changeset
|
516 |
|> Theory.add_deps "all" ("all", typ "('a => prop) => prop") [] |
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents:
24965
diff
changeset
|
517 |
|> Theory.add_deps "TYPE" ("TYPE", typ "'a itself") [] |
fac2ceba75b4
replaced obsolete Theory.add_finals_i by Theory.add_deps;
wenzelm
parents:
24965
diff
changeset
|
518 |
|> Theory.add_deps Term.dummy_patternN (Term.dummy_patternN, typ "'a") [] |
22796 | 519 |
|> Sign.add_trfuns Syntax.pure_trfuns |
520 |
|> Sign.add_trfunsT Syntax.pure_trfunsT |
|
16441 | 521 |
|> Sign.local_path |
24243 | 522 |
|> Sign.add_consts_i |
523 |
[("term", typ "'a => prop", NoSyn), |
|
524 |
("conjunction", typ "prop => prop => prop", NoSyn)] |
|
525 |
|> (add_defs_i false o map Thm.no_attributes) |
|
526 |
[("prop_def", prop "(CONST prop :: prop => prop) (A::prop) == A::prop"), |
|
527 |
("term_def", prop "(CONST ProtoPure.term :: 'a => prop) (x::'a) == (!!A::prop. A ==> A)"), |
|
528 |
("conjunction_def", prop "(A && B) == (!!C::prop. (A ==> B ==> C) ==> C)")] |> snd |
|
19775 | 529 |
|> Sign.hide_consts false ["conjunction", "term"] |
18377 | 530 |
|> add_thmss [(("nothing", []), [])] |> snd |
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
531 |
|> Theory.add_axioms_i Proofterm.equality_axms |
16493 | 532 |
|> Theory.end_theory; |
3987 | 533 |
|
5091 | 534 |
structure ProtoPure = |
535 |
struct |
|
536 |
val thy = proto_pure; |
|
18031 | 537 |
val prop_def = get_axiom thy "prop_def"; |
19775 | 538 |
val term_def = get_axiom thy "term_def"; |
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
539 |
val conjunction_def = get_axiom thy "conjunction_def"; |
5091 | 540 |
end; |
3987 | 541 |
|
542 |
end; |
|
543 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
544 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
545 |
open BasicPureThy; |