| author | streckem |
| Wed, 23 Oct 2002 16:10:42 +0200 | |
| changeset 13674 | f4c64597fb02 |
| parent 13663 | 8c09e1fa24a7 |
| child 13713 | 34ef15959ce7 |
| 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 Goal_def: thm |
|
21 |
end |
|
| 4853 | 22 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
23 |
|
| 3987 | 24 |
signature PURE_THY = |
25 |
sig |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
26 |
include BASIC_PURE_THY |
| 9808 | 27 |
val get_thm_closure: theory -> xstring -> thm |
| 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 |
| 13274 | 31 |
val thms_containing: theory -> string list * string list -> (string * thm list) list |
| 13646 | 32 |
val thms_containing_consts: theory -> string list -> (string * thm) list |
33 |
val find_intros: theory -> term -> (string * thm) list |
|
34 |
val find_elims : theory -> term -> (string * thm) list |
|
| 12695 | 35 |
val hide_thms: bool -> string list -> theory -> theory |
| 6091 | 36 |
val store_thm: (bstring * thm) * theory attribute list -> theory -> theory * thm |
| 7405 | 37 |
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
|
38 |
val smart_store_thms_open: (bstring * thm list) -> thm list |
| 7899 | 39 |
val forall_elim_var: int -> thm -> thm |
40 |
val forall_elim_vars: int -> thm -> thm |
|
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
41 |
val add_thms: ((bstring * thm) * theory attribute list) list -> theory -> theory * thm list |
| 12711 | 42 |
val add_thmss: ((bstring * thm list) * theory attribute list) list -> theory |
43 |
-> theory * thm list list |
|
44 |
val have_thmss: theory attribute -> ((bstring * theory attribute list) * |
|
45 |
(xstring * theory attribute list) list) list -> theory -> theory * (bstring * thm list) list |
|
46 |
val have_thmss_i: theory attribute -> ((bstring * theory attribute list) * |
|
47 |
(thm list * theory attribute list) list) list -> theory -> theory * (bstring * thm list) list |
|
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
48 |
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
|
49 |
val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory * thm list |
| 12711 | 50 |
val add_axiomss: ((bstring * string list) * theory attribute list) list -> theory |
51 |
-> theory * thm list list |
|
52 |
val add_axiomss_i: ((bstring * term list) * theory attribute list) list -> theory |
|
53 |
-> theory * thm list list |
|
| 9318 | 54 |
val add_defs: bool -> ((bstring * string) * theory attribute list) list |
55 |
-> theory -> theory * thm list |
|
56 |
val add_defs_i: bool -> ((bstring * term) * theory attribute list) list |
|
57 |
-> theory -> theory * thm list |
|
58 |
val add_defss: bool -> ((bstring * string list) * theory attribute list) list |
|
59 |
-> theory -> theory * thm list list |
|
60 |
val add_defss_i: bool -> ((bstring * term list) * theory attribute list) list |
|
61 |
-> theory -> theory * thm list list |
|
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
62 |
val get_name: theory -> string |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
63 |
val put_name: string -> theory -> theory |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
64 |
val global_path: theory -> theory |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
65 |
val local_path: theory -> theory |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
66 |
val begin_theory: string -> theory list -> theory |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
67 |
val end_theory: theory -> theory |
| 6682 | 68 |
val checkpoint: theory -> theory |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
69 |
val add_typedecls: (bstring * string list * mixfix) list -> theory -> theory |
| 3987 | 70 |
end; |
71 |
||
72 |
structure PureThy: PURE_THY = |
|
73 |
struct |
|
74 |
||
75 |
||
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
76 |
(*** theorem database ***) |
| 3987 | 77 |
|
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
78 |
(** data kind 'Pure/theorems' **) |
| 3987 | 79 |
|
| 5005 | 80 |
structure TheoremsDataArgs = |
81 |
struct |
|
82 |
val name = "Pure/theorems"; |
|
| 3987 | 83 |
|
| 5005 | 84 |
type T = |
85 |
{space: NameSpace.T,
|
|
| 6091 | 86 |
thms_tab: thm list Symtab.table, |
| 13274 | 87 |
index: FactIndex.T} ref; |
| 3987 | 88 |
|
| 4853 | 89 |
fun mk_empty _ = |
| 13274 | 90 |
ref {space = NameSpace.empty, thms_tab = Symtab.empty, index = FactIndex.empty}: T;
|
| 3987 | 91 |
|
| 5005 | 92 |
val empty = mk_empty (); |
| 6547 | 93 |
fun copy (ref x) = ref x; |
| 5005 | 94 |
val prep_ext = mk_empty; |
95 |
val merge = mk_empty; |
|
96 |
||
| 13274 | 97 |
fun pretty sg (ref {space, thms_tab, index = _}) =
|
| 4853 | 98 |
let |
| 10008 | 99 |
val prt_thm = Display.pretty_thm_sg sg; |
| 4853 | 100 |
fun prt_thms (name, [th]) = |
101 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th] |
|
102 |
| prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths); |
|
| 3987 | 103 |
|
| 6846 | 104 |
val thmss = NameSpace.cond_extern_table space thms_tab; |
| 9215 | 105 |
in Pretty.big_list "theorems:" (map prt_thms thmss) end; |
| 8720 | 106 |
|
| 9215 | 107 |
fun print sg data = Pretty.writeln (pretty sg data); |
| 3987 | 108 |
end; |
109 |
||
| 5005 | 110 |
structure TheoremsData = TheoryDataFun(TheoremsDataArgs); |
111 |
val get_theorems_sg = TheoremsData.get_sg; |
|
112 |
val get_theorems = TheoremsData.get; |
|
113 |
||
| 6367 | 114 |
val cond_extern_thm_sg = NameSpace.cond_extern o #space o ! o get_theorems_sg; |
115 |
||
| 3987 | 116 |
|
| 5000 | 117 |
(* print theory *) |
| 3987 | 118 |
|
| 5005 | 119 |
val print_theorems = TheoremsData.print; |
| 8720 | 120 |
|
| 5000 | 121 |
fun print_theory thy = |
| 9215 | 122 |
Display.pretty_full_theory thy @ |
123 |
[TheoremsDataArgs.pretty (Theory.sign_of thy) (get_theorems thy)] |
|
| 8720 | 124 |
|> Pretty.chunks |> Pretty.writeln; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
125 |
|
| 3987 | 126 |
|
127 |
||
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
128 |
(** retrieve theorems **) |
| 3987 | 129 |
|
| 9564 | 130 |
(* selections *) |
131 |
||
132 |
fun the_thms _ (Some thms) = thms |
|
133 |
| the_thms name None = error ("Unknown theorem(s) " ^ quote name);
|
|
| 4037 | 134 |
|
| 9564 | 135 |
fun single_thm _ [thm] = thm |
136 |
| single_thm name _ = error ("Single theorem expected " ^ quote name);
|
|
137 |
||
138 |
||
| 9808 | 139 |
(* get_thm(s)_closure -- statically scoped versions *) |
| 9564 | 140 |
|
141 |
(*beware of proper order of evaluation!*) |
|
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
142 |
|
| 9564 | 143 |
fun lookup_thms thy = |
144 |
let |
|
145 |
val sg_ref = Sign.self_ref (Theory.sign_of thy); |
|
146 |
val ref {space, thms_tab, ...} = get_theorems thy;
|
|
147 |
in |
|
148 |
fn name => |
|
| 10667 | 149 |
apsome (map (Thm.transfer_sg (Sign.deref sg_ref))) (*semi-dynamic identity*) |
| 9564 | 150 |
(Symtab.lookup (thms_tab, NameSpace.intern space name)) (*static content*) |
151 |
end; |
|
| 3987 | 152 |
|
| 9564 | 153 |
fun get_thms_closure thy = |
154 |
let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) |
|
155 |
in fn name => the_thms name (get_first (fn f => f name) closures) end; |
|
156 |
||
| 9808 | 157 |
fun get_thm_closure thy = |
158 |
let val get = get_thms_closure thy |
|
159 |
in fn name => single_thm name (get name) end; |
|
160 |
||
| 9564 | 161 |
|
162 |
(* get_thm etc. *) |
|
163 |
||
164 |
fun get_thms theory name = |
|
165 |
get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory) |
|
166 |
|> the_thms name |> map (Thm.transfer theory); |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
167 |
|
| 6091 | 168 |
fun get_thmss thy names = flat (map (get_thms thy) names); |
| 9564 | 169 |
fun get_thm thy name = single_thm name (get_thms thy name); |
| 4783 | 170 |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
171 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
172 |
(* thms_of *) |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
173 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
174 |
fun thms_of thy = |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
175 |
let val ref {thms_tab, ...} = get_theorems thy in
|
| 13274 | 176 |
map (fn th => (Thm.name_of_thm th, th)) (flat (map snd (Symtab.dest thms_tab))) |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
177 |
end; |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
178 |
|
| 3987 | 179 |
|
| 13274 | 180 |
(* thms_containing *) |
| 3987 | 181 |
|
| 13274 | 182 |
fun thms_containing thy idx = |
183 |
let |
|
184 |
fun valid (name, ths) = |
|
185 |
(case try (transform_error (get_thms thy)) name of |
|
186 |
None => false |
|
187 |
| Some ths' => Library.equal_lists Thm.eq_thm (ths, ths')); |
|
188 |
in |
|
189 |
(thy :: Theory.ancestors_of thy) |
|
190 |
|> map (gen_distinct eq_fst o filter valid o FactIndex.find idx o #index o ! o get_theorems) |
|
191 |
|> flat |
|
192 |
end; |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
193 |
|
| 13646 | 194 |
fun thms_containing_consts thy consts = |
195 |
thms_containing thy (consts, []) |> map #2 |> flat |
|
196 |
|> map (fn th => (Thm.name_of_thm th, th)) |
|
197 |
||
198 |
(* intro/elim theorems *) |
|
199 |
||
200 |
(* intro: given a goal state, find a suitable intro rule for some subgoal *) |
|
201 |
(* elim: given a theorem thm, |
|
202 |
find a theorem whose major premise eliminates the conclusion of thm *) |
|
203 |
||
204 |
(*top_const: main constant, ignoring Trueprop *) |
|
205 |
fun top_const (_ $ t) = (case head_of t of Const (c, _) => Some c | _ => None) |
|
206 |
| top_const _ = None; |
|
207 |
||
208 |
val intro_const = top_const o concl_of; |
|
209 |
fun elim_const thm = case prems_of thm of [] => None | p::_ => top_const p; |
|
210 |
||
211 |
fun index_intros thy c = thms_containing_consts thy [c] |
|
212 |
|> filter (fn (_, thm) => intro_const thm = Some c); |
|
213 |
fun index_elims thy c = thms_containing_consts thy [c] |
|
214 |
|> filter (fn (_, thm) => elim_const thm = Some c); |
|
215 |
||
216 |
(*returns all those named_thms whose subterm extracted by extract can be |
|
217 |
instantiated to obj; the list is sorted according to the number of premises |
|
218 |
and the size of the required substitution.*) |
|
219 |
fun select_match(obj, signobj, named_thms, extract) = |
|
220 |
let val tsig = Sign.tsig_of signobj |
|
221 |
fun matches prop = |
|
222 |
case extract prop of |
|
223 |
None => false |
|
224 |
| Some pat => Pattern.matches tsig (pat, obj); |
|
225 |
||
226 |
fun substsize prop = |
|
227 |
let val Some pat = extract prop |
|
228 |
val (_,subst) = Pattern.match tsig (pat,obj) |
|
229 |
in foldl op+ (0, map (size_of_term o snd) subst) end |
|
230 |
||
231 |
fun thm_ord ((p0,s0,_),(p1,s1,_)) = |
|
232 |
prod_ord (int_ord o pairself (fn 0 => 0 | x => 1)) int_ord ((p0,s0),(p1,s1)); |
|
233 |
||
234 |
fun select((p as (_,thm))::named_thms, sels) = |
|
235 |
let val {prop, sign, ...} = rep_thm thm
|
|
236 |
in select(named_thms, |
|
237 |
if Sign.subsig(sign, signobj) andalso matches prop |
|
238 |
then (nprems_of thm,substsize prop,p)::sels |
|
239 |
else sels) |
|
240 |
end |
|
241 |
| select([],sels) = sels |
|
242 |
||
243 |
in map (fn (_,_,t) => t) (sort thm_ord (select(named_thms, []))) end; |
|
244 |
||
245 |
fun find_matching index extract thy prop = |
|
246 |
(case top_const prop of None => [] |
|
247 |
| Some c => select_match(prop,Theory.sign_of thy,index thy c,extract)) |
|
248 |
||
249 |
val find_intros = find_matching index_intros (Some o Logic.strip_imp_concl) |
|
250 |
||
251 |
val find_elims = find_matching index_elims |
|
252 |
(fn prop => case Logic.strip_imp_prems prop of [] => None | p::_ => Some p) |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
253 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
254 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
255 |
(** store theorems **) (*DESTRUCTIVE*) |
| 3987 | 256 |
|
| 12695 | 257 |
(* hiding -- affects current theory node only! *) |
258 |
||
| 13424 | 259 |
fun hide_thms fully names thy = |
| 12695 | 260 |
let |
| 13274 | 261 |
val r as ref {space, thms_tab, index} = get_theorems thy;
|
| 13424 | 262 |
val space' = NameSpace.hide fully (space, names); |
| 13274 | 263 |
in r := {space = space', thms_tab = thms_tab, index = index}; thy end;
|
| 12695 | 264 |
|
265 |
||
| 4853 | 266 |
(* naming *) |
267 |
||
| 11998 | 268 |
fun gen_names j len name = |
269 |
map (fn i => name ^ "_" ^ string_of_int i) (j+1 upto j+len); |
|
| 4853 | 270 |
|
| 11998 | 271 |
fun name_multi name xs = gen_names 0 (length xs) name ~~ xs; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
272 |
|
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
273 |
fun name_thm pre (p as (_, thm)) = |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
274 |
if Thm.name_of_thm thm <> "" andalso pre then thm else Thm.name_thm p; |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
275 |
|
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
276 |
fun name_thms pre name [x] = [name_thm pre (name, x)] |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
277 |
| name_thms pre name xs = map (name_thm pre) (name_multi name xs); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
278 |
|
|
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
279 |
fun name_thmss name xs = (case filter_out (null o fst) xs of |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
280 |
[([x], z)] => [([name_thm true (name, x)], z)] |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
281 |
| _ => snd (foldl_map (fn (i, (ys, z)) => (i + length ys, |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
282 |
(map (name_thm true) (gen_names i (length ys) name ~~ ys), z))) (0, xs))); |
| 4853 | 283 |
|
284 |
||
| 11998 | 285 |
(* enter_thms *) |
| 4853 | 286 |
|
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
287 |
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
|
288 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name);
|
| 3987 | 289 |
|
| 11998 | 290 |
fun enter_thms _ _ _ app_att thy ("", thms) = app_att (thy, thms)
|
291 |
| 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
|
292 |
let |
|
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
293 |
val name = Sign.full_name sg bname; |
| 11998 | 294 |
val (thy', thms') = app_att (thy, pre_name name thms); |
295 |
val named_thms = post_name name thms'; |
|
| 3987 | 296 |
|
| 13274 | 297 |
val r as ref {space, thms_tab, index} = get_theorems_sg sg;
|
|
13539
7d62554fa0e0
disallow duplicate fact bindings for drafts (i.e. within new-style theory files);
wenzelm
parents:
13424
diff
changeset
|
298 |
val _ = conditional (Sign.is_draft sg andalso is_some (Symtab.lookup (thms_tab, name))) |
|
7d62554fa0e0
disallow duplicate fact bindings for drafts (i.e. within new-style theory files);
wenzelm
parents:
13424
diff
changeset
|
299 |
(fn () => error ("Duplicate fact binding " ^ quote name));
|
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
300 |
val space' = NameSpace.extend (space, [name]); |
|
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
301 |
val thms_tab' = Symtab.update ((name, named_thms), thms_tab); |
| 13274 | 302 |
val index' = FactIndex.add (K false) (index, (name, named_thms)); |
303 |
in |
|
304 |
(case Symtab.lookup (thms_tab, name) of |
|
305 |
None => () |
|
306 |
| Some thms' => |
|
307 |
if Library.equal_lists Thm.eq_thm (thms', named_thms) then warn_same name |
|
308 |
else warn_overwrite name); |
|
309 |
r := {space = space', thms_tab = thms_tab', index = index'};
|
|
| 11998 | 310 |
(thy', named_thms) |
311 |
end; |
|
| 3987 | 312 |
|
| 4853 | 313 |
|
| 6091 | 314 |
(* add_thms(s) *) |
| 4853 | 315 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
316 |
fun add_thms_atts pre_name ((bname, thms), atts) thy = |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
317 |
enter_thms (Theory.sign_of thy) pre_name (name_thms false) |
| 11998 | 318 |
(Thm.applys_attributes o rpair atts) thy (bname, thms); |
| 4853 | 319 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
320 |
fun gen_add_thmss pre_name args theory = |
|
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
321 |
foldl_map (fn (thy, arg) => add_thms_atts pre_name arg thy) (theory, args); |
| 5907 | 322 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
323 |
fun gen_add_thms pre_name args = |
|
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
324 |
apsnd (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); |
|
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
325 |
|
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
326 |
val add_thmss = gen_add_thmss (name_thms true); |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
327 |
val add_thms = gen_add_thms (name_thms true); |
| 5907 | 328 |
|
329 |
||
| 12711 | 330 |
(* have_thmss(_i) *) |
| 5907 | 331 |
|
| 9192 | 332 |
local |
| 12711 | 333 |
|
334 |
fun gen_have_thss get kind_att (thy, ((bname, more_atts), ths_atts)) = |
|
335 |
let |
|
336 |
fun app (x, (ths, atts)) = Thm.applys_attributes ((x, ths), atts); |
|
337 |
val (thy', thms) = enter_thms (Theory.sign_of thy) |
|
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
338 |
name_thmss (name_thms false) (apsnd flat o foldl_map app) thy |
| 12711 | 339 |
(bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind_att])) ths_atts); |
340 |
in (thy', (bname, thms)) end; |
|
341 |
||
342 |
fun gen_have_thmss get kind_att args thy = |
|
343 |
foldl_map (gen_have_thss get kind_att) (thy, args); |
|
344 |
||
| 9192 | 345 |
in |
| 12711 | 346 |
|
347 |
val have_thmss = gen_have_thmss get_thms; |
|
348 |
val have_thmss_i = gen_have_thmss (K I); |
|
349 |
||
| 9192 | 350 |
end; |
| 5280 | 351 |
|
352 |
||
| 6091 | 353 |
(* store_thm *) |
| 5280 | 354 |
|
| 11998 | 355 |
fun store_thm ((bname, thm), atts) thy = |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
356 |
let val (thy', [th']) = add_thms_atts (name_thms true) ((bname, [thm]), atts) thy |
| 5280 | 357 |
in (thy', th') end; |
| 3987 | 358 |
|
359 |
||
| 7405 | 360 |
(* smart_store_thms *) |
| 3987 | 361 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
362 |
fun gen_smart_store_thms _ (name, []) = |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
363 |
error ("Cannot store empty list of theorems: " ^ quote name)
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
364 |
| gen_smart_store_thms name_thm (name, [thm]) = |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
365 |
snd (enter_thms (Thm.sign_of_thm thm) (name_thm true) (name_thm false) |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
366 |
I () (name, [thm])) |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
367 |
| gen_smart_store_thms name_thm (name, thms) = |
| 7405 | 368 |
let |
369 |
val merge_sg = Sign.merge_refs o apsnd (Sign.self_ref o Thm.sign_of_thm); |
|
370 |
val sg_ref = foldl merge_sg (Sign.self_ref (Thm.sign_of_thm (hd thms)), tl thms); |
|
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
371 |
in snd (enter_thms (Sign.deref sg_ref) (name_thm true) (name_thm false) |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
372 |
I () (name, thms)) |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
373 |
end; |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
374 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
375 |
val smart_store_thms = gen_smart_store_thms name_thms; |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
376 |
val smart_store_thms_open = gen_smart_store_thms (K (K I)); |
| 3987 | 377 |
|
378 |
||
| 7899 | 379 |
(* forall_elim_vars (belongs to drule.ML) *) |
380 |
||
381 |
(*Replace outermost quantified variable by Var of given index. |
|
382 |
Could clash with Vars already present.*) |
|
383 |
fun forall_elim_var i th = |
|
384 |
let val {prop,sign,...} = rep_thm th
|
|
385 |
in case prop of |
|
386 |
Const("all",_) $ Abs(a,T,_) =>
|
|
387 |
forall_elim (cterm_of sign (Var((a,i), T))) th |
|
388 |
| _ => raise THM("forall_elim_var", i, [th])
|
|
389 |
end; |
|
390 |
||
391 |
(*Repeat forall_elim_var until all outer quantifiers are removed*) |
|
392 |
fun forall_elim_vars i th = |
|
393 |
forall_elim_vars i (forall_elim_var i th) |
|
394 |
handle THM _ => th; |
|
395 |
||
396 |
||
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
397 |
(* store axioms as theorems *) |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
398 |
|
| 4853 | 399 |
local |
| 7899 | 400 |
fun get_axs thy named_axs = |
401 |
map (forall_elim_vars 0 o Thm.get_axiom thy o fst) named_axs; |
|
| 7753 | 402 |
|
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
403 |
fun add_single add (thy, ((name, ax), atts)) = |
| 4853 | 404 |
let |
| 11998 | 405 |
val named_ax = [(name, ax)]; |
| 7753 | 406 |
val thy' = add named_ax thy; |
407 |
val thm = hd (get_axs thy' named_ax); |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
408 |
in apsnd hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
| 7753 | 409 |
|
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
410 |
fun add_multi add (thy, ((name, axs), atts)) = |
| 7753 | 411 |
let |
412 |
val named_axs = name_multi name axs; |
|
| 4853 | 413 |
val thy' = add named_axs thy; |
| 7753 | 414 |
val thms = get_axs thy' named_axs; |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
415 |
in apsnd hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
416 |
|
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
417 |
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
|
418 |
fun add_multis add args thy = foldl_map (add_multi add) (thy, args); |
| 4853 | 419 |
in |
| 7753 | 420 |
val add_axioms = add_singles Theory.add_axioms; |
421 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
422 |
val add_axiomss = add_multis Theory.add_axioms; |
|
423 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
| 9318 | 424 |
val add_defs = add_singles o Theory.add_defs; |
425 |
val add_defs_i = add_singles o Theory.add_defs_i; |
|
426 |
val add_defss = add_multis o Theory.add_defs; |
|
427 |
val add_defss_i = add_multis o Theory.add_defs_i; |
|
| 4853 | 428 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
429 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
430 |
|
| 3987 | 431 |
|
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
432 |
(*** derived theory operations ***) |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
433 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
434 |
(** theory management **) |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
435 |
|
| 5005 | 436 |
(* data kind 'Pure/theory_management' *) |
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
437 |
|
| 5005 | 438 |
structure TheoryManagementDataArgs = |
439 |
struct |
|
440 |
val name = "Pure/theory_management"; |
|
| 6660 | 441 |
type T = {name: string, version: int};
|
| 5000 | 442 |
|
| 6660 | 443 |
val empty = {name = "", version = 0};
|
| 6547 | 444 |
val copy = I; |
| 5005 | 445 |
val prep_ext = I; |
| 5000 | 446 |
fun merge _ = empty; |
| 5005 | 447 |
fun print _ _ = (); |
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
448 |
end; |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
449 |
|
| 5005 | 450 |
structure TheoryManagementData = TheoryDataFun(TheoryManagementDataArgs); |
451 |
val get_info = TheoryManagementData.get; |
|
452 |
val put_info = TheoryManagementData.put; |
|
453 |
||
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
454 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
455 |
(* get / put name *) |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
456 |
|
| 5000 | 457 |
val get_name = #name o get_info; |
| 6660 | 458 |
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
|
459 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
460 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
461 |
(* control prefixing of theory name *) |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
462 |
|
| 5210 | 463 |
val global_path = Theory.root_path; |
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
464 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
465 |
fun local_path thy = |
| 5210 | 466 |
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
|
467 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
468 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
469 |
(* begin / end theory *) |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
470 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
471 |
fun begin_theory name thys = |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
472 |
Theory.prep_ext_merge thys |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
473 |
|> put_name name |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
474 |
|> local_path; |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
475 |
|
| 12123 | 476 |
fun end_theory thy = |
477 |
thy |
|
478 |
|> Theory.add_name (get_name thy); |
|
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
479 |
|
| 6682 | 480 |
fun checkpoint thy = |
481 |
if is_draft thy then |
|
482 |
let val {name, version} = get_info thy in
|
|
483 |
thy |
|
484 |
|> Theory.add_name (name ^ ":" ^ string_of_int version) |
|
485 |
|> put_info {name = name, version = version + 1}
|
|
486 |
end |
|
487 |
else thy; |
|
| 5000 | 488 |
|
489 |
||
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
490 |
|
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
491 |
(** add logical types **) |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
492 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
493 |
fun add_typedecls decls thy = |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
494 |
let |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
495 |
val full = Sign.full_name (Theory.sign_of thy); |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
496 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
497 |
fun type_of (raw_name, vs, mx) = |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
498 |
if null (duplicates vs) then (raw_name, length vs, mx) |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
499 |
else error ("Duplicate parameters in type declaration: " ^ quote raw_name);
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
500 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
501 |
fun arity_of (raw_name, len, mx) = |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
502 |
(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
|
503 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
504 |
val types = map type_of decls; |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
505 |
val arities = map arity_of types; |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
506 |
in |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
507 |
thy |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
508 |
|> Theory.add_types types |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
509 |
|> Theory.add_arities_i arities |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
510 |
end; |
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
511 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
512 |
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
513 |
|
| 5091 | 514 |
(*** the ProtoPure theory ***) |
| 3987 | 515 |
|
516 |
val proto_pure = |
|
517 |
Theory.pre_pure |
|
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
518 |
|> 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
|
519 |
|> put_name "ProtoPure" |
|
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
520 |
|> global_path |
| 3987 | 521 |
|> Theory.add_types |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
522 |
[("fun", 2, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
523 |
("prop", 0, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
524 |
("itself", 1, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
525 |
("dummy", 0, NoSyn)]
|
| 3987 | 526 |
|> Theory.add_classes_i [(logicC, [])] |
527 |
|> Theory.add_defsort_i logicS |
|
528 |
|> Theory.add_arities_i |
|
529 |
[("fun", [logicS, logicS], logicS),
|
|
530 |
("prop", [], logicS),
|
|
531 |
("itself", [logicS], logicS)]
|
|
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
532 |
|> Theory.add_nonterminals Syntax.pure_nonterms |
| 3987 | 533 |
|> Theory.add_syntax Syntax.pure_syntax |
| 6692 | 534 |
|> Theory.add_modesyntax (Symbol.xsymbolsN, true) Syntax.pure_xsym_syntax |
| 3987 | 535 |
|> Theory.add_syntax |
| 7949 | 536 |
[("==>", "[prop, prop] => prop", Delimfix "op ==>"),
|
| 9534 | 537 |
(Term.dummy_patternN, "aprop", Delimfix "'_")] |
| 3987 | 538 |
|> Theory.add_consts |
539 |
[("==", "['a::{}, 'a] => prop", InfixrName ("==", 2)),
|
|
540 |
("==>", "[prop, prop] => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
|
|
541 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
|
|
| 10667 | 542 |
("Goal", "prop => prop", NoSyn),
|
| 6547 | 543 |
("TYPE", "'a itself", NoSyn),
|
| 9534 | 544 |
(Term.dummy_patternN, "'a", Delimfix "'_")] |
|
5041
a1d0a6d555cd
Goals may now contain assumptions, which are not returned.
nipkow
parents:
5026
diff
changeset
|
545 |
|> Theory.add_modesyntax ("", false)
|
|
12138
7cad58fbc866
renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents:
12123
diff
changeset
|
546 |
(Syntax.pure_syntax_output @ Syntax.pure_appl_syntax) |
| 12250 | 547 |
|> Theory.add_trfuns Syntax.pure_trfuns |
548 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
|
4963
38aa2d56e28c
added get_name, put_name, global_path, local_path, begin_theory,
wenzelm
parents:
4933
diff
changeset
|
549 |
|> local_path |
| 10667 | 550 |
|> (#1 oo (add_defs_i false o map Thm.no_attributes)) |
551 |
[("Goal_def", let val A = Free ("A", propT) in Logic.mk_equals (Logic.mk_goal A, A) end)]
|
|
| 9238 | 552 |
|> (#1 o add_thmss [(("nothing", []), [])])
|
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
553 |
|> 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
|
554 |
|> end_theory; |
| 3987 | 555 |
|
| 5091 | 556 |
structure ProtoPure = |
557 |
struct |
|
558 |
val thy = proto_pure; |
|
559 |
val Goal_def = get_axiom thy "Goal_def"; |
|
560 |
end; |
|
| 3987 | 561 |
|
562 |
||
563 |
end; |
|
564 |
||
565 |
||
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
566 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
567 |
open BasicPureThy; |