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