author | wenzelm |
Mon, 09 Mar 1998 16:08:06 +0100 | |
changeset 4691 | b159f5d98ceb |
parent 4627 | ae95666c71cc |
child 4844 | 4fb63c77f2df |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/sign.ML |
0 | 2 |
ID: $Id$ |
251 | 3 |
Author: Lawrence C Paulson and Markus Wenzel |
0 | 4 |
|
251 | 5 |
The abstract type "sg" of signatures. |
0 | 6 |
*) |
7 |
||
3956 | 8 |
(*base names*) |
9 |
type bstring = string; |
|
10 |
type bclass = class; |
|
11 |
(*external forms -- partially qualified names*) |
|
3805 | 12 |
type xstring = string; |
13 |
type xclass = class; |
|
14 |
type xsort = sort; |
|
15 |
type xtyp = typ; |
|
16 |
type xterm = term; |
|
17 |
||
19 | 18 |
signature SIGN = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
19 |
sig |
1501 | 20 |
type sg |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
21 |
type sg_ref |
4256 | 22 |
type data |
2197 | 23 |
val rep_sg: sg -> |
3975 | 24 |
{self: sg_ref, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
25 |
tsig: Type.type_sig, |
2197 | 26 |
const_tab: typ Symtab.table, |
27 |
syn: Syntax.syntax, |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
28 |
path: string list, |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
29 |
spaces: (string * NameSpace.T) list, |
4256 | 30 |
data: data} |
3975 | 31 |
val name_of: sg -> string |
32 |
val stamp_names_of: sg -> string list |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
33 |
val tsig_of: sg -> Type.type_sig |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
34 |
val deref: sg_ref -> sg |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
35 |
val self_ref: sg -> sg_ref |
1501 | 36 |
val subsig: sg * sg -> bool |
37 |
val eq_sg: sg * sg -> bool |
|
38 |
val same_sg: sg * sg -> bool |
|
39 |
val is_draft: sg -> bool |
|
40 |
val const_type: sg -> string -> typ option |
|
41 |
val classes: sg -> class list |
|
42 |
val subsort: sg -> sort * sort -> bool |
|
43 |
val nodup_Vars: term -> unit |
|
44 |
val norm_sort: sg -> sort -> sort |
|
45 |
val nonempty_sort: sg -> sort list -> sort -> bool |
|
4568 | 46 |
val of_sort: sg -> typ * sort -> bool |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
47 |
val long_names: bool ref |
3810 | 48 |
val classK: string |
49 |
val typeK: string |
|
50 |
val constK: string |
|
3956 | 51 |
val full_name: sg -> bstring -> string |
52 |
val base_name: string -> bstring |
|
3810 | 53 |
val intern: sg -> string -> xstring -> string |
54 |
val extern: sg -> string -> string -> xstring |
|
3937 | 55 |
val cond_extern: sg -> string -> string -> xstring |
3805 | 56 |
val intern_class: sg -> xclass -> class |
57 |
val intern_tycon: sg -> xstring -> string |
|
58 |
val intern_const: sg -> xstring -> string |
|
3937 | 59 |
val intern_sort: sg -> xsort -> sort |
60 |
val intern_typ: sg -> xtyp -> typ |
|
61 |
val intern_term: sg -> xterm -> term |
|
62 |
val intern_tycons: sg -> xtyp -> typ |
|
1501 | 63 |
val pretty_sg: sg -> Pretty.T |
4051 | 64 |
val str_of_sg: sg -> string |
1501 | 65 |
val pprint_sg: sg -> pprint_args -> unit |
66 |
val pretty_term: sg -> term -> Pretty.T |
|
67 |
val pretty_typ: sg -> typ -> Pretty.T |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
68 |
val pretty_sort: sg -> sort -> Pretty.T |
4249 | 69 |
val pretty_classrel: sg -> class * class -> Pretty.T |
70 |
val pretty_arity: sg -> string * sort list * sort -> Pretty.T |
|
1501 | 71 |
val string_of_term: sg -> term -> string |
72 |
val string_of_typ: sg -> typ -> string |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
73 |
val string_of_sort: sg -> sort -> string |
3855 | 74 |
val str_of_sort: sg -> sort -> string |
75 |
val str_of_classrel: sg -> class * class -> string |
|
76 |
val str_of_arity: sg -> string * sort list * sort -> string |
|
1501 | 77 |
val pprint_term: sg -> term -> pprint_args -> unit |
78 |
val pprint_typ: sg -> typ -> pprint_args -> unit |
|
79 |
val certify_typ: sg -> typ -> typ |
|
80 |
val certify_term: sg -> term -> term * typ * int |
|
4227 | 81 |
val read_raw_typ: sg * (indexname -> sort option) -> string -> typ |
1501 | 82 |
val read_typ: sg * (indexname -> sort option) -> string -> typ |
83 |
val infer_types: sg -> (indexname -> typ option) -> |
|
84 |
(indexname -> sort option) -> string list -> bool |
|
4249 | 85 |
-> xterm list * typ -> term * (indexname * typ) list |
86 |
val infer_types_simult: sg -> (indexname -> typ option) -> |
|
87 |
(indexname -> sort option) -> string list -> bool |
|
88 |
-> (xterm list * typ) list -> term list * (indexname * typ) list |
|
3956 | 89 |
val add_classes: (bclass * xclass list) list -> sg -> sg |
90 |
val add_classes_i: (bclass * class list) list -> sg -> sg |
|
3805 | 91 |
val add_classrel: (xclass * xclass) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
92 |
val add_classrel_i: (class * class) list -> sg -> sg |
3805 | 93 |
val add_defsort: xsort -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
94 |
val add_defsort_i: sort -> sg -> sg |
3956 | 95 |
val add_types: (bstring * int * mixfix) list -> sg -> sg |
96 |
val add_tyabbrs: (bstring * string list * string * mixfix) list -> sg -> sg |
|
97 |
val add_tyabbrs_i: (bstring * string list * typ * mixfix) list -> sg -> sg |
|
3805 | 98 |
val add_arities: (xstring * xsort list * xsort) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
99 |
val add_arities_i: (string * sort list * sort) list -> sg -> sg |
3956 | 100 |
val add_consts: (bstring * string * mixfix) list -> sg -> sg |
101 |
val add_consts_i: (bstring * typ * mixfix) list -> sg -> sg |
|
102 |
val add_syntax: (bstring * string * mixfix) list -> sg -> sg |
|
103 |
val add_syntax_i: (bstring * typ * mixfix) list -> sg -> sg |
|
104 |
val add_modesyntax: (string * bool) * (bstring * string * mixfix) list -> sg -> sg |
|
105 |
val add_modesyntax_i: (string * bool) * (bstring * typ * mixfix) list -> sg -> sg |
|
1501 | 106 |
val add_trfuns: |
4344 | 107 |
(string * (ast list -> ast)) list * |
108 |
(string * (term list -> term)) list * |
|
109 |
(string * (term list -> term)) list * |
|
110 |
(string * (ast list -> ast)) list -> sg -> sg |
|
2385 | 111 |
val add_trfunsT: |
4344 | 112 |
(string * (bool -> typ -> term list -> term)) list -> sg -> sg |
2693 | 113 |
val add_tokentrfuns: |
114 |
(string * string * (string -> string * int)) list -> sg -> sg |
|
4619 | 115 |
val add_trrules: (xstring * string) Syntax.trrule list -> sg -> sg |
1810
0eef167ebe1b
Translation infixes <->, etc., no longer available at top-level
paulson
parents:
1580
diff
changeset
|
116 |
val add_trrules_i: ast Syntax.trrule list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
117 |
val add_path: string -> sg -> sg |
3810 | 118 |
val add_space: string * string list -> sg -> sg |
1501 | 119 |
val add_name: string -> sg -> sg |
4256 | 120 |
val data_kinds: data -> string list |
4124 | 121 |
val init_data: string * (object * (object -> object) * |
4256 | 122 |
(object * object -> object) * (sg -> object -> unit)) -> sg -> sg |
4124 | 123 |
val get_data: sg -> string -> object |
124 |
val put_data: string * object -> sg -> sg |
|
3877 | 125 |
val print_data: sg -> string -> unit |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
126 |
val merge_refs: sg_ref * sg_ref -> sg_ref |
4627 | 127 |
val merge: sg * sg -> sg |
3975 | 128 |
val prep_ext: sg -> sg |
4627 | 129 |
val nontriv_merge: sg * sg -> sg |
3995 | 130 |
val pre_pure: sg |
1501 | 131 |
val const_of_class: class -> string |
132 |
val class_of_const: string -> class |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
133 |
end; |
0 | 134 |
|
4249 | 135 |
structure Sign: SIGN = |
143 | 136 |
struct |
0 | 137 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
138 |
|
251 | 139 |
(** datatype sg **) |
140 |
||
4256 | 141 |
(* types sg, data, sg_ref *) |
142 |
||
19 | 143 |
datatype sg = |
3975 | 144 |
Sg of |
145 |
{id: string ref, (*id*) |
|
146 |
stamps: string ref list} * (*unique theory indentifier*) |
|
147 |
{self: sg_ref, (*mutable self reference*) |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
148 |
tsig: Type.type_sig, (*order-sorted signature of types*) |
3805 | 149 |
const_tab: typ Symtab.table, (*type schemes of constants*) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
150 |
syn: Syntax.syntax, (*syntax for parsing and printing*) |
3975 | 151 |
path: string list, (*current name space entry prefix*) |
152 |
spaces: (string * NameSpace.T) list, (*name spaces for consts, types etc.*) |
|
4256 | 153 |
data: data} (*anytype data*) |
154 |
and data = |
|
155 |
Data of |
|
156 |
(object * (*value*) |
|
157 |
((object -> object) * (*prepare extend method*) |
|
158 |
(object * object -> object) * (*merge and prepare extend method*) |
|
159 |
(sg -> object -> unit))) (*print method*) |
|
160 |
Symtab.table |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
161 |
and sg_ref = |
4256 | 162 |
SgRef of sg ref option |
0 | 163 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
164 |
(*make signature*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
165 |
fun make_sign (id, self, tsig, const_tab, syn, path, spaces, data, stamps) = |
3975 | 166 |
Sg ({id = id, stamps = stamps}, {self = self, tsig = tsig, const_tab = const_tab, |
167 |
syn = syn, path = path, spaces = spaces, data = data}); |
|
168 |
||
169 |
||
4256 | 170 |
(* basic operations *) |
3975 | 171 |
|
172 |
fun rep_sg (Sg (_, args)) = args; |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
173 |
|
3975 | 174 |
(*show stamps*) |
175 |
fun stamp_names_of (Sg ({stamps, ...}, _)) = rev (map ! stamps); |
|
176 |
fun pretty_sg sg = Pretty.str_list "{" "}" (stamp_names_of sg); |
|
177 |
val str_of_sg = Pretty.str_of o pretty_sg; |
|
178 |
val pprint_sg = Pretty.pprint o pretty_sg; |
|
179 |
||
402 | 180 |
val tsig_of = #tsig o rep_sg; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
181 |
|
3975 | 182 |
fun const_type (Sg (_, {const_tab, ...})) c = Symtab.lookup (const_tab, c); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
183 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
184 |
|
3995 | 185 |
(* id and self *) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
186 |
|
3975 | 187 |
fun check_stale (sg as Sg ({id, ...}, |
188 |
{self = SgRef (Some (ref (Sg ({id = id', ...}, _)))), ...})) = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
189 |
if id = id' then sg |
3975 | 190 |
else raise TERM ("Stale signature: " ^ str_of_sg sg, []) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
191 |
| check_stale _ = sys_error "Sign.check_stale"; |
0 | 192 |
|
3995 | 193 |
fun self_ref (sg as Sg (_, {self, ...})) = (check_stale sg; self); |
194 |
||
195 |
fun deref (SgRef (Some (ref sg))) = sg |
|
196 |
| deref (SgRef None) = sys_error "Sign.deref"; |
|
197 |
||
3975 | 198 |
fun name_of (sg as Sg ({id = ref name, ...}, _)) = |
199 |
if name = "" orelse name = "#" then |
|
200 |
raise TERM ("Nameless signature " ^ str_of_sg sg, []) |
|
201 |
else name; |
|
202 |
||
206
0d624d1ba9cc
added subsig: sg * sg -> bool to test if one signature is contained in another.
nipkow
parents:
200
diff
changeset
|
203 |
|
2979 | 204 |
(* inclusion and equality *) |
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
205 |
|
2185 | 206 |
local |
207 |
(*avoiding polymorphic equality: factor 10 speedup*) |
|
208 |
fun mem_stamp (_:string ref, []) = false |
|
209 |
| mem_stamp (x, y :: ys) = x = y orelse mem_stamp (x, ys); |
|
210 |
||
211 |
fun subset_stamp ([], ys) = true |
|
212 |
| subset_stamp (x :: xs, ys) = |
|
213 |
mem_stamp (x, ys) andalso subset_stamp (xs, ys); |
|
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
214 |
|
2185 | 215 |
(*fast partial test*) |
216 |
fun fast_sub ([]: string ref list, _) = true |
|
217 |
| fast_sub (_, []) = false |
|
218 |
| fast_sub (x :: xs, y :: ys) = |
|
219 |
if x = y then fast_sub (xs, ys) |
|
220 |
else fast_sub (x :: xs, ys); |
|
221 |
in |
|
3975 | 222 |
fun eq_sg (sg1 as Sg ({id = id1, ...}, _), sg2 as Sg ({id = id2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
223 |
(check_stale sg1; check_stale sg2; id1 = id2); |
2185 | 224 |
|
3975 | 225 |
fun subsig (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
226 |
eq_sg (sg1, sg2) orelse subset_stamp (s1, s2); |
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
227 |
|
3975 | 228 |
fun fast_subsig (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
229 |
eq_sg (sg1, sg2) orelse fast_sub (s1, s2); |
2185 | 230 |
end; |
231 |
||
402 | 232 |
|
2185 | 233 |
(*test if same theory names are contained in signatures' stamps, |
234 |
i.e. if signatures belong to same theory but not necessarily to the |
|
235 |
same version of it*) |
|
3975 | 236 |
fun same_sg (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
237 |
eq_sg (sg1, sg2) orelse eq_set_string (pairself (map (op !)) (s1, s2)); |
2185 | 238 |
|
239 |
(*test for drafts*) |
|
3975 | 240 |
fun is_draft (Sg ({stamps = ref "#" :: _, ...}, _)) = true |
386 | 241 |
| is_draft _ = false; |
242 |
||
0 | 243 |
|
4568 | 244 |
(* classes and sorts *) |
245 |
||
246 |
val classes = #classes o Type.rep_tsig o tsig_of; |
|
247 |
||
248 |
val subsort = Type.subsort o tsig_of; |
|
249 |
val norm_sort = Type.norm_sort o tsig_of; |
|
250 |
val nonempty_sort = Type.nonempty_sort o tsig_of; |
|
251 |
||
252 |
fun of_sort (Sg (_, {tsig, ...})) = |
|
253 |
Sorts.of_sort (#classrel (Type.rep_tsig tsig)) (#arities (Type.rep_tsig tsig)); |
|
254 |
||
255 |
||
4256 | 256 |
|
257 |
(** signature data **) |
|
258 |
||
259 |
(* errors *) |
|
260 |
||
4261 | 261 |
fun of_theory sg = "\nof theory " ^ str_of_sg sg; |
4256 | 262 |
|
263 |
fun err_method name kind = |
|
264 |
error ("Error while invoking " ^ quote kind ^ " method " ^ name); |
|
265 |
||
266 |
fun err_dup_init sg kind = |
|
267 |
error ("Duplicate initialization of " ^ quote kind ^ " data" ^ of_theory sg); |
|
268 |
||
269 |
fun err_uninit sg kind = |
|
270 |
error ("Tried to access uninitialized " ^ quote kind ^ " data" ^ of_theory sg); |
|
271 |
||
272 |
||
273 |
(* prepare data *) |
|
274 |
||
4489 | 275 |
val empty_data = Data Symtab.empty; |
4256 | 276 |
|
277 |
fun merge_data (Data tab1, Data tab2) = |
|
278 |
let |
|
279 |
val data1 = Symtab.dest tab1; |
|
280 |
val data2 = Symtab.dest tab2; |
|
281 |
val all_data = data1 @ data2; |
|
282 |
val kinds = distinct (map fst all_data); |
|
283 |
||
284 |
fun entry data kind = |
|
285 |
(case assoc (data, kind) of |
|
286 |
None => [] |
|
287 |
| Some x => [(kind, x)]); |
|
288 |
||
289 |
fun merge_entries [(kind, (e, mths as (ext, _, _)))] = |
|
290 |
(kind, (ext e handle _ => err_method "prep_ext" kind, mths)) |
|
291 |
| merge_entries [(kind, (e1, mths as (_, mrg, _))), (_, (e2, _))] = |
|
292 |
(kind, (mrg (e1, e2) handle _ => err_method "merge" kind, mths)) |
|
293 |
| merge_entries _ = sys_error "merge_entries"; |
|
294 |
||
295 |
val data = map (fn k => merge_entries (entry data1 k @ entry data2 k)) kinds; |
|
296 |
in Data (Symtab.make data) end; |
|
297 |
||
298 |
fun prep_ext_data data = merge_data (data, empty_data); |
|
299 |
||
300 |
fun init_data_sg sg (Data tab) kind e ext mrg prt = |
|
301 |
Data (Symtab.update_new ((kind, (e, (ext, mrg, prt))), tab)) |
|
4489 | 302 |
handle Symtab.DUP _ => err_dup_init sg kind; |
4256 | 303 |
|
304 |
||
305 |
(* access data *) |
|
306 |
||
307 |
fun data_kinds (Data tab) = map fst (Symtab.dest tab); |
|
308 |
||
309 |
fun lookup_data sg tab kind = |
|
310 |
(case Symtab.lookup (tab, kind) of |
|
311 |
Some x => x |
|
312 |
| None => err_uninit sg kind); |
|
313 |
||
314 |
fun get_data (sg as Sg (_, {data = Data tab, ...})) kind = |
|
315 |
fst (lookup_data sg tab kind); |
|
316 |
||
317 |
fun print_data (sg as Sg (_, {data = Data tab, ...})) kind = |
|
318 |
let val (e, (_, _, prt)) = lookup_data sg tab kind |
|
319 |
in prt sg e handle _ => err_method ("print" ^ of_theory sg) kind end; |
|
320 |
||
321 |
fun put_data_sg sg (Data tab) kind e = |
|
322 |
Data (Symtab.update ((kind, (e, snd (lookup_data sg tab kind))), tab)); |
|
323 |
||
324 |
||
325 |
||
326 |
(** build signatures **) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
327 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
328 |
fun ext_stamps stamps (id as ref name) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
329 |
let val stmps = (case stamps of ref "#" :: ss => ss | ss => ss) in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
330 |
if exists (equal name o !) stmps then |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
331 |
error ("Theory already contains a " ^ quote name ^ " component") |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
332 |
else id :: stmps |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
333 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
334 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
335 |
fun create_sign self stamps name (syn, tsig, ctab, (path, spaces), data) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
336 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
337 |
val id = ref name; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
338 |
val sign = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
339 |
make_sign (id, self, tsig, ctab, syn, path, spaces, data, ext_stamps stamps id); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
340 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
341 |
(case self of |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
342 |
SgRef (Some r) => r := sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
343 |
| _ => sys_error "Sign.create_sign"); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
344 |
sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
345 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
346 |
|
3975 | 347 |
fun extend_sign keep extfun name decls |
348 |
(sg as Sg ({id = _, stamps}, {self, tsig, const_tab, syn, path, spaces, data})) = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
349 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
350 |
val _ = check_stale sg; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
351 |
val (self', data') = |
3975 | 352 |
if is_draft sg andalso keep then (self, data) |
4256 | 353 |
else (SgRef (Some (ref sg)), prep_ext_data data); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
354 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
355 |
create_sign self' stamps name |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
356 |
(extfun (syn, tsig, const_tab, (path, spaces), data') decls) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
357 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
358 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
359 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
360 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
361 |
(** name spaces **) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
362 |
|
3805 | 363 |
(*prune names on output by default*) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
364 |
val long_names = ref false; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
365 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
366 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
367 |
(* kinds *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
368 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
369 |
val classK = "class"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
370 |
val typeK = "type"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
371 |
val constK = "const"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
372 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
373 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
374 |
(* add and retrieve names *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
375 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
376 |
fun space_of spaces kind = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
377 |
if_none (assoc (spaces, kind)) NameSpace.empty; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
378 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
379 |
(*input and output of qualified names*) |
3995 | 380 |
fun intrn spaces kind = NameSpace.intern (space_of spaces kind); |
381 |
fun extrn spaces kind = NameSpace.extern (space_of spaces kind); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
382 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
383 |
(*add names*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
384 |
fun add_names spaces kind names = |
4489 | 385 |
let val space' = NameSpace.extend (space_of spaces kind, names) in |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
386 |
overwrite (spaces, (kind, space')) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
387 |
end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
388 |
|
3810 | 389 |
(*make full names*) |
3937 | 390 |
fun full path name = |
4489 | 391 |
if name = "" then error "Attempt to declare empty name \"\"" |
392 |
else if NameSpace.qualified name then |
|
3937 | 393 |
error ("Attempt to declare qualified name " ^ quote name) |
394 |
else NameSpace.pack (path @ [name]); |
|
395 |
||
396 |
(*base name*) |
|
397 |
val base_name = NameSpace.base; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
398 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
399 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
400 |
(* intern / extern names *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
401 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
402 |
local |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
403 |
(*prepare mapping of names*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
404 |
fun mapping f add_xs t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
405 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
406 |
fun f' x = let val y = f x in if x = y then None else Some (x, y) end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
407 |
val table = mapfilter f' (add_xs (t, [])); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
408 |
fun lookup x = if_none (assoc (table, x)) x; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
409 |
in lookup end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
410 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
411 |
(*intern / extern typ*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
412 |
fun trn_typ trn T = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
413 |
T |> map_typ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
414 |
(mapping (trn classK) add_typ_classes T) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
415 |
(mapping (trn typeK) add_typ_tycons T); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
416 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
417 |
(*intern / extern term*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
418 |
fun trn_term trn t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
419 |
t |> map_term |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
420 |
(mapping (trn classK) add_term_classes t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
421 |
(mapping (trn typeK) add_term_tycons t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
422 |
(mapping (trn constK) add_term_consts t); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
423 |
|
3975 | 424 |
val spaces_of = #spaces o rep_sg; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
425 |
in |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
426 |
fun intrn_class spaces = intrn spaces classK; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
427 |
fun extrn_class spaces = extrn spaces classK; |
3937 | 428 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
429 |
val intrn_sort = map o intrn_class; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
430 |
val intrn_typ = trn_typ o intrn; |
3937 | 431 |
val intrn_term = trn_term o intrn; |
432 |
||
433 |
val extrn_sort = map o extrn_class; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
434 |
val extrn_typ = trn_typ o extrn; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
435 |
val extrn_term = trn_term o extrn; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
436 |
|
3805 | 437 |
fun intrn_tycons spaces T = |
438 |
map_typ I (mapping (intrn spaces typeK) add_typ_tycons T) T; |
|
439 |
||
3810 | 440 |
val intern = intrn o spaces_of; |
3855 | 441 |
val extern = extrn o spaces_of; |
3937 | 442 |
fun cond_extern sg kind = if ! long_names then I else extern sg kind; |
443 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
444 |
val intern_class = intrn_class o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
445 |
val intern_sort = intrn_sort o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
446 |
val intern_typ = intrn_typ o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
447 |
val intern_term = intrn_term o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
448 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
449 |
fun intern_tycon sg = intrn (spaces_of sg) typeK; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
450 |
fun intern_const sg = intrn (spaces_of sg) constK; |
3937 | 451 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
452 |
val intern_tycons = intrn_tycons o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
453 |
|
3975 | 454 |
val full_name = full o #path o rep_sg; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
455 |
end; |
620 | 456 |
|
402 | 457 |
|
0 | 458 |
|
4249 | 459 |
(** pretty printing of terms, types etc. **) |
3937 | 460 |
|
4249 | 461 |
fun pretty_term (sg as Sg ({stamps, ...}, {syn, spaces, ...})) t = |
3937 | 462 |
Syntax.pretty_term syn |
4249 | 463 |
(exists (equal "CPure" o !) stamps) |
3937 | 464 |
(if ! long_names then t else extrn_term spaces t); |
465 |
||
3975 | 466 |
fun pretty_typ (Sg (_, {syn, spaces, ...})) T = |
3937 | 467 |
Syntax.pretty_typ syn |
468 |
(if ! long_names then T else extrn_typ spaces T); |
|
469 |
||
3975 | 470 |
fun pretty_sort (Sg (_, {syn, spaces, ...})) S = |
3937 | 471 |
Syntax.pretty_sort syn |
472 |
(if ! long_names then S else extrn_sort spaces S); |
|
473 |
||
474 |
fun pretty_classrel sg (c1, c2) = Pretty.block |
|
475 |
[pretty_sort sg [c1], Pretty.str " <", Pretty.brk 1, pretty_sort sg [c2]]; |
|
476 |
||
477 |
fun pretty_arity sg (t, Ss, S) = |
|
478 |
let |
|
479 |
val t' = cond_extern sg typeK t; |
|
480 |
val dom = |
|
481 |
if null Ss then [] |
|
482 |
else [Pretty.list "(" ")" (map (pretty_sort sg) Ss), Pretty.brk 1]; |
|
483 |
in |
|
484 |
Pretty.block |
|
485 |
([Pretty.str (t' ^ " ::"), Pretty.brk 1] @ dom @ [pretty_sort sg S]) |
|
486 |
end; |
|
487 |
||
488 |
fun string_of_term sg t = Pretty.string_of (pretty_term sg t); |
|
489 |
fun string_of_typ sg T = Pretty.string_of (pretty_typ sg T); |
|
490 |
fun string_of_sort sg S = Pretty.string_of (pretty_sort sg S); |
|
491 |
||
492 |
fun str_of_sort sg S = Pretty.str_of (pretty_sort sg S); |
|
493 |
fun str_of_classrel sg c1_c2 = Pretty.str_of (pretty_classrel sg c1_c2); |
|
494 |
fun str_of_arity sg ar = Pretty.str_of (pretty_arity sg ar); |
|
495 |
||
496 |
fun pprint_term sg = Pretty.pprint o Pretty.quote o (pretty_term sg); |
|
497 |
fun pprint_typ sg = Pretty.pprint o Pretty.quote o (pretty_typ sg); |
|
498 |
||
499 |
||
500 |
||
562 | 501 |
(** read types **) (*exception ERROR*) |
502 |
||
503 |
fun err_in_type s = |
|
504 |
error ("The error(s) above occurred in type " ^ quote s); |
|
505 |
||
4227 | 506 |
fun rd_raw_typ syn tsig spaces def_sort str = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
507 |
intrn_tycons spaces |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
508 |
(Syntax.read_typ syn (Type.get_sort tsig def_sort (intrn_sort spaces)) str |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
509 |
handle ERROR => err_in_type str); |
4227 | 510 |
|
511 |
fun read_raw_typ (sg as Sg (_, {tsig, syn, spaces, ...}), def_sort) str = |
|
512 |
(check_stale sg; rd_raw_typ syn tsig spaces def_sort str); |
|
513 |
||
562 | 514 |
(*read and certify typ wrt a signature*) |
4227 | 515 |
fun read_typ (sg, def_sort) str = |
516 |
(Type.cert_typ (tsig_of sg) (read_raw_typ (sg, def_sort) str) |
|
3969 | 517 |
handle TYPE (msg, _, _) => (error_msg msg; err_in_type str)); |
562 | 518 |
|
519 |
||
520 |
||
386 | 521 |
(** certify types and terms **) (*exception TYPE*) |
251 | 522 |
|
3975 | 523 |
val certify_typ = Type.cert_typ o tsig_of; |
251 | 524 |
|
2979 | 525 |
(*check for duplicate TVars with distinct sorts*) |
526 |
fun nodup_TVars (tvars, T) = |
|
527 |
(case T of |
|
528 |
Type (_, Ts) => nodup_TVars_list (tvars, Ts) |
|
529 |
| TFree _ => tvars |
|
530 |
| TVar (v as (a, S)) => |
|
531 |
(case assoc_string_int (tvars, a) of |
|
532 |
Some S' => |
|
533 |
if S = S' then tvars |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
534 |
else raise TYPE ("Type variable " ^ Syntax.string_of_vname a ^ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
535 |
" has two distinct sorts", [TVar (a, S'), T], []) |
2979 | 536 |
| None => v :: tvars)) |
537 |
(*equivalent to foldl nodup_TVars_list, but 3X faster under Poly/ML*) |
|
538 |
and nodup_TVars_list (tvars, []) = tvars |
|
539 |
| nodup_TVars_list (tvars, T :: Ts) = |
|
540 |
nodup_TVars_list (nodup_TVars (tvars, T), Ts); |
|
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
541 |
|
2979 | 542 |
(*check for duplicate Vars with distinct types*) |
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
543 |
fun nodup_Vars tm = |
2979 | 544 |
let |
545 |
fun nodups vars tvars tm = |
|
546 |
(case tm of |
|
547 |
Const (c, T) => (vars, nodup_TVars (tvars, T)) |
|
548 |
| Free (a, T) => (vars, nodup_TVars (tvars, T)) |
|
549 |
| Var (v as (ixn, T)) => |
|
550 |
(case assoc_string_int (vars, ixn) of |
|
551 |
Some T' => |
|
552 |
if T = T' then (vars, nodup_TVars (tvars, T)) |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
553 |
else raise TYPE ("Variable " ^ Syntax.string_of_vname ixn ^ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
554 |
" has two distinct types", [T', T], []) |
2979 | 555 |
| None => (v :: vars, tvars)) |
556 |
| Bound _ => (vars, tvars) |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
557 |
| Abs (_, T, t) => nodups vars (nodup_TVars (tvars, T)) t |
2979 | 558 |
| s $ t => |
559 |
let val (vars',tvars') = nodups vars tvars s in |
|
560 |
nodups vars' tvars' t |
|
561 |
end); |
|
562 |
in nodups [] [] tm; () end; |
|
563 |
||
251 | 564 |
|
386 | 565 |
fun mapfilt_atoms f (Abs (_, _, t)) = mapfilt_atoms f t |
566 |
| mapfilt_atoms f (t $ u) = mapfilt_atoms f t @ mapfilt_atoms f u |
|
567 |
| mapfilt_atoms f a = (case f a of Some y => [y] | None => []); |
|
0 | 568 |
|
2979 | 569 |
|
3975 | 570 |
fun certify_term sg tm = |
251 | 571 |
let |
3969 | 572 |
val _ = check_stale sg; |
3975 | 573 |
val tsig = tsig_of sg; |
3969 | 574 |
|
3975 | 575 |
fun show_const a T = quote a ^ " :: " ^ quote (string_of_typ sg T); |
169 | 576 |
|
251 | 577 |
fun atom_err (Const (a, T)) = |
3975 | 578 |
(case const_type sg a of |
579 |
None => Some ("Undeclared constant " ^ show_const a T) |
|
580 |
| Some U => |
|
581 |
if Type.typ_instance (tsig, T, U) then None |
|
582 |
else Some ("Illegal type for constant " ^ show_const a T)) |
|
251 | 583 |
| atom_err (Var ((x, i), _)) = |
584 |
if i < 0 then Some ("Negative index for Var " ^ quote x) else None |
|
585 |
| atom_err _ = None; |
|
586 |
||
587 |
val norm_tm = |
|
2185 | 588 |
(case it_term_types (Type.typ_errors tsig) (tm, []) of |
589 |
[] => map_term_types (Type.norm_typ tsig) tm |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
590 |
| errs => raise TYPE (cat_lines errs, [], [tm])); |
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
591 |
val _ = nodup_Vars norm_tm; |
251 | 592 |
in |
386 | 593 |
(case mapfilt_atoms atom_err norm_tm of |
251 | 594 |
[] => (norm_tm, type_of norm_tm, maxidx_of_term norm_tm) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
595 |
| errs => raise TYPE (cat_lines errs, [], [norm_tm])) |
251 | 596 |
end; |
597 |
||
598 |
||
599 |
||
583 | 600 |
(** infer_types **) (*exception ERROR*) |
251 | 601 |
|
2979 | 602 |
(* |
603 |
def_type: partial map from indexnames to types (constrains Frees, Vars) |
|
604 |
def_sort: partial map from indexnames to sorts (constrains TFrees, TVars) |
|
605 |
used: list of already used type variables |
|
606 |
freeze: if true then generated parameters are turned into TFrees, else TVars |
|
4249 | 607 |
|
608 |
termss: lists of alternative parses (only one combination should be type-correct) |
|
609 |
typs: expected types |
|
2979 | 610 |
*) |
611 |
||
4249 | 612 |
fun infer_types_simult sg def_type def_sort used freeze args = |
251 | 613 |
let |
3975 | 614 |
val tsig = tsig_of sg; |
3810 | 615 |
val prt = |
616 |
setmp Syntax.show_brackets true |
|
617 |
(setmp long_names true (pretty_term sg)); |
|
618 |
val prT = setmp long_names true (pretty_typ sg); |
|
4249 | 619 |
|
620 |
val termss = foldr multiply (map fst args, [[]]); |
|
621 |
val typs = |
|
622 |
map (fn (_, T) => certify_typ sg T handle TYPE (msg, _, _) => error msg) args; |
|
169 | 623 |
|
4249 | 624 |
fun infer ts = OK |
625 |
(Type.infer_types prt prT tsig (const_type sg) def_type def_sort |
|
626 |
(intern_const sg) (intern_tycons sg) (intern_sort sg) used freeze typs ts) |
|
627 |
handle TYPE (msg, _, _) => Error msg; |
|
623 | 628 |
|
4249 | 629 |
val err_results = map infer termss; |
630 |
val errs = mapfilter get_error err_results; |
|
631 |
val results = mapfilter get_ok err_results; |
|
632 |
||
633 |
val ambiguity = length termss; (* FIXME !? *) |
|
634 |
(* FIXME to syntax.ML!? *) |
|
635 |
fun ambig_msg () = |
|
636 |
if ambiguity > 1 andalso ambiguity <= ! Syntax.ambiguity_level |
|
637 |
then |
|
638 |
error_msg "Got more than one parse tree.\n\ |
|
3805 | 639 |
\Retry with smaller Syntax.ambiguity_level for more information." |
952
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
640 |
else (); |
4249 | 641 |
in |
642 |
if null results then (ambig_msg (); error (cat_lines errs)) |
|
643 |
else if length results = 1 then |
|
644 |
(if ambiguity > ! Syntax.ambiguity_level then |
|
645 |
warning "Fortunately, only one parse tree is type correct.\n\ |
|
646 |
\You may still want to disambiguate your grammar or your input." |
|
647 |
else (); hd results) |
|
648 |
else (ambig_msg (); error ("More than one term is type correct:\n" ^ |
|
649 |
(cat_lines (map (Pretty.string_of o prt) (flat (map fst results)))))) |
|
650 |
end; |
|
623 | 651 |
|
4249 | 652 |
|
653 |
fun infer_types sg def_type def_sort used freeze tsT = |
|
654 |
apfst hd (infer_types_simult sg def_type def_sort used freeze [tsT]); |
|
251 | 655 |
|
656 |
||
2979 | 657 |
|
623 | 658 |
(** extend signature **) (*exception ERROR*) |
659 |
||
620 | 660 |
(** signature extension functions **) (*exception ERROR*) |
386 | 661 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
662 |
fun decls_of path name_of mfixs = |
3810 | 663 |
map (fn (x, y, mx) => (full path (name_of x mx), y)) mfixs; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
664 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
665 |
fun no_read _ _ _ decl = decl; |
386 | 666 |
|
667 |
||
668 |
(* add default sort *) |
|
669 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
670 |
fun ext_defsort int (syn, tsig, ctab, (path, spaces), data) S = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
671 |
(syn, Type.ext_tsig_defsort tsig (if int then intrn_sort spaces S else S), |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
672 |
ctab, (path, spaces), data); |
386 | 673 |
|
674 |
||
675 |
(* add type constructors *) |
|
676 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
677 |
fun ext_types (syn, tsig, ctab, (path, spaces), data) types = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
678 |
let val decls = decls_of path Syntax.type_name types in |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
679 |
(Syntax.extend_type_gram syn types, |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
680 |
Type.ext_tsig_types tsig decls, ctab, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
681 |
(path, add_names spaces typeK (map fst decls)), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
682 |
end; |
386 | 683 |
|
684 |
||
685 |
(* add type abbreviations *) |
|
686 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
687 |
fun read_abbr syn tsig spaces (t, vs, rhs_src) = |
4227 | 688 |
(t, vs, rd_raw_typ syn tsig spaces (K None) rhs_src) |
386 | 689 |
handle ERROR => error ("in type abbreviation " ^ t); |
690 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
691 |
fun ext_abbrs rd_abbr (syn, tsig, ctab, (path, spaces), data) abbrs = |
386 | 692 |
let |
693 |
fun mfix_of (t, vs, _, mx) = (t, length vs, mx); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
694 |
val syn' = Syntax.extend_type_gram syn (map mfix_of abbrs); |
386 | 695 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
696 |
val abbrs' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
697 |
map (fn (t, vs, rhs, mx) => |
3810 | 698 |
(full path (Syntax.type_name t mx), vs, rhs)) abbrs; |
3805 | 699 |
val spaces' = add_names spaces typeK (map #1 abbrs'); |
700 |
val decls = map (rd_abbr syn' tsig spaces') abbrs'; |
|
386 | 701 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
702 |
(syn', Type.ext_tsig_abbrs tsig decls, ctab, (path, spaces'), data) |
386 | 703 |
end; |
704 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
705 |
fun ext_tyabbrs abbrs = ext_abbrs read_abbr abbrs; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
706 |
fun ext_tyabbrs_i abbrs = ext_abbrs no_read abbrs; |
386 | 707 |
|
708 |
||
709 |
(* add type arities *) |
|
710 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
711 |
fun ext_arities int (syn, tsig, ctab, (path, spaces), data) arities = |
386 | 712 |
let |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
713 |
fun intrn_arity (c, Ss, S) = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
714 |
(intrn spaces typeK c, map (intrn_sort spaces) Ss, intrn_sort spaces S); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
715 |
val intrn = if int then map intrn_arity else I; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
716 |
val tsig' = Type.ext_tsig_arities tsig (intrn arities); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
717 |
val log_types = Type.logical_types tsig'; |
386 | 718 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
719 |
(Syntax.extend_log_types syn log_types, tsig', ctab, (path, spaces), data) |
386 | 720 |
end; |
721 |
||
722 |
||
723 |
(* add term constants and syntax *) |
|
724 |
||
3805 | 725 |
fun const_name path c mx = |
3810 | 726 |
full path (Syntax.const_name c mx); |
3805 | 727 |
|
386 | 728 |
fun err_in_const c = |
729 |
error ("in declaration of constant " ^ quote c); |
|
730 |
||
731 |
fun err_dup_consts cs = |
|
732 |
error ("Duplicate declaration of constant(s) " ^ commas_quote cs); |
|
733 |
||
251 | 734 |
|
3805 | 735 |
fun read_const syn tsig (path, spaces) (c, ty_src, mx) = |
4227 | 736 |
(c, rd_raw_typ syn tsig spaces (K None) ty_src, mx) |
3805 | 737 |
handle ERROR => err_in_const (const_name path c mx); |
386 | 738 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
739 |
fun ext_cnsts rd_const syn_only prmode (syn, tsig, ctab, (path, spaces), data) raw_consts = |
386 | 740 |
let |
2979 | 741 |
fun prep_const (c, ty, mx) = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
742 |
(c, compress_type (Type.varifyT (Type.cert_typ tsig (Type.no_tvars ty))), mx) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
743 |
handle TYPE (msg, _, _) => |
3805 | 744 |
(error_msg msg; err_in_const (const_name path c mx)); |
386 | 745 |
|
3805 | 746 |
val consts = map (prep_const o rd_const syn tsig (path, spaces)) raw_consts; |
386 | 747 |
val decls = |
748 |
if syn_only then [] |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
749 |
else decls_of path Syntax.const_name consts; |
386 | 750 |
in |
2197 | 751 |
(Syntax.extend_const_gram syn prmode consts, tsig, |
4489 | 752 |
Symtab.extend (ctab, decls) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
753 |
handle Symtab.DUPS cs => err_dup_consts cs, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
754 |
(path, add_names spaces constK (map fst decls)), data) |
386 | 755 |
end; |
756 |
||
4007 | 757 |
fun ext_consts_i sg = ext_cnsts no_read false ("", true) sg; |
758 |
fun ext_consts sg = ext_cnsts read_const false ("", true) sg; |
|
759 |
fun ext_syntax_i sg = ext_cnsts no_read true ("", true) sg; |
|
760 |
fun ext_syntax sg = ext_cnsts read_const true ("", true) sg; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
761 |
fun ext_modesyntax_i sg (prmode, consts) = ext_cnsts no_read true prmode sg consts; |
2197 | 762 |
fun ext_modesyntax sg (prmode, consts) = ext_cnsts read_const true prmode sg consts; |
386 | 763 |
|
764 |
||
765 |
(* add type classes *) |
|
766 |
||
767 |
fun const_of_class c = c ^ "_class"; |
|
768 |
||
769 |
fun class_of_const c_class = |
|
770 |
let |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
771 |
val c = implode (take (size c_class - size "_class", explode c_class)); |
386 | 772 |
in |
773 |
if const_of_class c = c_class then c |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
774 |
else raise TERM ("class_of_const: bad name " ^ quote c_class, []) |
386 | 775 |
end; |
776 |
||
777 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
778 |
fun ext_classes int (syn, tsig, ctab, (path, spaces), data) classes = |
386 | 779 |
let |
562 | 780 |
val names = map fst classes; |
386 | 781 |
val consts = |
782 |
map (fn c => (const_of_class c, a_itselfT --> propT, NoSyn)) names; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
783 |
|
3810 | 784 |
val full_names = map (full path) names; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
785 |
val spaces' = add_names spaces classK full_names; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
786 |
val intrn = if int then map (intrn_class spaces') else I; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
787 |
val classes' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
788 |
ListPair.map (fn (c, (_, cs)) => (c, intrn cs)) (full_names, classes); |
386 | 789 |
in |
790 |
ext_consts_i |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
791 |
(Syntax.extend_consts syn names, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
792 |
Type.ext_tsig_classes tsig classes', ctab, (path, spaces'), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
793 |
consts |
386 | 794 |
end; |
795 |
||
796 |
||
2963 | 797 |
(* add to classrel *) |
421 | 798 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
799 |
fun ext_classrel int (syn, tsig, ctab, (path, spaces), data) pairs = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
800 |
let val intrn = if int then map (pairself (intrn_class spaces)) else I in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
801 |
(syn, Type.ext_tsig_classrel tsig (intrn pairs), ctab, (path, spaces), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
802 |
end; |
421 | 803 |
|
804 |
||
4619 | 805 |
(* add translation rules *) |
806 |
||
807 |
fun ext_trrules (syn, tsig, ctab, (path, spaces), data) args = |
|
808 |
(Syntax.extend_trrules syn |
|
809 |
(map (Syntax.map_trrule (fn (root, str) => (intrn spaces typeK root, str))) args), |
|
810 |
tsig, ctab, (path, spaces), data); |
|
811 |
||
812 |
||
1159 | 813 |
(* add to syntax *) |
386 | 814 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
815 |
fun ext_syn extfun (syn, tsig, ctab, names, data) args = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
816 |
(extfun syn args, tsig, ctab, names, data); |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
817 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
818 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
819 |
(* add to path *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
820 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
821 |
fun ext_path (syn, tsig, ctab, (path, spaces), data) elem = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
822 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
823 |
val path' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
824 |
if elem = ".." andalso not (null path) then fst (split_last path) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
825 |
else if elem = "/" then [] |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
826 |
else path @ NameSpace.unpack elem; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
827 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
828 |
(syn, tsig, ctab, (path', spaces), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
829 |
end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
830 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
831 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
832 |
(* add to name space *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
833 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
834 |
fun ext_space (syn, tsig, ctab, (path, spaces), data) (kind, names) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
835 |
(syn, tsig, ctab, (path, add_names spaces kind names), data); |
386 | 836 |
|
837 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
838 |
(* signature data *) |
386 | 839 |
|
4256 | 840 |
fun ext_init_data sg (syn, tsig, ctab, names, data) (kind, (e, ext, mrg, prt)) = |
841 |
(syn, tsig, ctab, names, init_data_sg sg data kind e ext mrg prt); |
|
386 | 842 |
|
4256 | 843 |
fun ext_put_data sg (syn, tsig, ctab, names, data) (kind, e) = |
844 |
(syn, tsig, ctab, names, put_data_sg sg data kind e); |
|
386 | 845 |
|
846 |
||
847 |
(* the external interfaces *) |
|
848 |
||
3975 | 849 |
val add_classes = extend_sign true (ext_classes true) "#"; |
850 |
val add_classes_i = extend_sign true (ext_classes false) "#"; |
|
851 |
val add_classrel = extend_sign true (ext_classrel true) "#"; |
|
852 |
val add_classrel_i = extend_sign true (ext_classrel false) "#"; |
|
853 |
val add_defsort = extend_sign true (ext_defsort true) "#"; |
|
854 |
val add_defsort_i = extend_sign true (ext_defsort false) "#"; |
|
855 |
val add_types = extend_sign true ext_types "#"; |
|
856 |
val add_tyabbrs = extend_sign true ext_tyabbrs "#"; |
|
857 |
val add_tyabbrs_i = extend_sign true ext_tyabbrs_i "#"; |
|
858 |
val add_arities = extend_sign true (ext_arities true) "#"; |
|
859 |
val add_arities_i = extend_sign true (ext_arities false) "#"; |
|
860 |
val add_consts = extend_sign true ext_consts "#"; |
|
861 |
val add_consts_i = extend_sign true ext_consts_i "#"; |
|
862 |
val add_syntax = extend_sign true ext_syntax "#"; |
|
863 |
val add_syntax_i = extend_sign true ext_syntax_i "#"; |
|
864 |
val add_modesyntax = extend_sign true ext_modesyntax "#"; |
|
865 |
val add_modesyntax_i = extend_sign true ext_modesyntax_i "#"; |
|
866 |
val add_trfuns = extend_sign true (ext_syn Syntax.extend_trfuns) "#"; |
|
867 |
val add_trfunsT = extend_sign true (ext_syn Syntax.extend_trfunsT) "#"; |
|
868 |
val add_tokentrfuns = extend_sign true (ext_syn Syntax.extend_tokentrfuns) "#"; |
|
4619 | 869 |
val add_trrules = extend_sign true ext_trrules "#"; |
3975 | 870 |
val add_trrules_i = extend_sign true (ext_syn Syntax.extend_trrules_i) "#"; |
871 |
val add_path = extend_sign true ext_path "#"; |
|
872 |
val add_space = extend_sign true ext_space "#"; |
|
4256 | 873 |
fun init_data arg sg = extend_sign true (ext_init_data sg) "#" arg sg; |
874 |
fun put_data arg sg = extend_sign true (ext_put_data sg) "#" arg sg; |
|
3975 | 875 |
fun add_name name sg = extend_sign true K name () sg; |
876 |
fun prep_ext sg = extend_sign false K "#" () sg; |
|
386 | 877 |
|
878 |
||
3867 | 879 |
|
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
4007
diff
changeset
|
880 |
(** merge signatures **) (*exception TERM*) |
3867 | 881 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
882 |
(* merge_stamps *) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
883 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
884 |
fun merge_stamps stamps1 stamps2 = |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
885 |
let val stamps = merge_rev_lists stamps1 stamps2 in |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
886 |
(case duplicates (map ! stamps) of |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
887 |
[] => stamps |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
888 |
| dups => raise TERM ("Attempt to merge different versions of theories " |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
889 |
^ commas_quote dups, [])) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
890 |
end; |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
891 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
892 |
|
4627 | 893 |
(* implicit merge -- trivial only *) |
3877 | 894 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
895 |
fun merge_refs (sgr1 as SgRef (Some (ref (sg1 as Sg ({stamps = s1, ...}, _)))), |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
896 |
sgr2 as SgRef (Some (ref (sg2 as Sg ({stamps = s2, ...}, _))))) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
897 |
if fast_subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
898 |
else if fast_subsig (sg1, sg2) then sgr2 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
899 |
else if subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
900 |
else if subsig (sg1, sg2) then sgr2 |
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
901 |
else (merge_stamps s1 s2; (*check for different versions*) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
902 |
raise TERM ("Attempt to do non-trivial merge of signatures", [])) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
903 |
| merge_refs _ = sys_error "Sign.merge_refs"; |
3867 | 904 |
|
4627 | 905 |
val merge = deref o merge_refs o pairself self_ref; |
906 |
||
3867 | 907 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
908 |
(* proper merge *) |
143 | 909 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
910 |
fun merge_aux (sg1, sg2) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
911 |
if subsig (sg2, sg1) then sg1 |
251 | 912 |
else if subsig (sg1, sg2) then sg2 |
386 | 913 |
else if is_draft sg1 orelse is_draft sg2 then |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
914 |
raise TERM ("Attempt to merge draft signatures", []) |
251 | 915 |
else |
916 |
(*neither is union already; must form union*) |
|
917 |
let |
|
3975 | 918 |
val Sg ({id = _, stamps = stamps1}, {self = _, tsig = tsig1, const_tab = const_tab1, |
919 |
syn = syn1, path = _, spaces = spaces1, data = data1}) = sg1; |
|
920 |
val Sg ({id = _, stamps = stamps2}, {self = _, tsig = tsig2, const_tab = const_tab2, |
|
921 |
syn = syn2, path = _, spaces = spaces2, data = data2}) = sg2; |
|
386 | 922 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
923 |
val id = ref ""; |
3975 | 924 |
val self_ref = ref sg1; (*dummy value*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
925 |
val self = SgRef (Some self_ref); |
402 | 926 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
927 |
val stamps = merge_stamps stamps1 stamps2; |
2185 | 928 |
val tsig = Type.merge_tsigs (tsig1, tsig2); |
251 | 929 |
val const_tab = Symtab.merge (op =) (const_tab1, const_tab2) |
386 | 930 |
handle Symtab.DUPS cs => |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
931 |
raise TERM ("Incompatible types for constant(s) " ^ commas_quote cs, []); |
386 | 932 |
val syn = Syntax.merge_syntaxes syn1 syn2; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
933 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
934 |
val path = []; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
935 |
val kinds = distinct (map fst (spaces1 @ spaces2)); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
936 |
val spaces = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
937 |
kinds ~~ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
938 |
ListPair.map NameSpace.merge |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
939 |
(map (space_of spaces1) kinds, map (space_of spaces2) kinds); |
3867 | 940 |
|
4256 | 941 |
val data = merge_data (data1, data2); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
942 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
943 |
val sign = make_sign (id, self, tsig, const_tab, syn, path, spaces, data, stamps); |
251 | 944 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
945 |
self_ref := sign; sign |
251 | 946 |
end; |
143 | 947 |
|
4627 | 948 |
fun nontriv_merge sg1_sg2 = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
949 |
(case handle_error merge_aux sg1_sg2 of |
3805 | 950 |
OK sg => sg |
951 |
| Error msg => raise TERM (msg, [])); |
|
952 |
||
0 | 953 |
|
954 |
||
3995 | 955 |
(** partial Pure signature **) |
0 | 956 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
957 |
val dummy_sg = make_sign (ref "", SgRef None, Type.tsig0, |
4489 | 958 |
Symtab.empty, Syntax.pure_syn, [], [], empty_data, []); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
959 |
|
3995 | 960 |
val pre_pure = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
961 |
create_sign (SgRef (Some (ref dummy_sg))) [] "#" |
4489 | 962 |
(Syntax.pure_syn, Type.tsig0, Symtab.empty, ([], []), empty_data); |
0 | 963 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
964 |
|
0 | 965 |
end; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
966 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
967 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
968 |
val long_names = Sign.long_names; |