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