author | wenzelm |
Wed, 09 Aug 2000 21:00:22 +0200 | |
changeset 9564 | 391f3ee75b1e |
parent 9534 | 0d14a9e7930c |
child 9808 | 4e47e40c0ac5 |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
9318 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
3987 | 5 |
|
5091 | 6 |
Theorem database, derived theory operations, and the ProtoPure theory. |
3987 | 7 |
*) |
8 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
9 |
signature BASIC_PURE_THY = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
10 |
sig |
5000 | 11 |
val print_theorems: theory -> unit |
12 |
val print_theory: theory -> unit |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
13 |
val get_thm: theory -> xstring -> thm |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
14 |
val get_thms: theory -> xstring -> thm list |
6094 | 15 |
val get_thmss: theory -> xstring list -> thm list |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
16 |
val thms_of: theory -> (string * thm) list |
5091 | 17 |
structure ProtoPure: |
18 |
sig |
|
19 |
val thy: theory |
|
20 |
val flexpair_def: thm |
|
21 |
val Goal_def: thm |
|
22 |
end |
|
4853 | 23 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
24 |
|
3987 | 25 |
signature PURE_THY = |
26 |
sig |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
27 |
include BASIC_PURE_THY |
9564 | 28 |
val get_thms_closure: theory -> xstring -> thm list |
29 |
val single_thm: string -> thm list -> thm |
|
6367 | 30 |
val cond_extern_thm_sg: Sign.sg -> string -> xstring |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
31 |
val thms_containing: theory -> string list -> (string * thm) list |
6091 | 32 |
val store_thm: (bstring * thm) * theory attribute list -> theory -> theory * thm |
7405 | 33 |
val smart_store_thms: (bstring * thm list) -> thm list |
7899 | 34 |
val forall_elim_var: int -> thm -> thm |
35 |
val forall_elim_vars: int -> thm -> thm |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
36 |
val add_thms: ((bstring * thm) * theory attribute list) list -> theory -> theory * thm list |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
37 |
val add_thmss: ((bstring * thm list) * theory attribute list) list -> theory -> theory * thm list list |
9192 | 38 |
val have_thmss: theory attribute list -> ((bstring * theory attribute list) * |
39 |
(thm list * theory attribute list) list) list -> theory -> theory * (string * thm list) list |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
40 |
val add_axioms: ((bstring * string) * theory attribute list) list -> theory -> theory * thm list |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
41 |
val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory * thm list |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
42 |
val add_axiomss: ((bstring * string list) * theory attribute list) list -> theory -> theory * thm list list |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
43 |
val add_axiomss_i: ((bstring * term list) * theory attribute list) list -> theory -> theory * thm list list |
9318 | 44 |
val add_defs: bool -> ((bstring * string) * theory attribute list) list |
45 |
-> theory -> theory * thm list |
|
46 |
val add_defs_i: bool -> ((bstring * term) * theory attribute list) list |
|
47 |
-> theory -> theory * thm list |
|
48 |
val add_defss: bool -> ((bstring * string list) * theory attribute list) list |
|
49 |
-> theory -> theory * thm list list |
|
50 |
val add_defss_i: bool -> ((bstring * term list) * theory attribute list) list |
|
51 |
-> theory -> theory * thm list list |
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
52 |
val get_name: theory -> string |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
53 |
val put_name: string -> theory -> theory |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
54 |
val global_path: theory -> theory |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
55 |
val local_path: theory -> theory |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
56 |
val begin_theory: string -> theory list -> theory |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
57 |
val end_theory: theory -> theory |
6682 | 58 |
val checkpoint: theory -> theory |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
59 |
val add_typedecls: (bstring * string list * mixfix) list -> theory -> theory |
3987 | 60 |
end; |
61 |
||
62 |
structure PureThy: PURE_THY = |
|
63 |
struct |
|
64 |
||
65 |
||
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
66 |
(*** theorem database ***) |
3987 | 67 |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
68 |
(** data kind 'Pure/theorems' **) |
3987 | 69 |
|
5005 | 70 |
structure TheoremsDataArgs = |
71 |
struct |
|
72 |
val name = "Pure/theorems"; |
|
3987 | 73 |
|
5005 | 74 |
type T = |
75 |
{space: NameSpace.T, |
|
6091 | 76 |
thms_tab: thm list Symtab.table, |
77 |
const_idx: int * (int * thm) list Symtab.table} ref; |
|
3987 | 78 |
|
4853 | 79 |
fun mk_empty _ = |
5005 | 80 |
ref {space = NameSpace.empty, thms_tab = Symtab.empty, const_idx = (0, Symtab.empty)} : T; |
3987 | 81 |
|
5005 | 82 |
val empty = mk_empty (); |
6547 | 83 |
fun copy (ref x) = ref x; |
5005 | 84 |
val prep_ext = mk_empty; |
85 |
val merge = mk_empty; |
|
86 |
||
8720 | 87 |
fun pretty sg (ref {space, thms_tab, const_idx = _}) = |
4853 | 88 |
let |
6091 | 89 |
val prt_thm = Display.pretty_thm o Thm.transfer_sg sg; |
4853 | 90 |
fun prt_thms (name, [th]) = |
91 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th] |
|
92 |
| prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths); |
|
3987 | 93 |
|
6846 | 94 |
val thmss = NameSpace.cond_extern_table space thms_tab; |
9215 | 95 |
in Pretty.big_list "theorems:" (map prt_thms thmss) end; |
8720 | 96 |
|
9215 | 97 |
fun print sg data = Pretty.writeln (pretty sg data); |
3987 | 98 |
end; |
99 |
||
5005 | 100 |
structure TheoremsData = TheoryDataFun(TheoremsDataArgs); |
101 |
val get_theorems_sg = TheoremsData.get_sg; |
|
102 |
val get_theorems = TheoremsData.get; |
|
103 |
||
6367 | 104 |
val cond_extern_thm_sg = NameSpace.cond_extern o #space o ! o get_theorems_sg; |
105 |
||
3987 | 106 |
|
5000 | 107 |
(* print theory *) |
3987 | 108 |
|
5005 | 109 |
val print_theorems = TheoremsData.print; |
8720 | 110 |
|
5000 | 111 |
fun print_theory thy = |
9215 | 112 |
Display.pretty_full_theory thy @ |
113 |
[TheoremsDataArgs.pretty (Theory.sign_of thy) (get_theorems thy)] |
|
8720 | 114 |
|> Pretty.chunks |> Pretty.writeln; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
115 |
|
3987 | 116 |
|
117 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
118 |
(** retrieve theorems **) |
3987 | 119 |
|
9564 | 120 |
(* selections *) |
121 |
||
122 |
fun the_thms _ (Some thms) = thms |
|
123 |
| the_thms name None = error ("Unknown theorem(s) " ^ quote name); |
|
4037 | 124 |
|
9564 | 125 |
fun single_thm _ [thm] = thm |
126 |
| single_thm name _ = error ("Single theorem expected " ^ quote name); |
|
127 |
||
128 |
||
129 |
(* get_thms_closure -- statically scoped *) |
|
130 |
||
131 |
(*beware of proper order of evaluation!*) |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
132 |
|
9564 | 133 |
fun lookup_thms thy = |
134 |
let |
|
135 |
val sg_ref = Sign.self_ref (Theory.sign_of thy); |
|
136 |
val ref {space, thms_tab, ...} = get_theorems thy; |
|
137 |
in |
|
138 |
fn name => |
|
139 |
apsome (map (Thm.transfer_sg (Sign.deref sg_ref))) (*semi-dynamic identity*) |
|
140 |
(Symtab.lookup (thms_tab, NameSpace.intern space name)) (*static content*) |
|
141 |
end; |
|
3987 | 142 |
|
9564 | 143 |
fun get_thms_closure thy = |
144 |
let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) |
|
145 |
in fn name => the_thms name (get_first (fn f => f name) closures) end; |
|
146 |
||
147 |
||
148 |
(* get_thm etc. *) |
|
149 |
||
150 |
fun get_thms theory name = |
|
151 |
get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory) |
|
152 |
|> the_thms name |> map (Thm.transfer theory); |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
153 |
|
6091 | 154 |
fun get_thmss thy names = flat (map (get_thms thy) names); |
9564 | 155 |
fun get_thm thy name = single_thm name (get_thms thy name); |
4783 | 156 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
157 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
158 |
(* thms_of *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
159 |
|
6091 | 160 |
fun attach_name thm = (Thm.name_of_thm thm, thm); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
161 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
162 |
fun thms_of thy = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
163 |
let val ref {thms_tab, ...} = get_theorems thy in |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
164 |
map attach_name (flat (map snd (Symtab.dest thms_tab))) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
165 |
end; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
166 |
|
3987 | 167 |
|
168 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
169 |
(** theorems indexed by constants **) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
170 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
171 |
(* make index *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
172 |
|
6091 | 173 |
fun add_const_idx ((next, table), thm) = |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
174 |
let |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
175 |
val {hyps, prop, ...} = Thm.rep_thm thm; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
176 |
val consts = |
7805
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
wenzelm
parents:
7753
diff
changeset
|
177 |
foldr add_term_consts (hyps, add_term_consts (prop, [])); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
178 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
179 |
fun add (tab, c) = |
6091 | 180 |
Symtab.update ((c, (next, thm) :: Symtab.lookup_multi (tab, c)), tab); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
181 |
in (next + 1, foldl add (table, consts)) end; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
182 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
183 |
fun make_const_idx thm_tab = |
5686 | 184 |
Symtab.foldl (fn (x, (_, ths)) => foldl add_const_idx (x, ths)) ((0, Symtab.empty), thm_tab); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
185 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
186 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
187 |
(* lookup index *) |
3987 | 188 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
189 |
(*search locally*) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
190 |
fun containing [] thy = thms_of thy |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
191 |
| containing consts thy = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
192 |
let |
4037 | 193 |
fun int ([], _) = [] |
194 |
| int (_, []) = [] |
|
195 |
| int (xxs as ((x as (i:int, _)) :: xs), yys as ((y as (j, _)) :: ys)) = |
|
196 |
if i = j then x :: int (xs, ys) |
|
197 |
else if i > j then int (xs, yys) |
|
198 |
else int (xxs, ys); |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
199 |
|
4037 | 200 |
fun ints [xs] = xs |
201 |
| ints xss = if exists null xss then [] else foldl int (hd xss, tl xss); |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
202 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
203 |
val ref {const_idx = (_, ctab), ...} = get_theorems thy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
204 |
val ithmss = map (fn c => Symtab.lookup_multi (ctab, c)) consts; |
6977 | 205 |
in map (attach_name o snd) (ints ithmss) end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
206 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
207 |
(*search globally*) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
208 |
fun thms_containing thy consts = |
6977 | 209 |
(case filter (is_none o Sign.const_type (Theory.sign_of thy)) consts of |
7805
0ae9ddc36fe0
theorem database now also indexes constants "Trueprop", "all",
wenzelm
parents:
7753
diff
changeset
|
210 |
[] => flat (map (containing consts) (thy :: Theory.ancestors_of thy)) |
6977 | 211 |
| cs => raise THEORY ("thms_containing: undeclared consts " ^ commas_quote cs, [thy])); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
212 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
213 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
214 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
215 |
(** store theorems **) (*DESTRUCTIVE*) |
3987 | 216 |
|
4853 | 217 |
(* naming *) |
218 |
||
219 |
fun gen_names len name = |
|
220 |
map (fn i => name ^ "_" ^ string_of_int i) (1 upto len); |
|
221 |
||
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
222 |
fun name_single name x = [(name, x)]; |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
223 |
fun name_multi name xs = gen_names (length xs) name ~~ xs; |
4853 | 224 |
|
225 |
||
6091 | 226 |
(* enter_thmx *) |
4853 | 227 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
228 |
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
|
229 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name); |
3987 | 230 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
231 |
fun enter_thmx _ app_name ("", thmx) = map #2 (app_name "" thmx) |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
232 |
| enter_thmx sg app_name (bname, thmx) = |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
233 |
let |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
234 |
val name = Sign.full_name sg bname; |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
235 |
val named_thms = map Thm.name_thm (app_name name thmx); |
3987 | 236 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
237 |
val r as ref {space, thms_tab, const_idx} = get_theorems_sg sg; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
238 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
239 |
val overwrite = |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
240 |
(case Symtab.lookup (thms_tab, name) of |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
241 |
None => false |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
242 |
| Some thms' => |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
243 |
if Library.equal_lists Thm.eq_thm (thms', named_thms) then (warn_same name; false) |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
244 |
else (warn_overwrite name; true)); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
245 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
246 |
val space' = NameSpace.extend (space, [name]); |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
247 |
val thms_tab' = Symtab.update ((name, named_thms), thms_tab); |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
248 |
val const_idx' = |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
249 |
if overwrite then make_const_idx thms_tab' |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
250 |
else foldl add_const_idx (const_idx, named_thms); |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
251 |
in r := {space = space', thms_tab = thms_tab', const_idx = const_idx'}; named_thms end; |
3987 | 252 |
|
4853 | 253 |
|
6091 | 254 |
(* add_thms(s) *) |
4853 | 255 |
|
6091 | 256 |
fun add_thmx app_name app_att ((bname, thmx), atts) thy = |
5280 | 257 |
let |
6091 | 258 |
val (thy', thmx') = app_att ((thy, thmx), atts); |
259 |
val thms'' = enter_thmx (Theory.sign_of thy') app_name (bname, thmx'); |
|
260 |
in (thy', thms'') end; |
|
4853 | 261 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
262 |
fun add_thms args theory = |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
263 |
(theory, args) |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
264 |
|> foldl_map (fn (thy, arg) => add_thmx name_single Thm.apply_attributes arg thy) |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
265 |
|> apsnd (map hd); |
5907 | 266 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
267 |
fun add_thmss args theory = |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
268 |
(theory, args) |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
269 |
|> foldl_map (fn (thy, arg) => add_thmx name_multi Thm.applys_attributes arg thy); |
5907 | 270 |
|
271 |
||
6091 | 272 |
(* have_thmss *) |
5907 | 273 |
|
9192 | 274 |
local |
275 |
fun have_thss kind_atts (thy, ((bname, more_atts), ths_atts)) = |
|
276 |
let |
|
277 |
fun app (x, (ths, atts)) = Thm.applys_attributes ((x, ths), atts); |
|
278 |
val (thy', thmss') = |
|
279 |
foldl_map app (thy, map (fn (ths, atts) => (ths, atts @ more_atts @ kind_atts)) ths_atts); |
|
280 |
val thms' = flat thmss'; |
|
281 |
val thms'' = enter_thmx (Theory.sign_of thy') name_multi (bname, thms'); |
|
282 |
in (thy', (bname, thms'')) end; |
|
283 |
in |
|
284 |
fun have_thmss kind_atts args thy = foldl_map (have_thss kind_atts) (thy, args); |
|
285 |
end; |
|
5280 | 286 |
|
287 |
||
6091 | 288 |
(* store_thm *) |
5280 | 289 |
|
6091 | 290 |
fun store_thm th_atts thy = |
291 |
let val (thy', [th']) = add_thmx name_single Thm.apply_attributes th_atts thy |
|
5280 | 292 |
in (thy', th') end; |
3987 | 293 |
|
294 |
||
7405 | 295 |
(* smart_store_thms *) |
3987 | 296 |
|
7405 | 297 |
fun smart_store_thms (name, []) = error ("Cannot store empty list of theorems: " ^ quote name) |
298 |
| smart_store_thms (name, [thm]) = enter_thmx (Thm.sign_of_thm thm) name_single (name, thm) |
|
299 |
| smart_store_thms (name, thms) = |
|
300 |
let |
|
301 |
val merge_sg = Sign.merge_refs o apsnd (Sign.self_ref o Thm.sign_of_thm); |
|
302 |
val sg_ref = foldl merge_sg (Sign.self_ref (Thm.sign_of_thm (hd thms)), tl thms); |
|
303 |
in enter_thmx (Sign.deref sg_ref) name_multi (name, thms) end; |
|
3987 | 304 |
|
305 |
||
7899 | 306 |
(* forall_elim_vars (belongs to drule.ML) *) |
307 |
||
308 |
(*Replace outermost quantified variable by Var of given index. |
|
309 |
Could clash with Vars already present.*) |
|
310 |
fun forall_elim_var i th = |
|
311 |
let val {prop,sign,...} = rep_thm th |
|
312 |
in case prop of |
|
313 |
Const("all",_) $ Abs(a,T,_) => |
|
314 |
forall_elim (cterm_of sign (Var((a,i), T))) th |
|
315 |
| _ => raise THM("forall_elim_var", i, [th]) |
|
316 |
end; |
|
317 |
||
318 |
(*Repeat forall_elim_var until all outer quantifiers are removed*) |
|
319 |
fun forall_elim_vars i th = |
|
320 |
forall_elim_vars i (forall_elim_var i th) |
|
321 |
handle THM _ => th; |
|
322 |
||
323 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
324 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
325 |
|
4853 | 326 |
local |
7899 | 327 |
fun get_axs thy named_axs = |
328 |
map (forall_elim_vars 0 o Thm.get_axiom thy o fst) named_axs; |
|
7753 | 329 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
330 |
fun add_single add (thy, ((name, ax), atts)) = |
4853 | 331 |
let |
7753 | 332 |
val named_ax = name_single name ax; |
333 |
val thy' = add named_ax thy; |
|
334 |
val thm = hd (get_axs thy' named_ax); |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
335 |
in apsnd hd (add_thms [((name, thm), atts)] thy') end; |
7753 | 336 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
337 |
fun add_multi add (thy, ((name, axs), atts)) = |
7753 | 338 |
let |
339 |
val named_axs = name_multi name axs; |
|
4853 | 340 |
val thy' = add named_axs thy; |
7753 | 341 |
val thms = get_axs thy' named_axs; |
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
342 |
in apsnd hd (add_thmss [((name, thms), atts)] thy') end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
343 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
344 |
fun add_singles add args thy = foldl_map (add_single add) (thy, args); |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
345 |
fun add_multis add args thy = foldl_map (add_multi add) (thy, args); |
4853 | 346 |
in |
7753 | 347 |
val add_axioms = add_singles Theory.add_axioms; |
348 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
349 |
val add_axiomss = add_multis Theory.add_axioms; |
|
350 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
9318 | 351 |
val add_defs = add_singles o Theory.add_defs; |
352 |
val add_defs_i = add_singles o Theory.add_defs_i; |
|
353 |
val add_defss = add_multis o Theory.add_defs; |
|
354 |
val add_defss_i = add_multis o Theory.add_defs_i; |
|
4853 | 355 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
356 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
357 |
|
3987 | 358 |
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
359 |
(*** derived theory operations ***) |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
360 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
361 |
(** theory management **) |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
362 |
|
5005 | 363 |
(* data kind 'Pure/theory_management' *) |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
364 |
|
5005 | 365 |
structure TheoryManagementDataArgs = |
366 |
struct |
|
367 |
val name = "Pure/theory_management"; |
|
6660 | 368 |
type T = {name: string, version: int}; |
5000 | 369 |
|
6660 | 370 |
val empty = {name = "", version = 0}; |
6547 | 371 |
val copy = I; |
5005 | 372 |
val prep_ext = I; |
5000 | 373 |
fun merge _ = empty; |
5005 | 374 |
fun print _ _ = (); |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
375 |
end; |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
376 |
|
5005 | 377 |
structure TheoryManagementData = TheoryDataFun(TheoryManagementDataArgs); |
378 |
val get_info = TheoryManagementData.get; |
|
379 |
val put_info = TheoryManagementData.put; |
|
380 |
||
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
381 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
382 |
(* get / put name *) |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
383 |
|
5000 | 384 |
val get_name = #name o get_info; |
6660 | 385 |
fun put_name name = put_info {name = name, version = 0}; |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
386 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
387 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
388 |
(* control prefixing of theory name *) |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
389 |
|
5210 | 390 |
val global_path = Theory.root_path; |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
391 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
392 |
fun local_path thy = |
5210 | 393 |
thy |> Theory.root_path |> Theory.add_path (get_name thy); |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
394 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
395 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
396 |
(* begin / end theory *) |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
397 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
398 |
fun begin_theory name thys = |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
399 |
Theory.prep_ext_merge thys |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
400 |
|> put_name name |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
401 |
|> local_path; |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
402 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
403 |
fun end_theory thy = Theory.add_name (get_name thy) thy; |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
404 |
|
6682 | 405 |
fun checkpoint thy = |
406 |
if is_draft thy then |
|
407 |
let val {name, version} = get_info thy in |
|
408 |
thy |
|
409 |
|> Theory.add_name (name ^ ":" ^ string_of_int version) |
|
410 |
|> put_info {name = name, version = version + 1} |
|
411 |
end |
|
412 |
else thy; |
|
5000 | 413 |
|
414 |
||
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
415 |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
416 |
(** add logical types **) |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
417 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
418 |
fun add_typedecls decls thy = |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
419 |
let |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
420 |
val full = Sign.full_name (Theory.sign_of thy); |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
421 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
422 |
fun type_of (raw_name, vs, mx) = |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
423 |
if null (duplicates vs) then (raw_name, length vs, mx) |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
424 |
else error ("Duplicate parameters in type declaration: " ^ quote raw_name); |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
425 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
426 |
fun arity_of (raw_name, len, mx) = |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
427 |
(full (Syntax.type_name raw_name mx), replicate len logicS, logicS); |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
428 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
429 |
val types = map type_of decls; |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
430 |
val arities = map arity_of types; |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
431 |
in |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
432 |
thy |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
433 |
|> Theory.add_types types |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
434 |
|> Theory.add_arities_i arities |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
435 |
end; |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
436 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
437 |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
438 |
|
5091 | 439 |
(*** the ProtoPure theory ***) |
3987 | 440 |
|
441 |
val proto_pure = |
|
442 |
Theory.pre_pure |
|
5907 | 443 |
|> Library.apply [TheoremsData.init, TheoryManagementData.init] |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
444 |
|> put_name "ProtoPure" |
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
445 |
|> global_path |
3987 | 446 |
|> Theory.add_types |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
447 |
[("fun", 2, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
448 |
("prop", 0, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
449 |
("itself", 1, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
450 |
("dummy", 0, NoSyn)] |
3987 | 451 |
|> Theory.add_classes_i [(logicC, [])] |
452 |
|> Theory.add_defsort_i logicS |
|
453 |
|> Theory.add_arities_i |
|
454 |
[("fun", [logicS, logicS], logicS), |
|
455 |
("prop", [], logicS), |
|
456 |
("itself", [logicS], logicS)] |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
457 |
|> Theory.add_nonterminals Syntax.pure_nonterms |
3987 | 458 |
|> Theory.add_syntax Syntax.pure_syntax |
6692 | 459 |
|> Theory.add_modesyntax (Symbol.symbolsN, true) Syntax.pure_sym_syntax |
460 |
|> Theory.add_modesyntax (Symbol.xsymbolsN, true) Syntax.pure_xsym_syntax |
|
3987 | 461 |
|> Theory.add_trfuns Syntax.pure_trfuns |
462 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
463 |
|> Theory.add_syntax |
|
7949 | 464 |
[("==>", "[prop, prop] => prop", Delimfix "op ==>"), |
9534 | 465 |
(Term.dummy_patternN, "aprop", Delimfix "'_")] |
3987 | 466 |
|> Theory.add_consts |
467 |
[("==", "['a::{}, 'a] => prop", InfixrName ("==", 2)), |
|
468 |
("=?=", "['a::{}, 'a] => prop", InfixrName ("=?=", 2)), |
|
469 |
("==>", "[prop, prop] => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
470 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)), |
|
8039 | 471 |
("Goal", "prop => prop", Mixfix ("GOAL _", [1000], 999)), |
6547 | 472 |
("TYPE", "'a itself", NoSyn), |
9534 | 473 |
(Term.dummy_patternN, "'a", Delimfix "'_")] |
5041
a1d0a6d555cd
Goals may now contain assumptions, which are not returned.
nipkow
parents:
5026
diff
changeset
|
474 |
|> Theory.add_modesyntax ("", false) |
8039 | 475 |
[("Goal", "prop => prop", Mixfix ("_", [0], 0))] |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
476 |
|> local_path |
9318 | 477 |
|> (#1 oo (add_defs false o map Thm.no_attributes)) |
4788 | 478 |
[("flexpair_def", "(t =?= u) == (t == u::'a::{})"), |
479 |
("Goal_def", "GOAL (PROP A) == PROP A")] |
|
9238 | 480 |
|> (#1 o add_thmss [(("nothing", []), [])]) |
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
481 |
|> end_theory; |
3987 | 482 |
|
5091 | 483 |
structure ProtoPure = |
484 |
struct |
|
485 |
val thy = proto_pure; |
|
486 |
val flexpair_def = get_axiom thy "flexpair_def"; |
|
487 |
val Goal_def = get_axiom thy "Goal_def"; |
|
488 |
end; |
|
3987 | 489 |
|
490 |
||
491 |
end; |
|
492 |
||
493 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
494 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
495 |
open BasicPureThy; |