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