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