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