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