author | wenzelm |
Fri, 21 Oct 2005 18:14:50 +0200 | |
changeset 17970 | a84ac7c201ea |
parent 17930 | e7160d70be1f |
child 18031 | b17e25a7d820 |
permissions | -rw-r--r-- |
3987 | 1 |
(* Title: Pure/pure_thy.ML |
2 |
ID: $Id$ |
|
3 |
Author: Markus Wenzel, TU Muenchen |
|
4 |
||
16441 | 5 |
Theorem storage. 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 |
16493 | 10 |
datatype interval = FromTo of int * int | From of int | Single of int |
11 |
datatype thmref = Name of string | NameSelection of string * interval list |
|
5000 | 12 |
val print_theorems: theory -> unit |
13 |
val print_theory: theory -> unit |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
14 |
val get_thm: theory -> thmref -> thm |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
15 |
val get_thms: theory -> thmref -> thm list |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
16 |
val get_thmss: theory -> thmref list -> thm list |
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
17 |
val thm: xstring -> thm |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
18 |
val thms: xstring -> thm list |
5091 | 19 |
structure ProtoPure: |
20 |
sig |
|
21 |
val thy: theory |
|
22 |
val Goal_def: thm |
|
23 |
end |
|
4853 | 24 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
25 |
|
3987 | 26 |
signature PURE_THY = |
27 |
sig |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
28 |
include BASIC_PURE_THY |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
29 |
val string_of_thmref: thmref -> string |
16493 | 30 |
val print_theorems_diff: theory -> theory -> unit |
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
31 |
val get_thm_closure: theory -> thmref -> thm |
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
32 |
val get_thms_closure: theory -> thmref -> thm list |
9564 | 33 |
val single_thm: string -> thm list -> thm |
16493 | 34 |
val name_of_thmref: thmref -> string |
35 |
val map_name_of_thmref: (string -> string) -> thmref -> thmref |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
36 |
val select_thm: thmref -> thm list -> thm list |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
37 |
val selections: string * thm list -> (thmref * thm) list |
17162 | 38 |
val theorems_of: theory -> thm list NameSpace.table |
39 |
val theorem_space: theory -> NameSpace.T |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
40 |
val fact_index_of: theory -> FactIndex.T |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
41 |
val valid_thms: theory -> thmref * thm list -> bool |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
42 |
val thms_containing: theory -> FactIndex.spec -> (string * thm list) list |
13646 | 43 |
val thms_containing_consts: theory -> string list -> (string * thm) list |
16336 | 44 |
val thms_of: theory -> (string * thm) list |
45 |
val all_thms_of: theory -> (string * thm) list |
|
12695 | 46 |
val hide_thms: bool -> string list -> theory -> theory |
6091 | 47 |
val store_thm: (bstring * thm) * theory attribute list -> theory -> theory * thm |
7405 | 48 |
val smart_store_thms: (bstring * thm list) -> thm list |
12138
7cad58fbc866
renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents:
12123
diff
changeset
|
49 |
val smart_store_thms_open: (bstring * thm list) -> thm list |
7899 | 50 |
val forall_elim_var: int -> thm -> thm |
51 |
val forall_elim_vars: int -> thm -> thm |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
52 |
val add_thms: ((bstring * thm) * theory attribute list) list -> theory -> theory * thm list |
12711 | 53 |
val add_thmss: ((bstring * thm list) * theory attribute list) list -> theory |
54 |
-> theory * thm list list |
|
16132 | 55 |
val note_thmss: theory attribute -> ((bstring * theory attribute list) * |
16441 | 56 |
(thmref * theory attribute list) list) list -> |
57 |
theory -> theory * (bstring * thm list) list |
|
16132 | 58 |
val note_thmss_i: theory attribute -> ((bstring * theory attribute list) * |
16441 | 59 |
(thm list * theory attribute list) list) list -> |
60 |
theory -> theory * (bstring * thm list) list |
|
61 |
val add_axioms: ((bstring * string) * theory attribute list) list -> |
|
62 |
theory -> theory * thm list |
|
63 |
val add_axioms_i: ((bstring * term) * theory attribute list) list -> |
|
64 |
theory -> theory * thm list |
|
65 |
val add_axiomss: ((bstring * string list) * theory attribute list) list -> |
|
66 |
theory -> theory * thm list list |
|
67 |
val add_axiomss_i: ((bstring * term list) * theory attribute list) list -> |
|
68 |
theory -> theory * thm list list |
|
69 |
val add_defs: bool -> ((bstring * string) * theory attribute list) list -> |
|
70 |
theory -> theory * thm list |
|
71 |
val add_defs_i: bool -> ((bstring * term) * theory attribute list) list -> |
|
72 |
theory -> theory * thm list |
|
73 |
val add_defss: bool -> ((bstring * string list) * theory attribute list) list -> |
|
74 |
theory -> theory * thm list list |
|
75 |
val add_defss_i: bool -> ((bstring * term list) * theory attribute list) list -> |
|
76 |
theory -> theory * thm list list |
|
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
77 |
val generic_setup: string -> theory -> theory |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
78 |
val add_oracle: bstring * string * string -> theory -> theory |
3987 | 79 |
end; |
80 |
||
81 |
structure PureThy: PURE_THY = |
|
82 |
struct |
|
83 |
||
84 |
||
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
85 |
(*** theorem database ***) |
3987 | 86 |
|
16441 | 87 |
(** dataype theorems **) |
3987 | 88 |
|
16493 | 89 |
fun pretty_theorems_diff thy prev_thms (space, thms) = |
16441 | 90 |
let |
91 |
val prt_thm = Display.pretty_thm_sg thy; |
|
92 |
fun prt_thms (name, [th]) = |
|
93 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th] |
|
94 |
| prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths); |
|
16493 | 95 |
|
96 |
val diff_thmss = Symtab.fold (fn fact => |
|
97 |
if not (Symtab.member eq_thms prev_thms fact) then cons fact else I) thms []; |
|
98 |
val thmss = diff_thmss |> map (apfst (NameSpace.extern space)) |> Library.sort_wrt #1; |
|
16441 | 99 |
in Pretty.big_list "theorems:" (map prt_thms thmss) end; |
100 |
||
16493 | 101 |
fun pretty_theorems thy = pretty_theorems_diff thy Symtab.empty; |
102 |
||
16441 | 103 |
structure TheoremsData = TheoryDataFun |
104 |
(struct |
|
5005 | 105 |
val name = "Pure/theorems"; |
106 |
type T = |
|
16441 | 107 |
{theorems: thm list NameSpace.table, |
108 |
index: FactIndex.T} ref; |
|
3987 | 109 |
|
4853 | 110 |
fun mk_empty _ = |
16336 | 111 |
ref {theorems = NameSpace.empty_table, index = FactIndex.empty}: T; |
3987 | 112 |
|
5005 | 113 |
val empty = mk_empty (); |
6547 | 114 |
fun copy (ref x) = ref x; |
16441 | 115 |
val extend = mk_empty; |
116 |
fun merge _ = mk_empty; |
|
117 |
fun print thy (ref {theorems, index}) = Pretty.writeln (pretty_theorems thy theorems); |
|
118 |
end); |
|
3987 | 119 |
|
16493 | 120 |
val get_theorems_ref = TheoremsData.get; |
121 |
val get_theorems = ! o get_theorems_ref; |
|
17162 | 122 |
val theorems_of = #theorems o get_theorems; |
123 |
val theorem_space = #1 o theorems_of; |
|
16493 | 124 |
val fact_index_of = #index o get_theorems; |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
125 |
|
6367 | 126 |
|
5000 | 127 |
(* print theory *) |
3987 | 128 |
|
5005 | 129 |
val print_theorems = TheoremsData.print; |
8720 | 130 |
|
16493 | 131 |
fun print_theorems_diff prev_thy thy = |
132 |
Pretty.writeln (pretty_theorems_diff thy |
|
17162 | 133 |
(#2 (theorems_of prev_thy)) (#theorems (get_theorems thy))); |
16493 | 134 |
|
5000 | 135 |
fun print_theory thy = |
9215 | 136 |
Display.pretty_full_theory thy @ |
16493 | 137 |
[pretty_theorems thy (#theorems (get_theorems thy))] |
8720 | 138 |
|> Pretty.chunks |> Pretty.writeln; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
139 |
|
3987 | 140 |
|
141 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
142 |
(** retrieve theorems **) |
3987 | 143 |
|
15531 | 144 |
fun the_thms _ (SOME thms) = thms |
145 |
| the_thms name NONE = error ("Unknown theorem(s) " ^ quote name); |
|
4037 | 146 |
|
9564 | 147 |
fun single_thm _ [thm] = thm |
148 |
| single_thm name _ = error ("Single theorem expected " ^ quote name); |
|
149 |
||
15703 | 150 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
151 |
(* datatype interval *) |
15703 | 152 |
|
153 |
datatype interval = |
|
154 |
FromTo of int * int | |
|
155 |
From of int | |
|
156 |
Single of int; |
|
157 |
||
158 |
fun interval _ (FromTo (i, j)) = i upto j |
|
159 |
| interval n (From i) = i upto n |
|
160 |
| interval _ (Single i) = [i]; |
|
161 |
||
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
162 |
fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
163 |
| string_of_interval (From i) = string_of_int i ^ "-" |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
164 |
| string_of_interval (Single i) = string_of_int i; |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
165 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
166 |
|
16493 | 167 |
(* datatype thmref *) |
168 |
||
169 |
datatype thmref = |
|
170 |
Name of string | |
|
171 |
NameSelection of string * interval list; |
|
15703 | 172 |
|
16493 | 173 |
fun name_of_thmref (Name name) = name |
174 |
| name_of_thmref (NameSelection (name, _)) = name; |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
175 |
|
16493 | 176 |
fun map_name_of_thmref f (Name name) = Name (f name) |
177 |
| map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is); |
|
178 |
||
179 |
fun string_of_thmref (Name name) = name |
|
180 |
| string_of_thmref (NameSelection (name, is)) = |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
181 |
name ^ enclose "(" ")" (commas (map string_of_interval is)); |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
182 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
183 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
184 |
(* select_thm *) |
15703 | 185 |
|
16493 | 186 |
fun select_thm (Name _) thms = thms |
187 |
| select_thm (NameSelection (name, is)) thms = |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
188 |
let |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
189 |
val n = length thms; |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
190 |
fun select i = |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
191 |
if i < 1 orelse i > n then |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
192 |
error ("Bad subscript " ^ string_of_int i ^ " for " ^ |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
193 |
quote name ^ " (length " ^ string_of_int n ^ ")") |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
194 |
else List.nth (thms, i - 1); |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
195 |
in map select (List.concat (map (interval n) is)) end; |
15703 | 196 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
197 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
198 |
(* selections *) |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
199 |
|
16493 | 200 |
fun selections (name, [thm]) = [(Name name, thm)] |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
201 |
| selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) => |
16493 | 202 |
(NameSelection (name, [Single i]), thm)); |
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
203 |
|
9564 | 204 |
|
9808 | 205 |
(* get_thm(s)_closure -- statically scoped versions *) |
9564 | 206 |
|
207 |
(*beware of proper order of evaluation!*) |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
208 |
|
9564 | 209 |
fun lookup_thms thy = |
210 |
let |
|
16441 | 211 |
val thy_ref = Theory.self_ref thy; |
16493 | 212 |
val (space, thms) = #theorems (get_theorems thy); |
9564 | 213 |
in |
214 |
fn name => |
|
17221 | 215 |
Option.map (map (Thm.transfer (Theory.deref thy_ref))) (*dynamic identity*) |
17418 | 216 |
(Symtab.lookup thms (NameSpace.intern space name)) (*static content*) |
9564 | 217 |
end; |
3987 | 218 |
|
9564 | 219 |
fun get_thms_closure thy = |
16441 | 220 |
let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) in |
16493 | 221 |
fn thmref => |
222 |
let val name = name_of_thmref thmref |
|
223 |
in select_thm thmref (the_thms name (get_first (fn f => f name) closures)) end |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
224 |
end; |
9564 | 225 |
|
9808 | 226 |
fun get_thm_closure thy = |
227 |
let val get = get_thms_closure thy |
|
16493 | 228 |
in fn thmref => single_thm (name_of_thmref thmref) (get thmref) end; |
9808 | 229 |
|
9564 | 230 |
|
16441 | 231 |
(* get_thms etc. *) |
9564 | 232 |
|
16493 | 233 |
fun get_thms theory thmref = |
234 |
let val name = name_of_thmref thmref in |
|
235 |
get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory) |
|
236 |
|> the_thms name |> select_thm thmref |> map (Thm.transfer theory) |
|
237 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
238 |
|
16493 | 239 |
fun get_thmss thy thmrefs = List.concat (map (get_thms thy) thmrefs); |
240 |
fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref); |
|
4783 | 241 |
|
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
242 |
fun thm name = get_thm (the_context ()) (Name name); |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
243 |
fun thms name = get_thms (the_context ()) (Name name); |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
244 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
245 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
246 |
(* thms_containing etc. *) |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
247 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
248 |
fun valid_thms thy (thmref, ths) = |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
249 |
(case try (transform_error (get_thms thy)) thmref of |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
250 |
NONE => false |
16132 | 251 |
| SOME ths' => Thm.eq_thms (ths, ths')); |
3987 | 252 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
253 |
fun thms_containing theory spec = |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
254 |
(theory :: Theory.ancestors_of theory) |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
255 |
|> map (fn thy => |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
256 |
FactIndex.find (fact_index_of thy) spec |
16493 | 257 |
|> List.filter (fn (name, ths) => valid_thms theory (Name name, ths)) |
17496 | 258 |
|> gen_distinct (eq_fst (op =))) |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
259 |
|> List.concat; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
260 |
|
13646 | 261 |
fun thms_containing_consts thy consts = |
15570 | 262 |
thms_containing thy (consts, []) |> map #2 |> List.concat |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
263 |
|> map (fn th => (Thm.name_of_thm th, th)); |
13646 | 264 |
|
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
265 |
|
16336 | 266 |
(* thms_of etc. *) |
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
267 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
268 |
fun thms_of thy = |
17162 | 269 |
let val thms = #2 (theorems_of thy) |
270 |
in map (fn th => (Thm.name_of_thm th, th)) (List.concat (map snd (Symtab.dest thms))) end; |
|
15703 | 271 |
|
16336 | 272 |
fun all_thms_of thy = List.concat (map thms_of (thy :: Theory.ancestors_of thy)); |
273 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
274 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
275 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
276 |
(** store theorems **) (*DESTRUCTIVE*) |
3987 | 277 |
|
16441 | 278 |
(* hiding -- affects current theory node only *) |
12695 | 279 |
|
13424 | 280 |
fun hide_thms fully names thy = |
12695 | 281 |
let |
16493 | 282 |
val r as ref {theorems = (space, thms), index} = get_theorems_ref thy; |
16132 | 283 |
val space' = fold (NameSpace.hide fully) names space; |
16336 | 284 |
in r := {theorems = (space', thms), index = index}; thy end; |
12695 | 285 |
|
286 |
||
4853 | 287 |
(* naming *) |
288 |
||
11998 | 289 |
fun gen_names j len name = |
16441 | 290 |
map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len); |
4853 | 291 |
|
11998 | 292 |
fun name_multi name xs = gen_names 0 (length xs) name ~~ xs; |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
293 |
|
16441 | 294 |
fun name_thm pre (name, thm) = |
295 |
if Thm.name_of_thm thm <> "" andalso pre then thm else Thm.name_thm (name, thm); |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
296 |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
297 |
fun name_thms pre name [x] = [name_thm pre (name, x)] |
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
298 |
| name_thms pre name xs = map (name_thm pre) (name_multi name xs); |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
299 |
|
16441 | 300 |
fun name_thmss name xs = |
301 |
(case filter_out (null o fst) xs of |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
302 |
[([x], z)] => [([name_thm true (name, x)], z)] |
16441 | 303 |
| _ => snd (foldl_map (fn (i, (ys, z)) => |
304 |
(i + length ys, (map (name_thm true) (gen_names i (length ys) name ~~ ys), z))) (0, xs))); |
|
4853 | 305 |
|
306 |
||
11998 | 307 |
(* enter_thms *) |
4853 | 308 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
309 |
fun warn_overwrite name = warning ("Replaced old copy of theorems " ^ quote name); |
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
310 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name); |
3987 | 311 |
|
16441 | 312 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |
313 |
| enter_thms pre_name post_name app_att (bname, thms) thy = |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
314 |
let |
16441 | 315 |
val name = Sign.full_name thy bname; |
316 |
val (thy', thms') = apsnd (post_name name) (app_att (thy, pre_name name thms)); |
|
16513
f38693aad717
enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents:
16493
diff
changeset
|
317 |
val r as ref {theorems = (space, theorems), index} = get_theorems_ref thy'; |
f38693aad717
enter_thms: use theorem database of thy *after* attribute application;
wenzelm
parents:
16493
diff
changeset
|
318 |
val space' = Sign.declare_name thy' name space; |
17418 | 319 |
val theorems' = Symtab.update (name, thms') theorems; |
16441 | 320 |
val index' = FactIndex.add (K false) (name, thms') index; |
13274 | 321 |
in |
17418 | 322 |
(case Symtab.lookup theorems name of |
15531 | 323 |
NONE => () |
16441 | 324 |
| SOME thms'' => |
325 |
if Thm.eq_thms (thms', thms'') then warn_same name |
|
13274 | 326 |
else warn_overwrite name); |
16336 | 327 |
r := {theorems = (space', theorems'), index = index'}; |
16441 | 328 |
(thy', thms') |
11998 | 329 |
end; |
3987 | 330 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
331 |
|
6091 | 332 |
(* add_thms(s) *) |
4853 | 333 |
|
16441 | 334 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
335 |
enter_thms pre_name (name_thms false) |
|
336 |
(Thm.applys_attributes o rpair atts) (bname, thms); |
|
4853 | 337 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
338 |
fun gen_add_thmss pre_name args theory = |
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
339 |
foldl_map (fn (thy, arg) => add_thms_atts pre_name arg thy) (theory, args); |
5907 | 340 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
341 |
fun gen_add_thms pre_name args = |
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
342 |
apsnd (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); |
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
343 |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
344 |
val add_thmss = gen_add_thmss (name_thms true); |
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
345 |
val add_thms = gen_add_thms (name_thms true); |
5907 | 346 |
|
347 |
||
14564 | 348 |
(* note_thmss(_i) *) |
5907 | 349 |
|
9192 | 350 |
local |
12711 | 351 |
|
16132 | 352 |
fun gen_note_thss get kind_att (thy, ((bname, more_atts), ths_atts)) = |
12711 | 353 |
let |
354 |
fun app (x, (ths, atts)) = Thm.applys_attributes ((x, ths), atts); |
|
16441 | 355 |
val (thy', thms) = thy |> enter_thms |
356 |
name_thmss (name_thms false) (apsnd List.concat o foldl_map app) |
|
12711 | 357 |
(bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind_att])) ths_atts); |
358 |
in (thy', (bname, thms)) end; |
|
359 |
||
16132 | 360 |
fun gen_note_thmss get kind_att args thy = |
361 |
foldl_map (gen_note_thss get kind_att) (thy, args); |
|
12711 | 362 |
|
9192 | 363 |
in |
12711 | 364 |
|
16132 | 365 |
val note_thmss = gen_note_thmss get_thms; |
366 |
val note_thmss_i = gen_note_thmss (K I); |
|
12711 | 367 |
|
9192 | 368 |
end; |
5280 | 369 |
|
370 |
||
6091 | 371 |
(* store_thm *) |
5280 | 372 |
|
11998 | 373 |
fun store_thm ((bname, thm), atts) thy = |
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
374 |
let val (thy', [th']) = add_thms_atts (name_thms true) ((bname, [thm]), atts) thy |
5280 | 375 |
in (thy', th') end; |
3987 | 376 |
|
377 |
||
16441 | 378 |
(* smart_store_thms(_open) *) |
3987 | 379 |
|
16441 | 380 |
local |
381 |
||
382 |
fun smart_store _ (name, []) = |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
383 |
error ("Cannot store empty list of theorems: " ^ quote name) |
16441 | 384 |
| smart_store name_thm (name, [thm]) = |
385 |
#2 (enter_thms (name_thm true) (name_thm false) I (name, [thm]) (Thm.theory_of_thm thm)) |
|
386 |
| smart_store name_thm (name, thms) = |
|
7405 | 387 |
let |
16441 | 388 |
fun merge (thy, th) = Theory.merge (thy, Thm.theory_of_thm th); |
389 |
val thy = Library.foldl merge (Thm.theory_of_thm (hd thms), tl thms); |
|
390 |
in #2 (enter_thms (name_thm true) (name_thm false) I (name, thms) thy) end; |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
391 |
|
16441 | 392 |
in |
393 |
||
394 |
val smart_store_thms = smart_store name_thms; |
|
395 |
val smart_store_thms_open = smart_store (K (K I)); |
|
396 |
||
397 |
end; |
|
3987 | 398 |
|
399 |
||
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
400 |
(* forall_elim_var(s) -- belongs to drule.ML *) |
7899 | 401 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
402 |
fun forall_elim_vars_aux strip_vars i th = |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
403 |
let |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
404 |
val {thy, tpairs, prop, ...} = Thm.rep_thm th; |
16787 | 405 |
val add_used = Term.fold_aterms |
406 |
(fn Var ((x, j), _) => if i = j then curry (op ins_string) x else I | _ => I); |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
407 |
val used = fold (fn (t, u) => add_used t o add_used u) tpairs (add_used prop []); |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
408 |
val vars = strip_vars prop; |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
409 |
val cvars = (Term.variantlist (map #1 vars, used), vars) |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
410 |
|> ListPair.map (fn (x, (_, T)) => Thm.cterm_of thy (Var ((x, i), T))); |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
411 |
in fold Thm.forall_elim cvars th end; |
7899 | 412 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
413 |
val forall_elim_vars = forall_elim_vars_aux Term.strip_all_vars; |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
414 |
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
415 |
fun forall_elim_var i th = forall_elim_vars_aux |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
416 |
(fn Const ("all", _) $ Abs (a, T, _) => [(a, T)] |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
417 |
| _ => raise THM ("forall_elim_vars", i, [th])) i th; |
7899 | 418 |
|
419 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
420 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
421 |
|
4853 | 422 |
local |
17418 | 423 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
424 |
fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs; |
|
7753 | 425 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
426 |
fun add_single add (thy, ((name, ax), atts)) = |
4853 | 427 |
let |
11998 | 428 |
val named_ax = [(name, ax)]; |
7753 | 429 |
val thy' = add named_ax thy; |
430 |
val thm = hd (get_axs thy' named_ax); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
431 |
in apsnd hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
7753 | 432 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
433 |
fun add_multi add (thy, ((name, axs), atts)) = |
7753 | 434 |
let |
435 |
val named_axs = name_multi name axs; |
|
4853 | 436 |
val thy' = add named_axs thy; |
7753 | 437 |
val thms = get_axs thy' named_axs; |
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
438 |
in apsnd hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
439 |
|
8419
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
440 |
fun add_singles add args thy = foldl_map (add_single add) (thy, args); |
4770b1a12a93
add_thms, add_axioms, add_defs: return theorems as well;
wenzelm
parents:
8039
diff
changeset
|
441 |
fun add_multis add args thy = foldl_map (add_multi add) (thy, args); |
4853 | 442 |
in |
7753 | 443 |
val add_axioms = add_singles Theory.add_axioms; |
444 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
445 |
val add_axiomss = add_multis Theory.add_axioms; |
|
446 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
9318 | 447 |
val add_defs = add_singles o Theory.add_defs; |
448 |
val add_defs_i = add_singles o Theory.add_defs_i; |
|
449 |
val add_defss = add_multis o Theory.add_defs; |
|
450 |
val add_defss_i = add_multis o Theory.add_defs_i; |
|
4853 | 451 |
end; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
452 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
453 |
|
3987 | 454 |
|
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
455 |
(*** ML setup ***) |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
456 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
457 |
(* generic_setup *) |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
458 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
459 |
val generic_setup = |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
460 |
Context.use_let "val setup: (theory -> theory) list" "Library.apply setup"; |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
461 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
462 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
463 |
(* add_oracle *) |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
464 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
465 |
fun add_oracle (name, T, oracle) = |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
466 |
let val txt = |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
467 |
"local\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
468 |
\ type T = " ^ T ^ ";\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
469 |
\ val oracle: theory -> T -> term = " ^ oracle ^ ";\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
470 |
\ val name = " ^ quote name ^ ";\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
471 |
\ exception Arg of T;\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
472 |
\ val _ = Context.>> (Theory.add_oracle (name, fn (thy, Arg x) => oracle thy x));\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
473 |
\ val thy = Context.the_context ();\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
474 |
\ val invoke_" ^ name ^ " = Thm.invoke_oracle_i thy (Sign.full_name thy name);\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
475 |
\in\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
476 |
\ fun " ^ name ^ " thy x = invoke_" ^ name ^ " (thy, Arg x);\n\ |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
477 |
\end;\n"; |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
478 |
in Context.use_mltext_theory txt false end; |
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
479 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
480 |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
481 |
|
5091 | 482 |
(*** the ProtoPure theory ***) |
3987 | 483 |
|
16441 | 484 |
val aT = TFree ("'a", []); |
485 |
val A = Free ("A", propT); |
|
486 |
||
3987 | 487 |
val proto_pure = |
16493 | 488 |
Context.pre_pure_thy |
16987 | 489 |
|> Compress.init_data |
16536 | 490 |
|> Sign.init_data |
491 |
|> Theory.init_data |
|
492 |
|> Proofterm.init_data |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
493 |
|> TheoremsData.init |
3987 | 494 |
|> Theory.add_types |
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
495 |
[("fun", 2, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
496 |
("prop", 0, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
497 |
("itself", 1, NoSyn), |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
498 |
("dummy", 0, NoSyn)] |
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
499 |
|> Theory.add_nonterminals Syntax.pure_nonterms |
3987 | 500 |
|> Theory.add_syntax Syntax.pure_syntax |
15801 | 501 |
|> Theory.add_syntax Syntax.pure_appl_syntax |
6692 | 502 |
|> Theory.add_modesyntax (Symbol.xsymbolsN, true) Syntax.pure_xsym_syntax |
3987 | 503 |
|> Theory.add_syntax |
16441 | 504 |
[("==>", "prop => prop => prop", Delimfix "op ==>"), |
9534 | 505 |
(Term.dummy_patternN, "aprop", Delimfix "'_")] |
3987 | 506 |
|> Theory.add_consts |
16441 | 507 |
[("==", "'a => 'a => prop", InfixrName ("==", 2)), |
508 |
("==>", "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
3987 | 509 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)), |
10667 | 510 |
("Goal", "prop => prop", NoSyn), |
6547 | 511 |
("TYPE", "'a itself", NoSyn), |
9534 | 512 |
(Term.dummy_patternN, "'a", Delimfix "'_")] |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13800
diff
changeset
|
513 |
|> Theory.add_finals_i false |
16441 | 514 |
[Const ("==", [aT, aT] ---> propT), |
515 |
Const ("==>", [propT, propT] ---> propT), |
|
516 |
Const ("all", (aT --> propT) --> propT), |
|
17703 | 517 |
Const ("TYPE", a_itselfT), |
518 |
Const (Term.dummy_patternN, aT)] |
|
5041
a1d0a6d555cd
Goals may now contain assumptions, which are not returned.
nipkow
parents:
5026
diff
changeset
|
519 |
|> Theory.add_modesyntax ("", false) |
12138
7cad58fbc866
renamed open_smart_store_thms to smart_store_thms_open;
wenzelm
parents:
12123
diff
changeset
|
520 |
(Syntax.pure_syntax_output @ Syntax.pure_appl_syntax) |
12250 | 521 |
|> Theory.add_trfuns Syntax.pure_trfuns |
522 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
16441 | 523 |
|> Sign.local_path |
10667 | 524 |
|> (#1 oo (add_defs_i false o map Thm.no_attributes)) |
16441 | 525 |
[("Goal_def", Logic.mk_equals (Logic.mk_goal A, A))] |
9238 | 526 |
|> (#1 o add_thmss [(("nothing", []), [])]) |
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
527 |
|> Theory.add_axioms_i Proofterm.equality_axms |
16493 | 528 |
|> Theory.end_theory; |
3987 | 529 |
|
5091 | 530 |
structure ProtoPure = |
531 |
struct |
|
532 |
val thy = proto_pure; |
|
533 |
val Goal_def = get_axiom thy "Goal_def"; |
|
534 |
end; |
|
3987 | 535 |
|
536 |
end; |
|
537 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
538 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
539 |
open BasicPureThy; |