| author | wenzelm |
| Sun, 26 Nov 2006 18:07:16 +0100 | |
| changeset 21524 | 7843e2fd14a9 |
| parent 21507 | f67b41110edd |
| child 21567 | c097a926ba78 |
| 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 |
| 18031 | 11 |
datatype thmref = |
12 |
Name of string | |
|
13 |
NameSelection of string * interval list | |
|
14 |
Fact of string |
|
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
15 |
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
|
16 |
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
|
17 |
val get_thmss: theory -> thmref list -> thm list |
|
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
18 |
val thm: xstring -> thm |
|
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
19 |
val thms: xstring -> thm list |
| 5091 | 20 |
structure ProtoPure: |
21 |
sig |
|
22 |
val thy: theory |
|
| 18031 | 23 |
val prop_def: thm |
| 19775 | 24 |
val term_def: thm |
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
25 |
val conjunction_def: thm |
| 5091 | 26 |
end |
| 4853 | 27 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
28 |
|
| 3987 | 29 |
signature PURE_THY = |
30 |
sig |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
31 |
include BASIC_PURE_THY |
| 18801 | 32 |
val map_tags: (tag list -> tag list) -> thm -> thm |
33 |
val tag_rule: tag -> thm -> thm |
|
34 |
val untag_rule: string -> thm -> thm |
|
35 |
val tag: tag -> attribute |
|
36 |
val untag: string -> attribute |
|
37 |
val get_kind: thm -> string |
|
38 |
val kind_rule: string -> thm -> thm |
|
39 |
val kind: string -> attribute |
|
40 |
val kind_internal: attribute |
|
41 |
val has_internal: tag list -> bool |
|
42 |
val is_internal: thm -> bool |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
43 |
val string_of_thmref: thmref -> string |
|
15456
956d6acacf89
Specific theorems in a named list of theorems can now be referred to
berghofe
parents:
15387
diff
changeset
|
44 |
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
|
45 |
val get_thms_closure: theory -> thmref -> thm list |
| 9564 | 46 |
val single_thm: string -> thm list -> thm |
| 16493 | 47 |
val name_of_thmref: thmref -> string |
48 |
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
|
49 |
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
|
50 |
val selections: string * thm list -> (thmref * thm) list |
| 17162 | 51 |
val theorems_of: theory -> thm list NameSpace.table |
52 |
val theorem_space: theory -> NameSpace.T |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
53 |
val fact_index_of: theory -> FactIndex.T |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
54 |
val valid_thms: theory -> thmref * thm list -> bool |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
55 |
val thms_containing: theory -> FactIndex.spec -> (string * thm list) list |
| 13646 | 56 |
val thms_containing_consts: theory -> string list -> (string * thm) list |
| 16336 | 57 |
val thms_of: theory -> (string * thm) list |
58 |
val all_thms_of: theory -> (string * thm) list |
|
| 12695 | 59 |
val hide_thms: bool -> string list -> theory -> theory |
| 21438 | 60 |
val name_thms: bool -> string -> thm list -> thm list |
61 |
val name_thmss: string -> (thm list * 'a) list -> (thm list * 'a) list |
|
| 18728 | 62 |
val store_thm: (bstring * thm) * attribute list -> theory -> thm * theory |
| 7405 | 63 |
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
|
64 |
val smart_store_thms_open: (bstring * thm list) -> thm list |
| 7899 | 65 |
val forall_elim_var: int -> thm -> thm |
66 |
val forall_elim_vars: int -> thm -> thm |
|
| 18778 | 67 |
val name_multi: string -> 'a list -> (string * 'a) list |
| 18728 | 68 |
val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory |
69 |
val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory |
|
| 18801 | 70 |
val note_thmss: string -> ((bstring * attribute list) * |
| 18728 | 71 |
(thmref * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
| 18801 | 72 |
val note_thmss_i: string -> ((bstring * attribute list) * |
73 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
74 |
val note_thmss_qualified: string -> string -> ((bstring * attribute list) * |
|
| 18728 | 75 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
76 |
val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory |
|
77 |
val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory |
|
78 |
val add_axiomss: ((bstring * string list) * attribute list) list -> |
|
79 |
theory -> thm list list * theory |
|
80 |
val add_axiomss_i: ((bstring * term list) * attribute list) list -> |
|
81 |
theory -> thm list list * theory |
|
82 |
val add_defs: bool -> ((bstring * string) * attribute list) list -> |
|
| 18377 | 83 |
theory -> thm list * theory |
| 18728 | 84 |
val add_defs_i: bool -> ((bstring * term) * attribute list) list -> |
| 18377 | 85 |
theory -> thm list * theory |
| 19629 | 86 |
val add_defs_unchecked: bool -> ((bstring * string) * attribute list) list -> |
87 |
theory -> thm list * theory |
|
88 |
val add_defs_unchecked_i: bool -> ((bstring * term) * attribute list) list -> |
|
89 |
theory -> thm list * theory |
|
| 18728 | 90 |
val add_defss: bool -> ((bstring * string list) * attribute list) list -> |
| 18377 | 91 |
theory -> thm list list * theory |
| 18728 | 92 |
val add_defss_i: bool -> ((bstring * term list) * attribute list) list -> |
| 18358 | 93 |
theory -> thm list list * theory |
|
18666
f37a43cec547
generic_setup: optional argument, defaults to Context.setup();
wenzelm
parents:
18614
diff
changeset
|
94 |
val generic_setup: string option -> theory -> theory |
|
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
95 |
val add_oracle: bstring * string * string -> theory -> theory |
| 3987 | 96 |
end; |
97 |
||
98 |
structure PureThy: PURE_THY = |
|
99 |
struct |
|
100 |
||
101 |
||
| 18801 | 102 |
(*** theorem tags ***) |
103 |
||
104 |
(* add / delete tags *) |
|
105 |
||
106 |
fun map_tags f thm = |
|
| 21507 | 107 |
let val (name, tags) = Thm.get_name_tags thm |
108 |
in Thm.put_name_tags (name, f tags) thm end; |
|
| 18801 | 109 |
|
| 20664 | 110 |
fun tag_rule tg = map_tags (fn tgs => if member (op =) tgs tg then tgs else tgs @ [tg]); |
| 19305 | 111 |
fun untag_rule s = map_tags (filter_out (fn (s', _) => s = s')); |
| 18801 | 112 |
|
113 |
fun tag tg x = Thm.rule_attribute (K (tag_rule tg)) x; |
|
114 |
fun untag s x = Thm.rule_attribute (K (untag_rule s)) x; |
|
115 |
||
116 |
fun simple_tag name x = tag (name, []) x; |
|
117 |
||
118 |
||
119 |
(* theorem kinds *) |
|
120 |
||
121 |
fun get_kind thm = |
|
122 |
(case AList.lookup (op =) ((#2 o Thm.get_name_tags) thm) "kind" of |
|
123 |
SOME (k :: _) => k |
|
124 |
| _ => "unknown"); |
|
125 |
||
126 |
fun kind_rule k = tag_rule ("kind", [k]) o untag_rule "kind";
|
|
127 |
fun kind k x = if k = "" then x else Thm.rule_attribute (K (kind_rule k)) x; |
|
128 |
fun kind_internal x = kind internalK x; |
|
129 |
fun has_internal tags = exists (fn ("kind", [k]) => k = internalK | _ => false) tags;
|
|
130 |
val is_internal = has_internal o Thm.tags_of_thm; |
|
131 |
||
132 |
||
133 |
||
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
134 |
(*** theorem database ***) |
| 3987 | 135 |
|
| 16441 | 136 |
(** dataype theorems **) |
| 3987 | 137 |
|
| 16441 | 138 |
structure TheoremsData = TheoryDataFun |
139 |
(struct |
|
| 5005 | 140 |
val name = "Pure/theorems"; |
141 |
type T = |
|
| 16441 | 142 |
{theorems: thm list NameSpace.table,
|
143 |
index: FactIndex.T} ref; |
|
| 3987 | 144 |
|
| 4853 | 145 |
fun mk_empty _ = |
| 16336 | 146 |
ref {theorems = NameSpace.empty_table, index = FactIndex.empty}: T;
|
| 3987 | 147 |
|
| 5005 | 148 |
val empty = mk_empty (); |
| 6547 | 149 |
fun copy (ref x) = ref x; |
| 16441 | 150 |
val extend = mk_empty; |
151 |
fun merge _ = mk_empty; |
|
|
19426
b9289b560446
moved print_theorems/theory to Isar/proof_display.ML;
wenzelm
parents:
19391
diff
changeset
|
152 |
fun print _ _ = (); |
| 16441 | 153 |
end); |
| 3987 | 154 |
|
| 16493 | 155 |
val get_theorems_ref = TheoremsData.get; |
156 |
val get_theorems = ! o get_theorems_ref; |
|
| 17162 | 157 |
val theorems_of = #theorems o get_theorems; |
158 |
val theorem_space = #1 o theorems_of; |
|
| 16493 | 159 |
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
|
160 |
|
| 6367 | 161 |
|
| 3987 | 162 |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
163 |
(** retrieve theorems **) |
| 3987 | 164 |
|
| 15531 | 165 |
fun the_thms _ (SOME thms) = thms |
166 |
| the_thms name NONE = error ("Unknown theorem(s) " ^ quote name);
|
|
| 4037 | 167 |
|
| 9564 | 168 |
fun single_thm _ [thm] = thm |
169 |
| single_thm name _ = error ("Single theorem expected " ^ quote name);
|
|
170 |
||
| 15703 | 171 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
172 |
(* datatype interval *) |
| 15703 | 173 |
|
174 |
datatype interval = |
|
175 |
FromTo of int * int | |
|
176 |
From of int | |
|
177 |
Single of int; |
|
178 |
||
179 |
fun interval _ (FromTo (i, j)) = i upto j |
|
180 |
| interval n (From i) = i upto n |
|
181 |
| interval _ (Single i) = [i]; |
|
182 |
||
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
183 |
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
|
184 |
| 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
|
185 |
| 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
|
186 |
|
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
187 |
|
| 16493 | 188 |
(* datatype thmref *) |
189 |
||
190 |
datatype thmref = |
|
191 |
Name of string | |
|
| 18031 | 192 |
NameSelection of string * interval list | |
193 |
Fact of string; |
|
| 15703 | 194 |
|
| 16493 | 195 |
fun name_of_thmref (Name name) = name |
| 18031 | 196 |
| name_of_thmref (NameSelection (name, _)) = name |
| 18678 | 197 |
| name_of_thmref (Fact _) = error "Illegal literal fact"; |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
198 |
|
| 16493 | 199 |
fun map_name_of_thmref f (Name name) = Name (f name) |
| 18031 | 200 |
| map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is) |
201 |
| map_name_of_thmref _ thmref = thmref; |
|
| 16493 | 202 |
|
203 |
fun string_of_thmref (Name name) = name |
|
204 |
| string_of_thmref (NameSelection (name, is)) = |
|
| 18031 | 205 |
name ^ enclose "(" ")" (commas (map string_of_interval is))
|
| 18678 | 206 |
| string_of_thmref (Fact _) = error "Illegal literal fact"; |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
207 |
|
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
208 |
|
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
209 |
(* select_thm *) |
| 15703 | 210 |
|
| 16493 | 211 |
fun select_thm (Name _) thms = thms |
| 18031 | 212 |
| select_thm (Fact _) thms = thms |
| 16493 | 213 |
| select_thm (NameSelection (name, is)) thms = |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
214 |
let |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
215 |
val n = length thms; |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
216 |
fun select i = |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
217 |
if i < 1 orelse i > n then |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
218 |
error ("Bad subscript " ^ string_of_int i ^ " for " ^
|
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
219 |
quote name ^ " (length " ^ string_of_int n ^ ")") |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
220 |
else List.nth (thms, i - 1); |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
221 |
in map select (maps (interval n) is) end; |
| 15703 | 222 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
223 |
|
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
224 |
(* selections *) |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
225 |
|
| 16493 | 226 |
fun selections (name, [thm]) = [(Name name, thm)] |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
227 |
| selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) => |
| 16493 | 228 |
(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
|
229 |
|
| 9564 | 230 |
|
| 9808 | 231 |
(* get_thm(s)_closure -- statically scoped versions *) |
| 9564 | 232 |
|
233 |
(*beware of proper order of evaluation!*) |
|
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
234 |
|
| 9564 | 235 |
fun lookup_thms thy = |
236 |
let |
|
| 16441 | 237 |
val thy_ref = Theory.self_ref thy; |
| 16493 | 238 |
val (space, thms) = #theorems (get_theorems thy); |
| 9564 | 239 |
in |
240 |
fn name => |
|
| 17221 | 241 |
Option.map (map (Thm.transfer (Theory.deref thy_ref))) (*dynamic identity*) |
| 17418 | 242 |
(Symtab.lookup thms (NameSpace.intern space name)) (*static content*) |
| 9564 | 243 |
end; |
| 3987 | 244 |
|
| 9564 | 245 |
fun get_thms_closure thy = |
| 16441 | 246 |
let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) in |
| 16493 | 247 |
fn thmref => |
| 18031 | 248 |
let val name = name_of_thmref thmref; |
| 16493 | 249 |
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
|
250 |
end; |
| 9564 | 251 |
|
| 9808 | 252 |
fun get_thm_closure thy = |
253 |
let val get = get_thms_closure thy |
|
| 16493 | 254 |
in fn thmref => single_thm (name_of_thmref thmref) (get thmref) end; |
| 9808 | 255 |
|
| 9564 | 256 |
|
| 16441 | 257 |
(* get_thms etc. *) |
| 9564 | 258 |
|
| 16493 | 259 |
fun get_thms theory thmref = |
260 |
let val name = name_of_thmref thmref in |
|
261 |
get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory) |
|
262 |
|> the_thms name |> select_thm thmref |> map (Thm.transfer theory) |
|
263 |
end; |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
264 |
|
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
265 |
fun get_thmss thy thmrefs = maps (get_thms thy) thmrefs; |
| 16493 | 266 |
fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref); |
| 4783 | 267 |
|
|
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
268 |
fun thm name = get_thm (the_context ()) (Name name); |
|
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
269 |
fun thms name = get_thms (the_context ()) (Name name); |
|
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
270 |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
271 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
272 |
(* thms_containing etc. *) |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
273 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
274 |
fun valid_thms thy (thmref, ths) = |
| 18678 | 275 |
(case try (get_thms thy) thmref of |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
276 |
NONE => false |
| 16132 | 277 |
| SOME ths' => Thm.eq_thms (ths, ths')); |
| 3987 | 278 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
279 |
fun thms_containing theory spec = |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
280 |
(theory :: Theory.ancestors_of theory) |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
281 |
|> maps (fn thy => |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
282 |
FactIndex.find (fact_index_of thy) spec |
| 16493 | 283 |
|> List.filter (fn (name, ths) => valid_thms theory (Name name, ths)) |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
284 |
|> distinct (eq_fst (op =))); |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
285 |
|
| 13646 | 286 |
fun thms_containing_consts thy consts = |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
287 |
thms_containing thy (consts, []) |> maps #2 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
288 |
|> map (fn th => (Thm.name_of_thm th, th)); |
| 13646 | 289 |
|
|
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
290 |
|
| 16336 | 291 |
(* thms_of etc. *) |
|
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
292 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
293 |
fun thms_of thy = |
| 17162 | 294 |
let val thms = #2 (theorems_of thy) |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
295 |
in map (fn th => (Thm.name_of_thm th, th)) (maps snd (Symtab.dest thms)) end; |
| 15703 | 296 |
|
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
297 |
fun all_thms_of thy = maps thms_of (thy :: Theory.ancestors_of thy); |
| 16336 | 298 |
|
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
299 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
300 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
301 |
(** store theorems **) (*DESTRUCTIVE*) |
| 3987 | 302 |
|
| 16441 | 303 |
(* hiding -- affects current theory node only *) |
| 12695 | 304 |
|
| 13424 | 305 |
fun hide_thms fully names thy = |
| 12695 | 306 |
let |
| 16493 | 307 |
val r as ref {theorems = (space, thms), index} = get_theorems_ref thy;
|
| 16132 | 308 |
val space' = fold (NameSpace.hide fully) names space; |
| 16336 | 309 |
in r := {theorems = (space', thms), index = index}; thy end;
|
| 12695 | 310 |
|
311 |
||
| 4853 | 312 |
(* naming *) |
313 |
||
| 18614 | 314 |
fun gen_names _ len "" = replicate len "" |
315 |
| gen_names j len name = map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len); |
|
| 4853 | 316 |
|
| 18801 | 317 |
fun name_multi name [x] = [(name, x)] |
318 |
| name_multi name xs = gen_names 0 (length xs) name ~~ xs; |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
319 |
|
| 16441 | 320 |
fun name_thm pre (name, thm) = |
321 |
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
|
322 |
|
| 18801 | 323 |
fun 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
|
324 |
|
| 16441 | 325 |
fun name_thmss name xs = |
326 |
(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
|
327 |
[([x], z)] => [([name_thm true (name, x)], z)] |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
328 |
| _ => fst (fold_map (fn (ys, z) => fn i => |
|
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
329 |
((map (name_thm true) (gen_names i (length ys) name ~~ ys), z), i + length ys)) xs 0)); |
| 4853 | 330 |
|
331 |
||
| 11998 | 332 |
(* enter_thms *) |
| 4853 | 333 |
|
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
334 |
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
|
335 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name);
|
| 3987 | 336 |
|
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
337 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap
|
| 16441 | 338 |
| 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
|
339 |
let |
| 16441 | 340 |
val name = Sign.full_name thy bname; |
341 |
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
|
342 |
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
|
343 |
val space' = Sign.declare_name thy' name space; |
| 17418 | 344 |
val theorems' = Symtab.update (name, thms') theorems; |
| 18031 | 345 |
val index' = FactIndex.add_global (name, thms') index; |
| 13274 | 346 |
in |
| 17418 | 347 |
(case Symtab.lookup theorems name of |
| 15531 | 348 |
NONE => () |
| 16441 | 349 |
| SOME thms'' => |
350 |
if Thm.eq_thms (thms', thms'') then warn_same name |
|
| 13274 | 351 |
else warn_overwrite name); |
| 16336 | 352 |
r := {theorems = (space', theorems'), index = index'};
|
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
353 |
(thms', thy') |
| 11998 | 354 |
end; |
| 3987 | 355 |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
356 |
|
| 6091 | 357 |
(* add_thms(s) *) |
| 4853 | 358 |
|
| 16441 | 359 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
| 18728 | 360 |
enter_thms pre_name (name_thms false) (foldl_map (Thm.theory_attributes atts)) (bname, thms); |
| 4853 | 361 |
|
| 18377 | 362 |
fun gen_add_thmss pre_name = |
363 |
fold_map (add_thms_atts pre_name); |
|
| 5907 | 364 |
|
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
365 |
fun gen_add_thms pre_name args = |
| 18377 | 366 |
apfst (map hd) o gen_add_thmss pre_name (map (apfst (apsnd single)) args); |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
367 |
|
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
368 |
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
|
369 |
val add_thms = gen_add_thms (name_thms true); |
| 5907 | 370 |
|
371 |
||
| 14564 | 372 |
(* note_thmss(_i) *) |
| 5907 | 373 |
|
| 9192 | 374 |
local |
| 12711 | 375 |
|
| 18801 | 376 |
fun gen_note_thmss get k = fold_map (fn ((bname, more_atts), ths_atts) => fn thy => |
| 12711 | 377 |
let |
| 18728 | 378 |
fun app (x, (ths, atts)) = foldl_map (Thm.theory_attributes atts) (x, ths); |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
379 |
val (thms, thy') = thy |> enter_thms |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
380 |
name_thmss (name_thms false) (apsnd flat o foldl_map app) |
| 18801 | 381 |
(bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind k])) ths_atts); |
382 |
in ((bname, thms), thy') end); |
|
| 12711 | 383 |
|
| 9192 | 384 |
in |
| 12711 | 385 |
|
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
386 |
val note_thmss = gen_note_thmss get_thms; |
|
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
387 |
val note_thmss_i = gen_note_thmss (K I); |
| 12711 | 388 |
|
| 21438 | 389 |
end; |
390 |
||
| 18801 | 391 |
fun note_thmss_qualified k path facts thy = |
392 |
thy |
|
393 |
|> Theory.add_path path |
|
394 |
|> Theory.no_base_names |
|
395 |
|> note_thmss_i k facts |
|
396 |
||> Theory.restore_naming thy; |
|
397 |
||
| 5280 | 398 |
|
| 6091 | 399 |
(* store_thm *) |
| 5280 | 400 |
|
| 11998 | 401 |
fun store_thm ((bname, thm), atts) thy = |
| 18377 | 402 |
let val ([th'], thy') = add_thms_atts (name_thms true) ((bname, [thm]), atts) thy |
| 18358 | 403 |
in (th', thy') end; |
| 3987 | 404 |
|
405 |
||
| 16441 | 406 |
(* smart_store_thms(_open) *) |
| 3987 | 407 |
|
| 16441 | 408 |
local |
409 |
||
410 |
fun smart_store _ (name, []) = |
|
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
411 |
error ("Cannot store empty list of theorems: " ^ quote name)
|
| 16441 | 412 |
| smart_store name_thm (name, [thm]) = |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
413 |
fst (enter_thms (name_thm true) (name_thm false) I (name, [thm]) (Thm.theory_of_thm thm)) |
| 16441 | 414 |
| smart_store name_thm (name, thms) = |
| 7405 | 415 |
let |
| 20057 | 416 |
fun merge th thy = Theory.merge (thy, Thm.theory_of_thm th) |
417 |
handle TERM (msg, _) => raise THM (msg, 0, [th]); |
|
| 19473 | 418 |
val thy = fold merge (tl thms) (Thm.theory_of_thm (hd thms)); |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
419 |
in fst (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
|
420 |
|
| 16441 | 421 |
in |
422 |
||
423 |
val smart_store_thms = smart_store name_thms; |
|
424 |
val smart_store_thms_open = smart_store (K (K I)); |
|
425 |
||
426 |
end; |
|
| 3987 | 427 |
|
428 |
||
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
429 |
(* forall_elim_var(s) -- belongs to drule.ML *) |
| 7899 | 430 |
|
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
431 |
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
|
432 |
let |
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
433 |
val {thy, tpairs, prop, ...} = Thm.rep_thm th;
|
| 16787 | 434 |
val add_used = Term.fold_aterms |
| 20853 | 435 |
(fn Var ((x, j), _) => if i = j then insert (op =) x else I | _ => I); |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
436 |
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
|
437 |
val vars = strip_vars prop; |
|
20071
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
20057
diff
changeset
|
438 |
val cvars = (Name.variant_list used (map #1 vars), vars) |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
439 |
|> 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
|
440 |
in fold Thm.forall_elim cvars th end; |
| 7899 | 441 |
|
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
442 |
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
|
443 |
|
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
444 |
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
|
445 |
(fn Const ("all", _) $ Abs (a, T, _) => [(a, T)]
|
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
446 |
| _ => raise THM ("forall_elim_vars", i, [th])) i th;
|
| 7899 | 447 |
|
448 |
||
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
449 |
(* store axioms as theorems *) |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
450 |
|
| 4853 | 451 |
local |
| 17418 | 452 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
453 |
fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs; |
|
| 18377 | 454 |
fun add_single add ((name, ax), atts) thy = |
| 4853 | 455 |
let |
| 11998 | 456 |
val named_ax = [(name, ax)]; |
| 7753 | 457 |
val thy' = add named_ax thy; |
458 |
val thm = hd (get_axs thy' named_ax); |
|
| 18377 | 459 |
in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
460 |
fun add_multi add ((name, axs), atts) thy = |
|
| 7753 | 461 |
let |
462 |
val named_axs = name_multi name axs; |
|
| 4853 | 463 |
val thy' = add named_axs thy; |
| 7753 | 464 |
val thms = get_axs thy' named_axs; |
| 18377 | 465 |
in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
466 |
fun add_singles add = fold_map (add_single add); |
|
467 |
fun add_multis add = fold_map (add_multi add); |
|
| 4853 | 468 |
in |
| 19629 | 469 |
val add_axioms = add_singles Theory.add_axioms; |
470 |
val add_axioms_i = add_singles Theory.add_axioms_i; |
|
471 |
val add_axiomss = add_multis Theory.add_axioms; |
|
472 |
val add_axiomss_i = add_multis Theory.add_axioms_i; |
|
473 |
val add_defs = add_singles o (Theory.add_defs false); |
|
474 |
val add_defs_i = add_singles o (Theory.add_defs_i false); |
|
475 |
val add_defs_unchecked = add_singles o (Theory.add_defs true); |
|
476 |
val add_defs_unchecked_i = add_singles o (Theory.add_defs_i true); |
|
477 |
val add_defss = add_multis o (Theory.add_defs false); |
|
478 |
val add_defss_i = add_multis o (Theory.add_defs_i false); |
|
| 4853 | 479 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
480 |
|
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
481 |
|
| 3987 | 482 |
|
|
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
483 |
(*** ML setup ***) |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
484 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
485 |
(* generic_setup *) |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
486 |
|
| 18713 | 487 |
fun generic_setup NONE = (fn thy => thy |> Context.setup ()) |
488 |
| generic_setup (SOME txt) = Context.use_let "val setup: theory -> theory" "setup" txt; |
|
|
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
489 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
490 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
491 |
(* add_oracle *) |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
492 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
493 |
fun add_oracle (name, T, oracle) = |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
494 |
let val txt = |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
495 |
"local\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
496 |
\ type T = " ^ T ^ ";\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
497 |
\ val oracle: theory -> T -> term = " ^ oracle ^ ";\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
498 |
\ val name = " ^ quote name ^ ";\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
499 |
\ exception Arg of T;\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
500 |
\ 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
|
501 |
\ val thy = Context.the_context ();\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
502 |
\ 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
|
503 |
\in\n\ |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
504 |
\ 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
|
505 |
\end;\n"; |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
506 |
in Context.use_mltext_theory txt false end; |
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
507 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
508 |
|
|
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
509 |
|
| 5091 | 510 |
(*** the ProtoPure theory ***) |
| 3987 | 511 |
|
| 16441 | 512 |
val aT = TFree ("'a", []);
|
513 |
val A = Free ("A", propT);
|
|
514 |
||
| 3987 | 515 |
val proto_pure = |
| 16493 | 516 |
Context.pre_pure_thy |
| 16987 | 517 |
|> Compress.init_data |
| 16536 | 518 |
|> Sign.init_data |
519 |
|> Theory.init_data |
|
520 |
|> Proofterm.init_data |
|
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
521 |
|> TheoremsData.init |
| 3987 | 522 |
|> Theory.add_types |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
523 |
[("fun", 2, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
524 |
("prop", 0, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
525 |
("itself", 1, NoSyn),
|
|
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
526 |
("dummy", 0, NoSyn)]
|
| 18713 | 527 |
|> Theory.add_nonterminals Syntax.basic_nonterms |
| 3987 | 528 |
|> Theory.add_syntax |
| 18713 | 529 |
[("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3%_./ _)", [0, 3], 3)),
|
530 |
("_abs", "'a", NoSyn),
|
|
531 |
("", "'a => args", Delimfix "_"),
|
|
532 |
("_args", "['a, args] => args", Delimfix "_,/ _"),
|
|
533 |
("", "id => idt", Delimfix "_"),
|
|
534 |
("_idtdummy", "idt", Delimfix "'_"),
|
|
535 |
("_idtyp", "[id, type] => idt", Mixfix ("_::_", [], 0)),
|
|
536 |
("_idtypdummy", "type => idt", Mixfix ("'_()::_", [], 0)),
|
|
537 |
("", "idt => idt", Delimfix "'(_')"),
|
|
538 |
("", "idt => idts", Delimfix "_"),
|
|
539 |
("_idts", "[idt, idts] => idts", Mixfix ("_/ _", [1, 0], 0)),
|
|
540 |
("", "idt => pttrn", Delimfix "_"),
|
|
541 |
("", "pttrn => pttrns", Delimfix "_"),
|
|
542 |
("_pttrns", "[pttrn, pttrns] => pttrns", Mixfix ("_/ _", [1, 0], 0)),
|
|
543 |
("", "id => aprop", Delimfix "_"),
|
|
544 |
("", "longid => aprop", Delimfix "_"),
|
|
545 |
("", "var => aprop", Delimfix "_"),
|
|
546 |
("_DDDOT", "aprop", Delimfix "..."),
|
|
547 |
("_aprop", "aprop => prop", Delimfix "PROP _"),
|
|
548 |
("_asm", "prop => asms", Delimfix "_"),
|
|
549 |
("_asms", "[prop, asms] => asms", Delimfix "_;/ _"),
|
|
550 |
("_bigimpl", "[asms, prop] => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)),
|
|
551 |
("_ofclass", "[type, logic] => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"),
|
|
552 |
("_mk_ofclass", "_", NoSyn),
|
|
553 |
("_TYPE", "type => logic", Delimfix "(1TYPE/(1'(_')))"),
|
|
554 |
("", "id => logic", Delimfix "_"),
|
|
555 |
("", "longid => logic", Delimfix "_"),
|
|
556 |
("", "var => logic", Delimfix "_"),
|
|
557 |
("_DDDOT", "logic", Delimfix "..."),
|
|
558 |
("_constify", "num => num_const", Delimfix "_"),
|
|
559 |
("_indexnum", "num_const => index", Delimfix "\\<^sub>_"),
|
|
560 |
("_index", "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"),
|
|
561 |
("_indexdefault", "index", Delimfix ""),
|
|
562 |
("_indexvar", "index", Delimfix "'\\<index>"),
|
|
563 |
("_struct", "index => logic", Mixfix ("\\<struct>_", [1000], 1000)),
|
|
564 |
("==>", "prop => prop => prop", Delimfix "op ==>"),
|
|
565 |
(Term.dummy_patternN, "aprop", Delimfix "'_")] |
|
566 |
|> Theory.add_syntax Syntax.appl_syntax |
|
567 |
|> Theory.add_modesyntax (Symbol.xsymbolsN, true) |
|
568 |
[("fun", "[type, type] => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)),
|
|
569 |
("_bracket", "[types, type] => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)),
|
|
570 |
("_ofsort", "[tid, sort] => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)),
|
|
571 |
("_constrain", "['a, type] => 'a", Mixfix ("_\\<Colon>_", [4, 0], 3)),
|
|
| 21524 | 572 |
("_idtyp", "[id, type] => idt", Mixfix ("_\\<Colon>_", [], 0)),
|
| 18713 | 573 |
("_idtypdummy", "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)),
|
| 19577 | 574 |
("_type_constraint_", "'a", NoSyn),
|
| 18713 | 575 |
("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)),
|
576 |
("==", "['a, 'a] => prop", InfixrName ("\\<equiv>", 2)),
|
|
| 21524 | 577 |
("all_binder", "[idts, prop] => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)),
|
| 18713 | 578 |
("==>", "[prop, prop] => prop", InfixrName ("\\<Longrightarrow>", 1)),
|
579 |
("_DDDOT", "aprop", Delimfix "\\<dots>"),
|
|
580 |
("_bigimpl", "[asms, prop] => prop", Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)),
|
|
581 |
("_DDDOT", "logic", Delimfix "\\<dots>")]
|
|
582 |
|> Theory.add_modesyntax ("", false)
|
|
583 |
[("prop", "prop => prop", Mixfix ("_", [0], 0)),
|
|
| 19775 | 584 |
("ProtoPure.term", "'a => prop", Delimfix "TERM _"),
|
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
585 |
("ProtoPure.conjunction", "prop => prop => prop", InfixrName ("&&", 2))]
|
| 18713 | 586 |
|> Theory.add_modesyntax ("HTML", false)
|
587 |
[("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))]
|
|
| 3987 | 588 |
|> Theory.add_consts |
| 16441 | 589 |
[("==", "'a => 'a => prop", InfixrName ("==", 2)),
|
590 |
("==>", "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)),
|
|
| 3987 | 591 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
|
| 18031 | 592 |
("prop", "prop => prop", NoSyn),
|
| 6547 | 593 |
("TYPE", "'a itself", NoSyn),
|
| 9534 | 594 |
(Term.dummy_patternN, "'a", Delimfix "'_")] |
|
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13800
diff
changeset
|
595 |
|> Theory.add_finals_i false |
| 16441 | 596 |
[Const ("==", [aT, aT] ---> propT),
|
597 |
Const ("==>", [propT, propT] ---> propT),
|
|
598 |
Const ("all", (aT --> propT) --> propT),
|
|
| 19391 | 599 |
Const ("TYPE", Term.a_itselfT),
|
| 17703 | 600 |
Const (Term.dummy_patternN, aT)] |
| 18838 | 601 |
|> Theory.add_trfuns Syntax.pure_trfuns |
602 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
| 16441 | 603 |
|> Sign.local_path |
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
604 |
|> Theory.add_consts |
| 19775 | 605 |
[("term", "'a => prop", NoSyn),
|
606 |
("conjunction", "prop => prop => prop", NoSyn)]
|
|
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
607 |
|> (add_defs false o map Thm.no_attributes) |
|
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
608 |
[("prop_def", "prop(A) == A"),
|
| 19775 | 609 |
("term_def", "term(x) == (!!A. PROP A ==> PROP A)"),
|
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
610 |
("conjunction_def",
|
|
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
611 |
"conjunction(A, B) == (!!C. (PROP A ==> PROP B ==> PROP C) ==> PROP C)")] |> snd |
| 19775 | 612 |
|> Sign.hide_consts false ["conjunction", "term"] |
| 18377 | 613 |
|> add_thmss [(("nothing", []), [])] |> snd
|
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
614 |
|> Theory.add_axioms_i Proofterm.equality_axms |
| 16493 | 615 |
|> Theory.end_theory; |
| 3987 | 616 |
|
| 5091 | 617 |
structure ProtoPure = |
618 |
struct |
|
619 |
val thy = proto_pure; |
|
| 18031 | 620 |
val prop_def = get_axiom thy "prop_def"; |
| 19775 | 621 |
val term_def = get_axiom thy "term_def"; |
|
19125
59b26248547b
simplified Pure conjunction, based on actual const;
wenzelm
parents:
19046
diff
changeset
|
622 |
val conjunction_def = get_axiom thy "conjunction_def"; |
| 5091 | 623 |
end; |
| 3987 | 624 |
|
625 |
end; |
|
626 |
||
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
627 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
628 |
open BasicPureThy; |