author | wenzelm |
Fri, 27 Jan 2006 19:03:05 +0100 | |
changeset 18800 | c0f90bbf3865 |
parent 18778 | f623f7a35ced |
child 18801 | b913ce69660c |
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 |
|
5000 | 15 |
val print_theorems: theory -> unit |
16 |
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
|
17 |
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
|
18 |
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
|
19 |
val get_thmss: theory -> thmref list -> thm list |
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
20 |
val thm: xstring -> thm |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
21 |
val thms: xstring -> thm list |
5091 | 22 |
structure ProtoPure: |
23 |
sig |
|
24 |
val thy: theory |
|
18031 | 25 |
val prop_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 |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
32 |
val string_of_thmref: thmref -> string |
16493 | 33 |
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
|
34 |
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
|
35 |
val get_thms_closure: theory -> thmref -> thm list |
9564 | 36 |
val single_thm: string -> thm list -> thm |
16493 | 37 |
val name_of_thmref: thmref -> string |
38 |
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
|
39 |
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
|
40 |
val selections: string * thm list -> (thmref * thm) list |
17162 | 41 |
val theorems_of: theory -> thm list NameSpace.table |
42 |
val theorem_space: theory -> NameSpace.T |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
43 |
val fact_index_of: theory -> FactIndex.T |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
44 |
val valid_thms: theory -> thmref * thm list -> bool |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
45 |
val thms_containing: theory -> FactIndex.spec -> (string * thm list) list |
13646 | 46 |
val thms_containing_consts: theory -> string list -> (string * thm) list |
16336 | 47 |
val thms_of: theory -> (string * thm) list |
48 |
val all_thms_of: theory -> (string * thm) list |
|
12695 | 49 |
val hide_thms: bool -> string list -> theory -> theory |
18728 | 50 |
val store_thm: (bstring * thm) * attribute list -> theory -> thm * theory |
7405 | 51 |
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
|
52 |
val smart_store_thms_open: (bstring * thm list) -> thm list |
7899 | 53 |
val forall_elim_var: int -> thm -> thm |
54 |
val forall_elim_vars: int -> thm -> thm |
|
18778 | 55 |
val name_multi: string -> 'a list -> (string * 'a) list |
18728 | 56 |
val add_thms: ((bstring * thm) * attribute list) list -> theory -> thm list * theory |
57 |
val add_thmss: ((bstring * thm list) * attribute list) list -> theory -> thm list list * theory |
|
58 |
val note_thmss: attribute -> ((bstring * attribute list) * |
|
59 |
(thmref * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
60 |
val note_thmss_i: attribute -> ((bstring * attribute list) * |
|
61 |
(thm list * attribute list) list) list -> theory -> (bstring * thm list) list * theory |
|
62 |
val add_axioms: ((bstring * string) * attribute list) list -> theory -> thm list * theory |
|
63 |
val add_axioms_i: ((bstring * term) * attribute list) list -> theory -> thm list * theory |
|
64 |
val add_axiomss: ((bstring * string list) * attribute list) list -> |
|
65 |
theory -> thm list list * theory |
|
66 |
val add_axiomss_i: ((bstring * term list) * attribute list) list -> |
|
67 |
theory -> thm list list * theory |
|
68 |
val add_defs: bool -> ((bstring * string) * attribute list) list -> |
|
18377 | 69 |
theory -> thm list * theory |
18728 | 70 |
val add_defs_i: bool -> ((bstring * term) * attribute list) list -> |
18377 | 71 |
theory -> thm list * theory |
18728 | 72 |
val add_defss: bool -> ((bstring * string list) * attribute list) list -> |
18377 | 73 |
theory -> thm list list * theory |
18728 | 74 |
val add_defss_i: bool -> ((bstring * term list) * attribute list) list -> |
18358 | 75 |
theory -> thm list list * theory |
18666
f37a43cec547
generic_setup: optional argument, defaults to Context.setup();
wenzelm
parents:
18614
diff
changeset
|
76 |
val generic_setup: string option -> theory -> theory |
17342
92504e2f6c07
added generic_setup, add_oracle (from isar_thy.ML);
wenzelm
parents:
17221
diff
changeset
|
77 |
val add_oracle: bstring * string * string -> theory -> theory |
3987 | 78 |
end; |
79 |
||
80 |
structure PureThy: PURE_THY = |
|
81 |
struct |
|
82 |
||
83 |
||
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
84 |
(*** theorem database ***) |
3987 | 85 |
|
16441 | 86 |
(** dataype theorems **) |
3987 | 87 |
|
16493 | 88 |
fun pretty_theorems_diff thy prev_thms (space, thms) = |
16441 | 89 |
let |
90 |
val prt_thm = Display.pretty_thm_sg thy; |
|
91 |
fun prt_thms (name, [th]) = |
|
92 |
Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt_thm th] |
|
93 |
| prt_thms (name, ths) = Pretty.big_list (name ^ ":") (map prt_thm ths); |
|
16493 | 94 |
|
95 |
val diff_thmss = Symtab.fold (fn fact => |
|
96 |
if not (Symtab.member eq_thms prev_thms fact) then cons fact else I) thms []; |
|
97 |
val thmss = diff_thmss |> map (apfst (NameSpace.extern space)) |> Library.sort_wrt #1; |
|
16441 | 98 |
in Pretty.big_list "theorems:" (map prt_thms thmss) end; |
99 |
||
16493 | 100 |
fun pretty_theorems thy = pretty_theorems_diff thy Symtab.empty; |
101 |
||
16441 | 102 |
structure TheoremsData = TheoryDataFun |
103 |
(struct |
|
5005 | 104 |
val name = "Pure/theorems"; |
105 |
type T = |
|
16441 | 106 |
{theorems: thm list NameSpace.table, |
107 |
index: FactIndex.T} ref; |
|
3987 | 108 |
|
4853 | 109 |
fun mk_empty _ = |
16336 | 110 |
ref {theorems = NameSpace.empty_table, index = FactIndex.empty}: T; |
3987 | 111 |
|
5005 | 112 |
val empty = mk_empty (); |
6547 | 113 |
fun copy (ref x) = ref x; |
16441 | 114 |
val extend = mk_empty; |
115 |
fun merge _ = mk_empty; |
|
116 |
fun print thy (ref {theorems, index}) = Pretty.writeln (pretty_theorems thy theorems); |
|
117 |
end); |
|
3987 | 118 |
|
16493 | 119 |
val get_theorems_ref = TheoremsData.get; |
120 |
val get_theorems = ! o get_theorems_ref; |
|
17162 | 121 |
val theorems_of = #theorems o get_theorems; |
122 |
val theorem_space = #1 o theorems_of; |
|
16493 | 123 |
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
|
124 |
|
6367 | 125 |
|
5000 | 126 |
(* print theory *) |
3987 | 127 |
|
5005 | 128 |
val print_theorems = TheoremsData.print; |
8720 | 129 |
|
16493 | 130 |
fun print_theorems_diff prev_thy thy = |
131 |
Pretty.writeln (pretty_theorems_diff thy |
|
17162 | 132 |
(#2 (theorems_of prev_thy)) (#theorems (get_theorems thy))); |
16493 | 133 |
|
5000 | 134 |
fun print_theory thy = |
9215 | 135 |
Display.pretty_full_theory thy @ |
16493 | 136 |
[pretty_theorems thy (#theorems (get_theorems thy))] |
8720 | 137 |
|> Pretty.chunks |> Pretty.writeln; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
138 |
|
3987 | 139 |
|
140 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
141 |
(** retrieve theorems **) |
3987 | 142 |
|
15531 | 143 |
fun the_thms _ (SOME thms) = thms |
144 |
| the_thms name NONE = error ("Unknown theorem(s) " ^ quote name); |
|
4037 | 145 |
|
9564 | 146 |
fun single_thm _ [thm] = thm |
147 |
| single_thm name _ = error ("Single theorem expected " ^ quote name); |
|
148 |
||
15703 | 149 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
150 |
(* datatype interval *) |
15703 | 151 |
|
152 |
datatype interval = |
|
153 |
FromTo of int * int | |
|
154 |
From of int | |
|
155 |
Single of int; |
|
156 |
||
157 |
fun interval _ (FromTo (i, j)) = i upto j |
|
158 |
| interval n (From i) = i upto n |
|
159 |
| interval _ (Single i) = [i]; |
|
160 |
||
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
161 |
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
|
162 |
| 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
|
163 |
| 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
|
164 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
165 |
|
16493 | 166 |
(* datatype thmref *) |
167 |
||
168 |
datatype thmref = |
|
169 |
Name of string | |
|
18031 | 170 |
NameSelection of string * interval list | |
171 |
Fact of string; |
|
15703 | 172 |
|
16493 | 173 |
fun name_of_thmref (Name name) = name |
18031 | 174 |
| name_of_thmref (NameSelection (name, _)) = name |
18678 | 175 |
| 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
|
176 |
|
16493 | 177 |
fun map_name_of_thmref f (Name name) = Name (f name) |
18031 | 178 |
| map_name_of_thmref f (NameSelection (name, is)) = NameSelection (f name, is) |
179 |
| map_name_of_thmref _ thmref = thmref; |
|
16493 | 180 |
|
181 |
fun string_of_thmref (Name name) = name |
|
182 |
| string_of_thmref (NameSelection (name, is)) = |
|
18031 | 183 |
name ^ enclose "(" ")" (commas (map string_of_interval is)) |
18678 | 184 |
| 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
|
185 |
|
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 |
(* select_thm *) |
15703 | 188 |
|
16493 | 189 |
fun select_thm (Name _) thms = thms |
18031 | 190 |
| select_thm (Fact _) thms = thms |
16493 | 191 |
| select_thm (NameSelection (name, is)) thms = |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
192 |
let |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
193 |
val n = length thms; |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
194 |
fun select i = |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
195 |
if i < 1 orelse i > n then |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
196 |
error ("Bad subscript " ^ string_of_int i ^ " for " ^ |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
197 |
quote name ^ " (length " ^ string_of_int n ^ ")") |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
198 |
else List.nth (thms, i - 1); |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
199 |
in map select (List.concat (map (interval n) is)) end; |
15703 | 200 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
201 |
|
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
202 |
(* selections *) |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
203 |
|
16493 | 204 |
fun selections (name, [thm]) = [(Name name, thm)] |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
205 |
| selections (name, thms) = (1 upto length thms, thms) |> ListPair.map (fn (i, thm) => |
16493 | 206 |
(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
|
207 |
|
9564 | 208 |
|
9808 | 209 |
(* get_thm(s)_closure -- statically scoped versions *) |
9564 | 210 |
|
211 |
(*beware of proper order of evaluation!*) |
|
4922
03b81b6e1baa
added thms_closure: theory -> xstring -> tthm list option;
wenzelm
parents:
4853
diff
changeset
|
212 |
|
9564 | 213 |
fun lookup_thms thy = |
214 |
let |
|
16441 | 215 |
val thy_ref = Theory.self_ref thy; |
16493 | 216 |
val (space, thms) = #theorems (get_theorems thy); |
9564 | 217 |
in |
218 |
fn name => |
|
17221 | 219 |
Option.map (map (Thm.transfer (Theory.deref thy_ref))) (*dynamic identity*) |
17418 | 220 |
(Symtab.lookup thms (NameSpace.intern space name)) (*static content*) |
9564 | 221 |
end; |
3987 | 222 |
|
9564 | 223 |
fun get_thms_closure thy = |
16441 | 224 |
let val closures = map lookup_thms (thy :: Theory.ancestors_of thy) in |
16493 | 225 |
fn thmref => |
18031 | 226 |
let val name = name_of_thmref thmref; |
16493 | 227 |
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
|
228 |
end; |
9564 | 229 |
|
9808 | 230 |
fun get_thm_closure thy = |
231 |
let val get = get_thms_closure thy |
|
16493 | 232 |
in fn thmref => single_thm (name_of_thmref thmref) (get thmref) end; |
9808 | 233 |
|
9564 | 234 |
|
16441 | 235 |
(* get_thms etc. *) |
9564 | 236 |
|
16493 | 237 |
fun get_thms theory thmref = |
238 |
let val name = name_of_thmref thmref in |
|
239 |
get_first (fn thy => lookup_thms thy name) (theory :: Theory.ancestors_of theory) |
|
240 |
|> the_thms name |> select_thm thmref |> map (Thm.transfer theory) |
|
241 |
end; |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
242 |
|
16493 | 243 |
fun get_thmss thy thmrefs = List.concat (map (get_thms thy) thmrefs); |
244 |
fun get_thm thy thmref = single_thm (name_of_thmref thmref) (get_thms thy thmref); |
|
4783 | 245 |
|
17930
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
246 |
fun thm name = get_thm (the_context ()) (Name name); |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
247 |
fun thms name = get_thms (the_context ()) (Name name); |
e7160d70be1f
added thm(s) retrieval functions (from goals.ML);
wenzelm
parents:
17703
diff
changeset
|
248 |
|
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
249 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
250 |
(* thms_containing etc. *) |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
251 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
252 |
fun valid_thms thy (thmref, ths) = |
18678 | 253 |
(case try (get_thms thy) thmref of |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
254 |
NONE => false |
16132 | 255 |
| SOME ths' => Thm.eq_thms (ths, ths')); |
3987 | 256 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
257 |
fun thms_containing theory spec = |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
258 |
(theory :: Theory.ancestors_of theory) |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
259 |
|> map (fn thy => |
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
260 |
FactIndex.find (fact_index_of thy) spec |
16493 | 261 |
|> List.filter (fn (name, ths) => valid_thms theory (Name name, ths)) |
17496 | 262 |
|> gen_distinct (eq_fst (op =))) |
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
263 |
|> List.concat; |
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
264 |
|
13646 | 265 |
fun thms_containing_consts thy consts = |
15570 | 266 |
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
|
267 |
|> map (fn th => (Thm.name_of_thm th, th)); |
13646 | 268 |
|
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
269 |
|
16336 | 270 |
(* thms_of etc. *) |
15882
a191d2bee3e1
new thms_containing that searches for patterns instead of constants
kleing
parents:
15801
diff
changeset
|
271 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
272 |
fun thms_of thy = |
17162 | 273 |
let val thms = #2 (theorems_of thy) |
274 |
in map (fn th => (Thm.name_of_thm th, th)) (List.concat (map snd (Symtab.dest thms))) end; |
|
15703 | 275 |
|
16336 | 276 |
fun all_thms_of thy = List.concat (map thms_of (thy :: Theory.ancestors_of thy)); |
277 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
278 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
279 |
|
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
280 |
(** store theorems **) (*DESTRUCTIVE*) |
3987 | 281 |
|
16441 | 282 |
(* hiding -- affects current theory node only *) |
12695 | 283 |
|
13424 | 284 |
fun hide_thms fully names thy = |
12695 | 285 |
let |
16493 | 286 |
val r as ref {theorems = (space, thms), index} = get_theorems_ref thy; |
16132 | 287 |
val space' = fold (NameSpace.hide fully) names space; |
16336 | 288 |
in r := {theorems = (space', thms), index = index}; thy end; |
12695 | 289 |
|
290 |
||
4853 | 291 |
(* naming *) |
292 |
||
18614 | 293 |
fun gen_names _ len "" = replicate len "" |
294 |
| gen_names j len name = map (fn i => name ^ "_" ^ string_of_int i) (j + 1 upto j + len); |
|
4853 | 295 |
|
11998 | 296 |
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
|
297 |
|
16441 | 298 |
fun name_thm pre (name, thm) = |
299 |
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
|
300 |
|
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
301 |
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
|
302 |
| 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
|
303 |
|
16441 | 304 |
fun name_thmss name xs = |
305 |
(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
|
306 |
[([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
|
307 |
| _ => fst (fold_map (fn (ys, z) => fn i => |
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
308 |
((map (name_thm true) (gen_names i (length ys) name ~~ ys), z), i + length ys)) xs 0)); |
4853 | 309 |
|
310 |
||
11998 | 311 |
(* enter_thms *) |
4853 | 312 |
|
7470
9f67ca1e03dc
eliminated default_name (thms no longer stored for name "");
wenzelm
parents:
7405
diff
changeset
|
313 |
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
|
314 |
fun warn_same name = warning ("Theorem database already contains a copy of " ^ quote name); |
3987 | 315 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
316 |
fun enter_thms _ _ app_att ("", thms) thy = app_att (thy, thms) |> swap |
16441 | 317 |
| 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
|
318 |
let |
16441 | 319 |
val name = Sign.full_name thy bname; |
320 |
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
|
321 |
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
|
322 |
val space' = Sign.declare_name thy' name space; |
17418 | 323 |
val theorems' = Symtab.update (name, thms') theorems; |
18031 | 324 |
val index' = FactIndex.add_global (name, thms') index; |
13274 | 325 |
in |
17418 | 326 |
(case Symtab.lookup theorems name of |
15531 | 327 |
NONE => () |
16441 | 328 |
| SOME thms'' => |
329 |
if Thm.eq_thms (thms', thms'') then warn_same name |
|
13274 | 330 |
else warn_overwrite name); |
16336 | 331 |
r := {theorems = (space', theorems'), index = index'}; |
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
332 |
(thms', thy') |
11998 | 333 |
end; |
3987 | 334 |
|
16023
66561f6814bd
added string_of_thmref, selections, fact_index_of, valid_thms;
wenzelm
parents:
15975
diff
changeset
|
335 |
|
6091 | 336 |
(* add_thms(s) *) |
4853 | 337 |
|
16441 | 338 |
fun add_thms_atts pre_name ((bname, thms), atts) = |
18728 | 339 |
enter_thms pre_name (name_thms false) (foldl_map (Thm.theory_attributes atts)) (bname, thms); |
4853 | 340 |
|
18377 | 341 |
fun gen_add_thmss pre_name = |
342 |
fold_map (add_thms_atts pre_name); |
|
5907 | 343 |
|
12235
5fa04fc9b254
Further restructuring of theorem naming functions.
berghofe
parents:
12138
diff
changeset
|
344 |
fun gen_add_thms pre_name args = |
18377 | 345 |
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
|
346 |
|
12872
0855c3ab2047
Theorems are only "pre-named" if the do not already have names.
berghofe
parents:
12711
diff
changeset
|
347 |
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
|
348 |
val add_thms = gen_add_thms (name_thms true); |
5907 | 349 |
|
350 |
||
14564 | 351 |
(* note_thmss(_i) *) |
5907 | 352 |
|
9192 | 353 |
local |
12711 | 354 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
355 |
fun gen_note_thss get kind_att ((bname, more_atts), ths_atts) thy = |
12711 | 356 |
let |
18728 | 357 |
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
|
358 |
val (thms, thy') = thy |> enter_thms |
16441 | 359 |
name_thmss (name_thms false) (apsnd List.concat o foldl_map app) |
12711 | 360 |
(bname, map (fn (ths, atts) => (get thy ths, atts @ more_atts @ [kind_att])) ths_atts); |
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
361 |
in ((bname, thms), thy') end; |
12711 | 362 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
363 |
fun gen_note_thmss get kind_att = |
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
364 |
fold_map (gen_note_thss get kind_att); |
12711 | 365 |
|
9192 | 366 |
in |
12711 | 367 |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
368 |
val note_thmss = gen_note_thmss get_thms; |
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
369 |
val note_thmss_i = gen_note_thmss (K I); |
12711 | 370 |
|
9192 | 371 |
end; |
5280 | 372 |
|
373 |
||
6091 | 374 |
(* store_thm *) |
5280 | 375 |
|
11998 | 376 |
fun store_thm ((bname, thm), atts) thy = |
18377 | 377 |
let val ([th'], thy') = add_thms_atts (name_thms true) ((bname, [thm]), atts) thy |
18358 | 378 |
in (th', thy') end; |
3987 | 379 |
|
380 |
||
16441 | 381 |
(* smart_store_thms(_open) *) |
3987 | 382 |
|
16441 | 383 |
local |
384 |
||
385 |
fun smart_store _ (name, []) = |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
386 |
error ("Cannot store empty list of theorems: " ^ quote name) |
16441 | 387 |
| smart_store name_thm (name, [thm]) = |
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
388 |
fst (enter_thms (name_thm true) (name_thm false) I (name, [thm]) (Thm.theory_of_thm thm)) |
16441 | 389 |
| smart_store name_thm (name, thms) = |
7405 | 390 |
let |
16441 | 391 |
fun merge (thy, th) = Theory.merge (thy, Thm.theory_of_thm th); |
392 |
val thy = Library.foldl merge (Thm.theory_of_thm (hd thms), tl thms); |
|
18418
bf448d999b7e
re-arranged tuples (theory * 'a) to ('a * theory) in Pure
haftmann
parents:
18377
diff
changeset
|
393 |
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
|
394 |
|
16441 | 395 |
in |
396 |
||
397 |
val smart_store_thms = smart_store name_thms; |
|
398 |
val smart_store_thms_open = smart_store (K (K I)); |
|
399 |
||
400 |
end; |
|
3987 | 401 |
|
402 |
||
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
403 |
(* forall_elim_var(s) -- belongs to drule.ML *) |
7899 | 404 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
405 |
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
|
406 |
let |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
407 |
val {thy, tpairs, prop, ...} = Thm.rep_thm th; |
16787 | 408 |
val add_used = Term.fold_aterms |
409 |
(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
|
410 |
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
|
411 |
val vars = strip_vars prop; |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
412 |
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
|
413 |
|> 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
|
414 |
in fold Thm.forall_elim cvars th end; |
7899 | 415 |
|
16722
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
416 |
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
|
417 |
|
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
418 |
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
|
419 |
(fn Const ("all", _) $ Abs (a, T, _) => [(a, T)] |
040728f6a103
tuned forall_elim_var(s): avoid expensive Term.add_vars;
wenzelm
parents:
16536
diff
changeset
|
420 |
| _ => raise THM ("forall_elim_vars", i, [th])) i th; |
7899 | 421 |
|
422 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
423 |
(* store axioms as theorems *) |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
424 |
|
4853 | 425 |
local |
17418 | 426 |
fun get_ax thy (name, _) = Thm.get_axiom_i thy (Sign.full_name thy name); |
427 |
fun get_axs thy named_axs = map (forall_elim_vars 0 o get_ax thy) named_axs; |
|
18377 | 428 |
fun add_single add ((name, ax), atts) thy = |
4853 | 429 |
let |
11998 | 430 |
val named_ax = [(name, ax)]; |
7753 | 431 |
val thy' = add named_ax thy; |
432 |
val thm = hd (get_axs thy' named_ax); |
|
18377 | 433 |
in apfst hd (gen_add_thms (K I) [((name, thm), atts)] thy') end; |
434 |
fun add_multi add ((name, axs), atts) thy = |
|
7753 | 435 |
let |
436 |
val named_axs = name_multi name axs; |
|
4853 | 437 |
val thy' = add named_axs thy; |
7753 | 438 |
val thms = get_axs thy' named_axs; |
18377 | 439 |
in apfst hd (gen_add_thmss (K I) [((name, thms), atts)] thy') end; |
440 |
fun add_singles add = fold_map (add_single add); |
|
441 |
fun add_multis add = fold_map (add_multi add); |
|
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; |
|
18377 | 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 |
|
18713 | 459 |
fun generic_setup NONE = (fn thy => thy |> Context.setup ()) |
460 |
| 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
|
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)] |
18713 | 499 |
|> Theory.add_nonterminals Syntax.basic_nonterms |
3987 | 500 |
|> Theory.add_syntax |
18713 | 501 |
[("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3%_./ _)", [0, 3], 3)), |
502 |
("_abs", "'a", NoSyn), |
|
503 |
("", "'a => args", Delimfix "_"), |
|
504 |
("_args", "['a, args] => args", Delimfix "_,/ _"), |
|
505 |
("", "id => idt", Delimfix "_"), |
|
506 |
("_idtdummy", "idt", Delimfix "'_"), |
|
507 |
("_idtyp", "[id, type] => idt", Mixfix ("_::_", [], 0)), |
|
508 |
("_idtypdummy", "type => idt", Mixfix ("'_()::_", [], 0)), |
|
509 |
("", "idt => idt", Delimfix "'(_')"), |
|
510 |
("", "idt => idts", Delimfix "_"), |
|
511 |
("_idts", "[idt, idts] => idts", Mixfix ("_/ _", [1, 0], 0)), |
|
512 |
("", "idt => pttrn", Delimfix "_"), |
|
513 |
("", "pttrn => pttrns", Delimfix "_"), |
|
514 |
("_pttrns", "[pttrn, pttrns] => pttrns", Mixfix ("_/ _", [1, 0], 0)), |
|
515 |
("", "id => aprop", Delimfix "_"), |
|
516 |
("", "longid => aprop", Delimfix "_"), |
|
517 |
("", "var => aprop", Delimfix "_"), |
|
518 |
("_DDDOT", "aprop", Delimfix "..."), |
|
519 |
("_aprop", "aprop => prop", Delimfix "PROP _"), |
|
520 |
("_asm", "prop => asms", Delimfix "_"), |
|
521 |
("_asms", "[prop, asms] => asms", Delimfix "_;/ _"), |
|
522 |
("_bigimpl", "[asms, prop] => prop", Mixfix ("((3[| _ |])/ ==> _)", [0, 1], 1)), |
|
523 |
("_ofclass", "[type, logic] => prop", Delimfix "(1OFCLASS/(1'(_,/ _')))"), |
|
524 |
("_mk_ofclass", "_", NoSyn), |
|
525 |
("_TYPE", "type => logic", Delimfix "(1TYPE/(1'(_')))"), |
|
526 |
("", "id => logic", Delimfix "_"), |
|
527 |
("", "longid => logic", Delimfix "_"), |
|
528 |
("", "var => logic", Delimfix "_"), |
|
529 |
("_DDDOT", "logic", Delimfix "..."), |
|
530 |
("_constify", "num => num_const", Delimfix "_"), |
|
531 |
("_indexnum", "num_const => index", Delimfix "\\<^sub>_"), |
|
532 |
("_index", "logic => index", Delimfix "(00\\<^bsub>_\\<^esub>)"), |
|
533 |
("_indexdefault", "index", Delimfix ""), |
|
534 |
("_indexvar", "index", Delimfix "'\\<index>"), |
|
535 |
("_struct", "index => logic", Mixfix ("\\<struct>_", [1000], 1000)), |
|
536 |
("==>", "prop => prop => prop", Delimfix "op ==>"), |
|
537 |
(Term.dummy_patternN, "aprop", Delimfix "'_")] |
|
538 |
|> Theory.add_syntax Syntax.appl_syntax |
|
539 |
|> Theory.add_modesyntax (Symbol.xsymbolsN, true) |
|
540 |
[("fun", "[type, type] => type", Mixfix ("(_/ \\<Rightarrow> _)", [1, 0], 0)), |
|
541 |
("_bracket", "[types, type] => type", Mixfix ("([_]/ \\<Rightarrow> _)", [0, 0], 0)), |
|
542 |
("_ofsort", "[tid, sort] => type", Mixfix ("_\\<Colon>_", [1000, 0], 1000)), |
|
543 |
("_constrain", "['a, type] => 'a", Mixfix ("_\\<Colon>_", [4, 0], 3)), |
|
544 |
("_idtyp", "[id, type] => idt", Mixfix ("_\\<Colon>_", [], 0)), |
|
545 |
("_idtypdummy", "type => idt", Mixfix ("'_()\\<Colon>_", [], 0)), |
|
546 |
("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3)), |
|
547 |
("==", "['a, 'a] => prop", InfixrName ("\\<equiv>", 2)), |
|
548 |
("!!", "[idts, prop] => prop", Mixfix ("(3\\<And>_./ _)", [0, 0], 0)), |
|
549 |
("==>", "[prop, prop] => prop", InfixrName ("\\<Longrightarrow>", 1)), |
|
550 |
("_DDDOT", "aprop", Delimfix "\\<dots>"), |
|
551 |
("_bigimpl", "[asms, prop] => prop", Mixfix ("((1\\<lbrakk>_\\<rbrakk>)/ \\<Longrightarrow> _)", [0, 1], 1)), |
|
552 |
("_DDDOT", "logic", Delimfix "\\<dots>")] |
|
553 |
|> Theory.add_modesyntax ("", false) |
|
554 |
[("prop", "prop => prop", Mixfix ("_", [0], 0)), |
|
555 |
("_meta_conjunction", "prop => prop => prop", InfixrName ("&&", 2))] |
|
556 |
|> Theory.add_modesyntax ("HTML", false) |
|
557 |
[("_lambda", "[pttrns, 'a] => logic", Mixfix ("(3\\<lambda>_./ _)", [0, 3], 3))] |
|
558 |
|> Theory.add_trfuns Syntax.pure_trfuns |
|
559 |
|> Theory.add_trfunsT Syntax.pure_trfunsT |
|
3987 | 560 |
|> Theory.add_consts |
16441 | 561 |
[("==", "'a => 'a => prop", InfixrName ("==", 2)), |
562 |
("==>", "prop => prop => prop", Mixfix ("(_/ ==> _)", [2, 1], 1)), |
|
3987 | 563 |
("all", "('a => prop) => prop", Binder ("!!", 0, 0)), |
18031 | 564 |
("prop", "prop => prop", NoSyn), |
6547 | 565 |
("TYPE", "'a itself", NoSyn), |
9534 | 566 |
(Term.dummy_patternN, "'a", Delimfix "'_")] |
14223
0ee05eef881b
Added support for making constants final, that is, ensuring that no
skalberg
parents:
13800
diff
changeset
|
567 |
|> Theory.add_finals_i false |
16441 | 568 |
[Const ("==", [aT, aT] ---> propT), |
569 |
Const ("==>", [propT, propT] ---> propT), |
|
570 |
Const ("all", (aT --> propT) --> propT), |
|
17703 | 571 |
Const ("TYPE", a_itselfT), |
572 |
Const (Term.dummy_patternN, aT)] |
|
18713 | 573 |
|> Theory.add_syntax |
574 |
[] |
|
16441 | 575 |
|> Sign.local_path |
18377 | 576 |
|> (add_defs_i false o map Thm.no_attributes) |
577 |
[("prop_def", Logic.mk_equals (Logic.protect A, A))] |> snd |
|
578 |
|> add_thmss [(("nothing", []), [])] |> snd |
|
11516
a0633bdcd015
Added equality axioms and initialization of proof term package.
berghofe
parents:
10667
diff
changeset
|
579 |
|> Theory.add_axioms_i Proofterm.equality_axms |
16493 | 580 |
|> Theory.end_theory; |
3987 | 581 |
|
5091 | 582 |
structure ProtoPure = |
583 |
struct |
|
584 |
val thy = proto_pure; |
|
18031 | 585 |
val prop_def = get_axiom thy "prop_def"; |
5091 | 586 |
end; |
3987 | 587 |
|
588 |
end; |
|
589 |
||
4022
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
590 |
structure BasicPureThy: BASIC_PURE_THY = PureThy; |
0770a19c48d3
added ignored_consts, thms_containing, add_store_axioms(_i),
wenzelm
parents:
4013
diff
changeset
|
591 |
open BasicPureThy; |