author | wenzelm |
Wed, 29 Apr 1998 11:29:00 +0200 | |
changeset 4853 | 67bcbb03c235 |
parent 4792 | 8e3c2dddb9c8 |
child 4922 | 03b81b6e1baa |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
4783 | 5 |
The Pure theories. |
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 |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
10 |
val get_thm: theory -> xstring -> thm |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
11 |
val get_thms: theory -> xstring -> thm list |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
12 |
val thms_of: theory -> (string * thm) list |
4853 | 13 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
14 |
|
3987 | 15 |
signature PURE_THY = |
16 |
sig |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
17 |
include BASIC_PURE_THY |
4783 | 18 |
val get_tthm: theory -> xstring -> tthm |
19 |
val get_tthms: theory -> xstring -> tthm list |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
20 |
val thms_containing: theory -> string list -> (string * thm) list |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
21 |
val smart_store_thm: (bstring * thm) -> thm |
4853 | 22 |
val add_tthms: ((bstring * tthm) * theory attribute list) list -> theory -> theory |
23 |
val add_tthmss: ((bstring * tthm list) * theory attribute list) list -> theory -> theory |
|
24 |
val add_axioms: ((bstring * string) * theory attribute list) list -> theory -> theory |
|
25 |
val add_axioms_i: ((bstring * term) * theory attribute list) list -> theory -> theory |
|
26 |
val add_axiomss: ((bstring * string list) * theory attribute list) list -> theory -> theory |
|
27 |
val add_axiomss_i: ((bstring * term list) * theory attribute list) list -> theory -> theory |
|
28 |
val add_defs: ((bstring * string) * theory attribute list) list -> theory -> theory |
|
29 |
val add_defs_i: ((bstring * term) * theory attribute list) list -> theory -> theory |
|
30 |
val add_defss: ((bstring * string list) * theory attribute list) list -> theory -> theory |
|
31 |
val add_defss_i: ((bstring * term list) * theory attribute list) list -> theory -> theory |
|
3987 | 32 |
val proto_pure: theory |
33 |
val pure: theory |
|
34 |
val cpure: theory |
|
35 |
end; |
|
36 |
||
37 |
structure PureThy: PURE_THY = |
|
38 |
struct |
|
39 |
||
40 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
41 |
(*** init theorems data ***) |
3987 | 42 |
|
4783 | 43 |
(** data kind 'theorems' **) |
3987 | 44 |
|
4783 | 45 |
val theoremsK = "Pure/theorems"; |
3987 | 46 |
|
47 |
exception Theorems of |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
48 |
{space: NameSpace.T, |
4783 | 49 |
thms_tab: tthm list Symtab.table, |
50 |
const_idx: int * (int * tthm) list Symtab.table} ref; |
|
3987 | 51 |
|
52 |
||
53 |
(* methods *) |
|
54 |
||
55 |
local |
|
4853 | 56 |
fun mk_empty _ = |
57 |
Theorems (ref {space = NameSpace.empty, |
|
58 |
thms_tab = Symtab.empty, const_idx = (0, Symtab.empty)}); |
|
3987 | 59 |
|
4853 | 60 |
fun print sg (Theorems (ref {space, thms_tab, const_idx = _})) = |
61 |
let |
|
62 |
val prt_thm = Attribute.pretty_tthm o apfst (Thm.transfer_sg sg); |
|
63 |
fun prt_thms (name, [th]) = |
|
64 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th] |
|
65 |
| prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths); |
|
3987 | 66 |
|
4853 | 67 |
fun extrn name = |
68 |
if ! long_names then name else NameSpace.extern space name; |
|
69 |
val thmss = sort_wrt fst (map (apfst extrn) (Symtab.dest thms_tab)); |
|
70 |
in |
|
71 |
Pretty.writeln (Display.pretty_name_space ("theorem name space", space)); |
|
72 |
Pretty.writeln (Pretty.big_list "theorems:" (map prt_thms thmss)) |
|
73 |
end; |
|
3987 | 74 |
in |
4853 | 75 |
val theorems_setup = Theory.init_data [(theoremsK, (mk_empty (), mk_empty, mk_empty, print))]; |
3987 | 76 |
end; |
77 |
||
78 |
||
79 |
(* get data record *) |
|
80 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
81 |
fun get_theorems_sg sg = |
4049 | 82 |
(case Sign.get_data sg theoremsK of |
3987 | 83 |
Theorems r => r |
4792 | 84 |
| _ => type_error theoremsK); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
85 |
|
4783 | 86 |
val get_theorems = get_theorems_sg o Theory.sign_of; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
87 |
|
3987 | 88 |
|
89 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
90 |
(** retrieve theorems **) |
3987 | 91 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
92 |
fun local_thms thy name = |
3987 | 93 |
let |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
94 |
val ref {space, thms_tab, ...} = get_theorems thy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
95 |
val full_name = NameSpace.intern space name; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
96 |
in Symtab.lookup (thms_tab, full_name) end; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
97 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
98 |
fun all_local_thms [] _ = None |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
99 |
| all_local_thms (thy :: thys) name = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
100 |
(case local_thms thy name of |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
101 |
None => all_local_thms thys name |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
102 |
| some => some); |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
103 |
|
3987 | 104 |
|
4783 | 105 |
(* get_thms etc. *) |
4037 | 106 |
|
4783 | 107 |
fun get_tthms thy name = |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
108 |
(case all_local_thms (thy :: Theory.ancestors_of thy) name of |
4590 | 109 |
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
|
110 |
| Some thms => thms); |
3987 | 111 |
|
4783 | 112 |
fun get_tthm thy name = |
113 |
(case get_tthms thy name of |
|
3987 | 114 |
[thm] => thm |
4590 | 115 |
| _ => raise THEORY ("Single theorem expected " ^ quote name, [thy])); |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
116 |
|
4783 | 117 |
fun get_thms thy = map Attribute.thm_of o get_tthms thy; |
118 |
fun get_thm thy = Attribute.thm_of o get_tthm thy; |
|
119 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
120 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
121 |
(* thms_of *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
122 |
|
4783 | 123 |
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
|
124 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
125 |
fun thms_of thy = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
126 |
let val ref {thms_tab, ...} = get_theorems thy in |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
127 |
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
|
128 |
end; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
129 |
|
3987 | 130 |
|
131 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
132 |
(** theorems indexed by constants **) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
133 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
134 |
(* make index *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
135 |
|
4037 | 136 |
val ignore = ["Trueprop", "all", "==>", "=="]; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
137 |
|
4783 | 138 |
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
|
139 |
let |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
140 |
val {hyps, prop, ...} = Thm.rep_thm thm; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
141 |
val consts = |
4037 | 142 |
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
|
143 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
144 |
fun add (tab, c) = |
4783 | 145 |
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
|
146 |
in (next + 1, foldl add (table, consts)) end; |
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 make_const_idx thm_tab = |
4487 | 149 |
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
|
150 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
151 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
152 |
(* lookup index *) |
3987 | 153 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
154 |
(*search locally*) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
155 |
fun containing [] thy = thms_of thy |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
156 |
| containing consts thy = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
157 |
let |
4037 | 158 |
fun int ([], _) = [] |
159 |
| int (_, []) = [] |
|
160 |
| int (xxs as ((x as (i:int, _)) :: xs), yys as ((y as (j, _)) :: ys)) = |
|
161 |
if i = j then x :: int (xs, ys) |
|
162 |
else if i > j then int (xs, yys) |
|
163 |
else int (xxs, ys); |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
164 |
|
4037 | 165 |
fun ints [xs] = xs |
166 |
| 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
|
167 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
168 |
val ref {const_idx = (_, ctab), ...} = get_theorems thy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
169 |
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
|
170 |
in |
4037 | 171 |
map (attach_name o snd) (ints ithmss) |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
172 |
end; |
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 |
(*search globally*) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
175 |
fun thms_containing thy consts = |
4037 | 176 |
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
|
177 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
178 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
179 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
180 |
(** store theorems **) (*DESTRUCTIVE*) |
3987 | 181 |
|
4853 | 182 |
(* naming *) |
183 |
||
184 |
fun gen_names len name = |
|
185 |
map (fn i => name ^ "_" ^ string_of_int i) (1 upto len); |
|
186 |
||
187 |
fun name_single name x = [(name, x)]; |
|
188 |
fun name_multi name xs = gen_names (length xs) name ~~ xs; |
|
189 |
||
190 |
||
191 |
(* enter_tthmx *) |
|
192 |
||
3987 | 193 |
fun warn_overwrite name = |
194 |
warning ("Replaced old copy of theorems " ^ quote name); |
|
195 |
||
196 |
fun warn_same name = |
|
4853 | 197 |
warning ("Theorem database already contains a copy of " ^ quote name); |
3987 | 198 |
|
4853 | 199 |
fun enter_tthmx sg app_name (bname, tthmx) = |
3987 | 200 |
let |
4853 | 201 |
val name = Sign.full_name sg bname; |
202 |
fun name_tthm (nm, (thm, tgs)) = (Thm.name_thm (nm, thm), tgs); |
|
203 |
val named_tthms = map name_tthm (app_name name tthmx); |
|
3987 | 204 |
|
4783 | 205 |
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
|
206 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
207 |
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
|
208 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
209 |
val overwrite = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
210 |
(case Symtab.lookup (thms_tab, name) of |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
211 |
None => false |
4783 | 212 |
| Some tthms' => |
4853 | 213 |
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
|
214 |
(warn_same name; false) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
215 |
else (warn_overwrite name; true)); |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
216 |
|
4487 | 217 |
val space' = NameSpace.extend (space, [name]); |
4783 | 218 |
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
|
219 |
val const_idx' = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
220 |
if overwrite then make_const_idx thms_tab' |
4783 | 221 |
else foldl add_const_idx (const_idx, named_tthms); |
3987 | 222 |
in |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
223 |
r := {space = space', thms_tab = thms_tab', const_idx = const_idx'}; |
4783 | 224 |
named_tthms |
3987 | 225 |
end; |
226 |
||
4853 | 227 |
|
228 |
(* add_tthms(s) *) |
|
229 |
||
230 |
fun add_tthmx app_name app_att ((bname, tthmx), atts) thy = |
|
231 |
let val (thy', tthmx') = app_att ((thy, tthmx), atts) |
|
232 |
in enter_tthmx (Theory.sign_of thy') app_name (bname, tthmx'); thy' end; |
|
233 |
||
234 |
val add_tthms = Theory.apply o map (add_tthmx name_single Attribute.apply); |
|
235 |
val add_tthmss = Theory.apply o map (add_tthmx name_multi Attribute.applys); |
|
3987 | 236 |
|
237 |
||
4853 | 238 |
(* smart_store_thm *) |
3987 | 239 |
|
4012 | 240 |
fun smart_store_thm (name, thm) = |
4853 | 241 |
let val [(thm', _)] = enter_tthmx (Thm.sign_of_thm thm) name_single (name, Attribute.tthm_of thm) |
4783 | 242 |
in thm' end; |
3987 | 243 |
|
244 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
245 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
246 |
|
4853 | 247 |
local |
248 |
fun add_ax app_name add ((name, axs), atts) thy = |
|
249 |
let |
|
250 |
val named_axs = app_name name axs; |
|
251 |
val thy' = add named_axs thy; |
|
252 |
val tthms = map (Attribute.tthm_of o Thm.get_axiom thy' o fst) named_axs; |
|
253 |
in add_tthmss [((name, tthms), atts)] thy' end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
254 |
|
4853 | 255 |
fun add_axs app_name add = Theory.apply o map (add_ax app_name add); |
256 |
in |
|
257 |
val add_axioms = add_axs name_single Theory.add_axioms; |
|
258 |
val add_axioms_i = add_axs name_single Theory.add_axioms_i; |
|
259 |
val add_axiomss = add_axs name_multi Theory.add_axioms; |
|
260 |
val add_axiomss_i = add_axs name_multi Theory.add_axioms_i; |
|
261 |
val add_defs = add_axs name_single Theory.add_defs; |
|
262 |
val add_defs_i = add_axs name_single Theory.add_defs_i; |
|
263 |
val add_defss = add_axs name_multi Theory.add_defs; |
|
264 |
val add_defss_i = add_axs name_multi Theory.add_defs_i; |
|
265 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
266 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
267 |
|
3987 | 268 |
|
269 |
(** the Pure theories **) |
|
270 |
||
271 |
val proto_pure = |
|
272 |
Theory.pre_pure |
|
4853 | 273 |
|> Theory.apply [Attribute.setup, theorems_setup] |
3987 | 274 |
|> Theory.add_types |
275 |
(("fun", 2, NoSyn) :: |
|
276 |
("prop", 0, NoSyn) :: |
|
277 |
("itself", 1, NoSyn) :: |
|
278 |
Syntax.pure_types) |
|
279 |
|> Theory.add_classes_i [(logicC, [])] |
|
280 |
|> Theory.add_defsort_i logicS |
|
281 |
|> Theory.add_arities_i |
|
282 |
[("fun", [logicS, logicS], logicS), |
|
283 |
("prop", [], logicS), |
|
284 |
("itself", [logicS], logicS)] |
|
285 |
|> Theory.add_syntax Syntax.pure_syntax |
|
286 |
|> Theory.add_modesyntax ("symbols", true) Syntax.pure_sym_syntax |
|
287 |
|> Theory.add_trfuns Syntax.pure_trfuns |
|
288 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
289 |
|> Theory.add_syntax |
|
290 |
[("==>", "[prop, prop] => prop", Delimfix "op ==>")] |
|
291 |
|> Theory.add_consts |
|
292 |
[("==", "['a::{}, 'a] => prop", InfixrName ("==", 2)), |
|
293 |
("=?=", "['a::{}, 'a] => prop", InfixrName ("=?=", 2)), |
|
294 |
("==>", "[prop, prop] => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
295 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)), |
|
4788 | 296 |
("Goal", "prop => prop", Mixfix ("GOAL _", [999], 1000)), |
3987 | 297 |
("TYPE", "'a itself", NoSyn)] |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
298 |
|> Theory.add_path "ProtoPure" |
4853 | 299 |
|> (add_defs o map Attribute.none) |
4788 | 300 |
[("flexpair_def", "(t =?= u) == (t == u::'a::{})"), |
301 |
("Goal_def", "GOAL (PROP A) == PROP A")] |
|
3987 | 302 |
|> Theory.add_name "ProtoPure"; |
303 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
304 |
val pure = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
305 |
Theory.prep_ext_merge [proto_pure] |
3987 | 306 |
|> Theory.add_syntax Syntax.pure_appl_syntax |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
307 |
|> Theory.add_path "Pure" |
3987 | 308 |
|> Theory.add_name "Pure"; |
309 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
310 |
val cpure = |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
311 |
Theory.prep_ext_merge [proto_pure] |
3987 | 312 |
|> Theory.add_syntax Syntax.pure_applC_syntax |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
313 |
|> Theory.add_path "CPure" |
3987 | 314 |
|> Theory.add_name "CPure"; |
315 |
||
316 |
||
317 |
end; |
|
318 |
||
319 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
320 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
321 |
open BasicPureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
322 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
323 |
|
3987 | 324 |
|
325 |
(** theory structures **) |
|
326 |
||
327 |
structure ProtoPure = |
|
328 |
struct |
|
329 |
val thy = PureThy.proto_pure; |
|
330 |
val flexpair_def = get_axiom thy "flexpair_def"; |
|
4788 | 331 |
val Goal_def = get_axiom thy "Goal_def"; |
3987 | 332 |
end; |
333 |
||
334 |
structure Pure = struct val thy = PureThy.pure end; |
|
335 |
structure CPure = struct val thy = PureThy.cpure end; |