author | wenzelm |
Tue, 01 Jun 2004 12:36:10 +0200 | |
changeset 14856 | 669a9a0e7279 |
parent 14828 | 15d12761ba54 |
child 14905 | 5f3fc2f62071 |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/sign.ML |
0 | 2 |
ID: $Id$ |
251 | 3 |
Author: Lawrence C Paulson and Markus Wenzel |
12785 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
0 | 5 |
|
251 | 6 |
The abstract type "sg" of signatures. |
0 | 7 |
*) |
8 |
||
3956 | 9 |
(*base names*) |
10 |
type bstring = string; |
|
11 |
type bclass = class; |
|
12 |
(*external forms -- partially qualified names*) |
|
3805 | 13 |
type xstring = string; |
14 |
type xclass = class; |
|
15 |
type xsort = sort; |
|
16 |
type xtyp = typ; |
|
17 |
type xterm = term; |
|
18 |
||
19 | 19 |
signature SIGN = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
20 |
sig |
1501 | 21 |
type sg |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
22 |
type sg_ref |
4256 | 23 |
type data |
2197 | 24 |
val rep_sg: sg -> |
3975 | 25 |
{self: sg_ref, |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
26 |
tsig: Type.tsig, |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
27 |
consts: (typ * stamp) Symtab.table, |
11501 | 28 |
path: string list option, |
3791
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 |
|
10932 | 33 |
val exists_stamp: string -> sg -> bool |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
34 |
val tsig_of: sg -> Type.tsig |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
35 |
val deref: sg_ref -> sg |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
36 |
val self_ref: sg -> sg_ref |
1501 | 37 |
val subsig: sg * sg -> bool |
9031 | 38 |
val joinable: sg * sg -> bool |
1501 | 39 |
val eq_sg: sg * sg -> bool |
40 |
val same_sg: sg * sg -> bool |
|
41 |
val is_draft: sg -> bool |
|
4951 | 42 |
val is_stale: sg -> bool |
14645 | 43 |
val syn_of: sg -> Syntax.syntax |
1501 | 44 |
val const_type: sg -> string -> typ option |
45 |
val classes: sg -> class list |
|
4844 | 46 |
val defaultS: sg -> sort |
1501 | 47 |
val subsort: sg -> sort * sort -> bool |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
48 |
val nodup_vars: term -> term |
4568 | 49 |
val of_sort: sg -> typ * sort -> bool |
7640 | 50 |
val witness_sorts: sg -> sort list -> sort list -> (typ * sort) list |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
51 |
val universal_witness: sg -> (typ * sort) option |
10443
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents:
10404
diff
changeset
|
52 |
val typ_instance: sg -> typ * typ -> bool |
3810 | 53 |
val classK: string |
54 |
val typeK: string |
|
55 |
val constK: string |
|
3956 | 56 |
val full_name: sg -> bstring -> string |
4844 | 57 |
val full_name_path: sg -> string -> bstring -> string |
3956 | 58 |
val base_name: string -> bstring |
3810 | 59 |
val intern: sg -> string -> xstring -> string |
60 |
val extern: sg -> string -> string -> xstring |
|
3937 | 61 |
val cond_extern: sg -> string -> string -> xstring |
6845 | 62 |
val cond_extern_table: sg -> string -> 'a Symtab.table -> (xstring * 'a) list |
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
63 |
val extern_typ: sg -> typ -> typ |
3805 | 64 |
val intern_class: sg -> xclass -> class |
65 |
val intern_tycon: sg -> xstring -> string |
|
66 |
val intern_const: sg -> xstring -> string |
|
3937 | 67 |
val intern_sort: sg -> xsort -> sort |
68 |
val intern_typ: sg -> xtyp -> typ |
|
69 |
val intern_term: sg -> xterm -> term |
|
70 |
val intern_tycons: sg -> xtyp -> typ |
|
1501 | 71 |
val pretty_sg: sg -> Pretty.T |
4051 | 72 |
val str_of_sg: sg -> string |
1501 | 73 |
val pprint_sg: sg -> pprint_args -> unit |
14645 | 74 |
val PureN: string |
75 |
val CPureN: string |
|
76 |
val pre_pure: sg |
|
1501 | 77 |
val pretty_term: sg -> term -> Pretty.T |
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
78 |
val pretty_term': Syntax.syntax -> sg -> term -> Pretty.T |
1501 | 79 |
val pretty_typ: sg -> typ -> Pretty.T |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
80 |
val pretty_sort: sg -> sort -> Pretty.T |
14828 | 81 |
val pretty_classrel: sg -> class list -> Pretty.T |
82 |
val pretty_arity: sg -> arity -> Pretty.T |
|
1501 | 83 |
val string_of_term: sg -> term -> string |
84 |
val string_of_typ: sg -> typ -> string |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
85 |
val string_of_sort: sg -> sort -> string |
14828 | 86 |
val string_of_classrel: sg -> class list -> string |
87 |
val string_of_arity: sg -> arity -> string |
|
1501 | 88 |
val pprint_term: sg -> term -> pprint_args -> unit |
89 |
val pprint_typ: sg -> typ -> pprint_args -> unit |
|
14828 | 90 |
val pp: sg -> Pretty.pp |
8898 | 91 |
val certify_class: sg -> class -> class |
92 |
val certify_sort: sg -> sort -> sort |
|
1501 | 93 |
val certify_typ: sg -> typ -> typ |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
94 |
val certify_typ_raw: sg -> typ -> typ |
11720 | 95 |
val certify_tyname: sg -> string -> string |
10443
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents:
10404
diff
changeset
|
96 |
val certify_const: sg -> string -> string |
14828 | 97 |
val certify_term: Pretty.pp -> sg -> term -> term * typ * int |
8898 | 98 |
val read_sort: sg -> string -> sort |
4227 | 99 |
val read_raw_typ: sg * (indexname -> sort option) -> string -> typ |
1501 | 100 |
val read_typ: sg * (indexname -> sort option) -> string -> typ |
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
101 |
val read_typ': Syntax.syntax -> sg * (indexname -> sort option) -> string -> typ |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
102 |
val read_typ_raw': Syntax.syntax -> sg * (indexname -> sort option) -> string -> typ |
14828 | 103 |
val inst_typ_tvars: sg -> (indexname * typ) list -> typ -> typ |
104 |
val inst_term_tvars: sg -> (indexname * typ) list -> term -> term |
|
105 |
val infer_types: Pretty.pp -> sg -> (indexname -> typ option) -> |
|
1501 | 106 |
(indexname -> sort option) -> string list -> bool |
4249 | 107 |
-> xterm list * typ -> term * (indexname * typ) list |
14828 | 108 |
val infer_types_simult: Pretty.pp -> sg -> (indexname -> typ option) -> |
4249 | 109 |
(indexname -> sort option) -> string list -> bool |
110 |
-> (xterm list * typ) list -> term list * (indexname * typ) list |
|
14828 | 111 |
val read_def_terms': Pretty.pp -> Syntax.syntax -> |
112 |
sg * (indexname -> typ option) * (indexname -> sort option) -> |
|
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
113 |
string list -> bool -> (string * typ) list -> term list * (indexname * typ) list |
8607 | 114 |
val read_def_terms: |
115 |
sg * (indexname -> typ option) * (indexname -> sort option) -> |
|
116 |
string list -> bool -> (string * typ) list -> term list * (indexname * typ) list |
|
8802 | 117 |
val simple_read_term: sg -> typ -> string -> term |
14645 | 118 |
val const_of_class: class -> string |
119 |
val class_of_const: string -> class |
|
3956 | 120 |
val add_classes: (bclass * xclass list) list -> sg -> sg |
121 |
val add_classes_i: (bclass * class list) list -> sg -> sg |
|
3805 | 122 |
val add_classrel: (xclass * xclass) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
123 |
val add_classrel_i: (class * class) list -> sg -> sg |
8898 | 124 |
val add_defsort: string -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
125 |
val add_defsort_i: sort -> sg -> sg |
3956 | 126 |
val add_types: (bstring * int * mixfix) list -> sg -> sg |
4844 | 127 |
val add_nonterminals: bstring list -> sg -> sg |
3956 | 128 |
val add_tyabbrs: (bstring * string list * string * mixfix) list -> sg -> sg |
129 |
val add_tyabbrs_i: (bstring * string list * typ * mixfix) list -> sg -> sg |
|
8898 | 130 |
val add_arities: (xstring * string list * string) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
131 |
val add_arities_i: (string * sort list * sort) list -> sg -> sg |
3956 | 132 |
val add_consts: (bstring * string * mixfix) list -> sg -> sg |
133 |
val add_consts_i: (bstring * typ * mixfix) list -> sg -> sg |
|
134 |
val add_syntax: (bstring * string * mixfix) list -> sg -> sg |
|
135 |
val add_syntax_i: (bstring * typ * mixfix) list -> sg -> sg |
|
136 |
val add_modesyntax: (string * bool) * (bstring * string * mixfix) list -> sg -> sg |
|
137 |
val add_modesyntax_i: (string * bool) * (bstring * typ * mixfix) list -> sg -> sg |
|
1501 | 138 |
val add_trfuns: |
4344 | 139 |
(string * (ast list -> ast)) list * |
140 |
(string * (term list -> term)) list * |
|
141 |
(string * (term list -> term)) list * |
|
142 |
(string * (ast list -> ast)) list -> sg -> sg |
|
2385 | 143 |
val add_trfunsT: |
4344 | 144 |
(string * (bool -> typ -> term list -> term)) list -> sg -> sg |
14645 | 145 |
val add_advanced_trfuns: |
146 |
(string * (sg -> ast list -> ast)) list * |
|
147 |
(string * (sg -> term list -> term)) list * |
|
148 |
(string * (sg -> term list -> term)) list * |
|
149 |
(string * (sg -> ast list -> ast)) list -> sg -> sg |
|
150 |
val add_advanced_trfunsT: |
|
151 |
(string * (sg -> bool -> typ -> term list -> term)) list -> sg -> sg |
|
2693 | 152 |
val add_tokentrfuns: |
6311 | 153 |
(string * string * (string -> string * real)) list -> sg -> sg |
4619 | 154 |
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
|
155 |
val add_trrules_i: ast Syntax.trrule list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
156 |
val add_path: string -> sg -> sg |
3810 | 157 |
val add_space: string * string list -> sg -> sg |
12588 | 158 |
val hide_space: bool -> string * string list -> sg -> sg |
159 |
val hide_space_i: bool -> string * string list -> sg -> sg |
|
1501 | 160 |
val add_name: string -> sg -> sg |
4256 | 161 |
val data_kinds: data -> string list |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
162 |
val merge_refs: sg_ref * sg_ref -> sg_ref |
4627 | 163 |
val merge: sg * sg -> sg |
12123 | 164 |
val copy: sg -> sg |
3975 | 165 |
val prep_ext: sg -> sg |
4627 | 166 |
val nontriv_merge: sg * sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
167 |
end; |
0 | 168 |
|
6191 | 169 |
signature PRIVATE_SIGN = |
5642 | 170 |
sig |
171 |
include SIGN |
|
6546 | 172 |
val init_data: Object.kind * (Object.T * (Object.T -> Object.T) * (Object.T -> Object.T) * |
12310 | 173 |
(Object.T * Object.T -> Object.T) * (sg -> Object.T -> unit)) -> sg -> sg |
5642 | 174 |
val get_data: Object.kind -> (Object.T -> 'a) -> sg -> 'a |
175 |
val put_data: Object.kind -> ('a -> Object.T) -> 'a -> sg -> sg |
|
176 |
val print_data: Object.kind -> sg -> unit |
|
177 |
end; |
|
178 |
||
6191 | 179 |
structure Sign: PRIVATE_SIGN = |
143 | 180 |
struct |
0 | 181 |
|
251 | 182 |
(** datatype sg **) |
183 |
||
14645 | 184 |
(* types sg, data, syn, sg_ref *) |
4256 | 185 |
|
19 | 186 |
datatype sg = |
3975 | 187 |
Sg of |
188 |
{id: string ref, (*id*) |
|
14645 | 189 |
stamps: string ref list, (*unique theory indentifier*) |
190 |
syn: syn} * (*syntax for parsing and printing*) |
|
3975 | 191 |
{self: sg_ref, (*mutable self reference*) |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
192 |
tsig: Type.tsig, (*order-sorted signature of types*) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
193 |
consts: (typ * stamp) Symtab.table, (*type schemes of constants*) |
11501 | 194 |
path: string list option, (*current name space entry prefix*) |
3975 | 195 |
spaces: (string * NameSpace.T) list, (*name spaces for consts, types etc.*) |
4256 | 196 |
data: data} (*anytype data*) |
197 |
and data = |
|
198 |
Data of |
|
10404 | 199 |
(Object.kind * (*kind (for authorization)*) |
200 |
(Object.T * (*value*) |
|
12123 | 201 |
((Object.T -> Object.T) * (*copy method*) |
202 |
(Object.T -> Object.T) * (*prepare extend method*) |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
203 |
(Object.T * Object.T -> Object.T) * (*merge and prepare extend method*) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
204 |
(sg -> Object.T -> unit)))) (*print method*) |
4256 | 205 |
Symtab.table |
14645 | 206 |
and syn = |
207 |
Syn of |
|
208 |
Syntax.syntax * |
|
209 |
(((sg -> ast list -> ast) * stamp) Symtab.table * |
|
210 |
((sg -> term list -> term) * stamp) Symtab.table * |
|
211 |
((sg -> bool -> typ -> term list -> term) * stamp) list Symtab.table * |
|
212 |
((sg -> ast list -> ast) * stamp) list Symtab.table) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
213 |
and sg_ref = |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
214 |
SgRef of sg ref option; |
0 | 215 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
216 |
(*make signature*) |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
217 |
fun make_sign (id, self, tsig, consts, syn, path, spaces, data, stamps) = |
14645 | 218 |
Sg ({id = id, stamps = stamps, syn = syn}, {self = self, tsig = tsig, |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
219 |
consts = consts, path = path, spaces = spaces, data = data}); |
3975 | 220 |
|
221 |
||
4256 | 222 |
(* basic operations *) |
3975 | 223 |
|
224 |
fun rep_sg (Sg (_, args)) = args; |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
225 |
|
3975 | 226 |
fun stamp_names_of (Sg ({stamps, ...}, _)) = rev (map ! stamps); |
10932 | 227 |
fun exists_stamp name (Sg ({stamps, ...}, _)) = exists (equal name o !) stamps; |
3975 | 228 |
fun pretty_sg sg = Pretty.str_list "{" "}" (stamp_names_of sg); |
229 |
val str_of_sg = Pretty.str_of o pretty_sg; |
|
230 |
val pprint_sg = Pretty.pprint o pretty_sg; |
|
231 |
||
402 | 232 |
val tsig_of = #tsig o rep_sg; |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
233 |
fun const_type (Sg (_, {consts, ...})) c = apsome #1 (Symtab.lookup (consts, c)); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
234 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
235 |
|
3995 | 236 |
(* id and self *) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
237 |
|
3975 | 238 |
fun check_stale (sg as Sg ({id, ...}, |
239 |
{self = SgRef (Some (ref (Sg ({id = id', ...}, _)))), ...})) = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
240 |
if id = id' then sg |
3975 | 241 |
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
|
242 |
| check_stale _ = sys_error "Sign.check_stale"; |
0 | 243 |
|
4951 | 244 |
fun is_stale sg = (check_stale sg; false) handle TERM _ => true; |
245 |
||
3995 | 246 |
fun self_ref (sg as Sg (_, {self, ...})) = (check_stale sg; self); |
247 |
||
248 |
fun deref (SgRef (Some (ref sg))) = sg |
|
249 |
| deref (SgRef None) = sys_error "Sign.deref"; |
|
250 |
||
3975 | 251 |
fun name_of (sg as Sg ({id = ref name, ...}, _)) = |
4844 | 252 |
if name = "" orelse ord name = ord "#" then |
3975 | 253 |
raise TERM ("Nameless signature " ^ str_of_sg sg, []) |
254 |
else name; |
|
255 |
||
206
0d624d1ba9cc
added subsig: sg * sg -> bool to test if one signature is contained in another.
nipkow
parents:
200
diff
changeset
|
256 |
|
2979 | 257 |
(* inclusion and equality *) |
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
258 |
|
2185 | 259 |
local |
260 |
(*avoiding polymorphic equality: factor 10 speedup*) |
|
261 |
fun mem_stamp (_:string ref, []) = false |
|
262 |
| mem_stamp (x, y :: ys) = x = y orelse mem_stamp (x, ys); |
|
263 |
||
264 |
fun subset_stamp ([], ys) = true |
|
265 |
| subset_stamp (x :: xs, ys) = |
|
266 |
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
|
267 |
|
2185 | 268 |
(*fast partial test*) |
269 |
fun fast_sub ([]: string ref list, _) = true |
|
270 |
| fast_sub (_, []) = false |
|
271 |
| fast_sub (x :: xs, y :: ys) = |
|
272 |
if x = y then fast_sub (xs, ys) |
|
273 |
else fast_sub (x :: xs, ys); |
|
274 |
in |
|
3975 | 275 |
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
|
276 |
(check_stale sg1; check_stale sg2; id1 = id2); |
2185 | 277 |
|
3975 | 278 |
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
|
279 |
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
|
280 |
|
3975 | 281 |
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
|
282 |
eq_sg (sg1, sg2) orelse fast_sub (s1, s2); |
2185 | 283 |
end; |
284 |
||
402 | 285 |
|
9031 | 286 |
fun joinable (sg1, sg2) = subsig (sg1, sg2) orelse subsig (sg2, sg1); |
287 |
||
2185 | 288 |
(*test if same theory names are contained in signatures' stamps, |
289 |
i.e. if signatures belong to same theory but not necessarily to the |
|
290 |
same version of it*) |
|
3975 | 291 |
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
|
292 |
eq_sg (sg1, sg2) orelse eq_set_string (pairself (map (op !)) (s1, s2)); |
2185 | 293 |
|
294 |
(*test for drafts*) |
|
14645 | 295 |
fun is_draft (Sg ({stamps = ref name :: _, ...}, _)) = |
296 |
name = "" orelse ord name = ord "#"; |
|
297 |
||
298 |
||
299 |
(* syntax *) |
|
300 |
||
301 |
fun map_syntax f (Syn (syntax, trfuns)) = Syn (f syntax, trfuns); |
|
302 |
||
303 |
fun make_syntax sg (Syn (syntax, (atrs, trs, tr's, atr's))) = |
|
304 |
let |
|
305 |
fun apply (s, (f, _: stamp)) = (s, f sg); |
|
306 |
fun prep tab = map apply (Symtab.dest tab); |
|
307 |
fun prep' tab = map apply (Symtab.dest_multi tab); |
|
308 |
in syntax |> Syntax.extend_trfuns (prep atrs, prep trs, prep' tr's, prep' atr's) end; |
|
309 |
||
310 |
fun syn_of (sg as Sg ({syn, ...}, _)) = make_syntax sg syn; |
|
311 |
||
312 |
||
313 |
(* advanced translation functions *) |
|
314 |
||
315 |
fun extend_trfuns (atrs, trs, tr's, atr's) |
|
316 |
(Syn (syn, (parse_ast_trtab, parse_trtab, print_trtab, print_ast_trtab))) = |
|
317 |
Syn (syn, (Syntax.extend_trtab parse_ast_trtab atrs "parse ast translation", |
|
318 |
Syntax.extend_trtab parse_trtab trs "parse translation", |
|
319 |
Syntax.extend_tr'tab print_trtab tr's, |
|
320 |
Syntax.extend_tr'tab print_ast_trtab atr's)); |
|
321 |
||
322 |
fun merge_trfuns |
|
323 |
(parse_ast_trtab1, parse_trtab1, print_trtab1, print_ast_trtab1) |
|
324 |
(parse_ast_trtab2, parse_trtab2, print_trtab2, print_ast_trtab2) = |
|
325 |
(Syntax.merge_trtabs parse_ast_trtab1 parse_ast_trtab2 "parse ast translation", |
|
326 |
Syntax.merge_trtabs parse_trtab1 parse_trtab2 "parse translation", |
|
327 |
Syntax.merge_tr'tabs print_trtab1 print_trtab2, |
|
328 |
Syntax.merge_tr'tabs print_ast_trtab1 print_ast_trtab2); |
|
386 | 329 |
|
0 | 330 |
|
4568 | 331 |
(* classes and sorts *) |
332 |
||
7640 | 333 |
val classes = Type.classes o tsig_of; |
4844 | 334 |
val defaultS = Type.defaultS o tsig_of; |
4568 | 335 |
val subsort = Type.subsort o tsig_of; |
7640 | 336 |
val of_sort = Type.of_sort o tsig_of; |
337 |
val witness_sorts = Type.witness_sorts o tsig_of; |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
338 |
val universal_witness = Type.universal_witness o tsig_of; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
339 |
val typ_instance = Type.typ_instance o tsig_of; |
4568 | 340 |
|
4256 | 341 |
|
14828 | 342 |
|
4256 | 343 |
(** signature data **) |
344 |
||
345 |
(* errors *) |
|
346 |
||
4261 | 347 |
fun of_theory sg = "\nof theory " ^ str_of_sg sg; |
4256 | 348 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
349 |
fun err_inconsistent kinds = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
350 |
error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " data"); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
351 |
|
6961 | 352 |
fun err_method name kind e = |
353 |
(writeln ("Error while invoking " ^ quote kind ^ " " ^ name ^ " method"); raise e); |
|
4256 | 354 |
|
355 |
fun err_dup_init sg kind = |
|
356 |
error ("Duplicate initialization of " ^ quote kind ^ " data" ^ of_theory sg); |
|
357 |
||
358 |
fun err_uninit sg kind = |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
359 |
error ("Tried to access uninitialized " ^ quote kind ^ " data" ^ of_theory sg); |
4256 | 360 |
|
6040 | 361 |
(*Trying to access theory data using get / put operations from a different |
362 |
instance of the TheoryDataFun result. Typical cure: re-load all files*) |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
363 |
fun err_access sg kind = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
364 |
error ("Unauthorized access to " ^ quote kind ^ " data" ^ of_theory sg); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
365 |
|
4256 | 366 |
|
367 |
(* prepare data *) |
|
368 |
||
4489 | 369 |
val empty_data = Data Symtab.empty; |
4256 | 370 |
|
371 |
fun merge_data (Data tab1, Data tab2) = |
|
372 |
let |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
373 |
val data1 = map snd (Symtab.dest tab1); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
374 |
val data2 = map snd (Symtab.dest tab2); |
4256 | 375 |
val all_data = data1 @ data2; |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
376 |
val kinds = gen_distinct Object.eq_kind (map fst all_data); |
4256 | 377 |
|
378 |
fun entry data kind = |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
379 |
(case gen_assoc Object.eq_kind (data, kind) of |
4256 | 380 |
None => [] |
381 |
| Some x => [(kind, x)]); |
|
382 |
||
12310 | 383 |
fun merge_entries [(kind, (e, mths as (_, ext, _, _)))] = |
6961 | 384 |
(kind, (ext e handle exn => err_method "prep_ext" (Object.name_of_kind kind) exn, mths)) |
12310 | 385 |
| merge_entries [(kind, (e1, mths as (_, _, mrg, _))), (_, (e2, _))] = |
6961 | 386 |
(kind, (mrg (e1, e2) |
387 |
handle exn => err_method "merge" (Object.name_of_kind kind) exn, mths)) |
|
4256 | 388 |
| merge_entries _ = sys_error "merge_entries"; |
389 |
||
390 |
val data = map (fn k => merge_entries (entry data1 k @ entry data2 k)) kinds; |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
391 |
val data_idx = map (fn (k, x) => (Object.name_of_kind k, (k, x))) data; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
392 |
in |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
393 |
Data (Symtab.make data_idx) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
394 |
handle Symtab.DUPS dups => err_inconsistent dups |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
395 |
end; |
4256 | 396 |
|
397 |
fun prep_ext_data data = merge_data (data, empty_data); |
|
398 |
||
12310 | 399 |
fun init_data_sg sg (Data tab) kind e cp ext mrg prt = |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
400 |
let val name = Object.name_of_kind kind in |
12310 | 401 |
Data (Symtab.update_new ((name, (kind, (e, (cp, ext, mrg, prt)))), tab)) |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
402 |
handle Symtab.DUP _ => err_dup_init sg name |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
403 |
end; |
4256 | 404 |
|
405 |
||
406 |
(* access data *) |
|
407 |
||
408 |
fun data_kinds (Data tab) = map fst (Symtab.dest tab); |
|
409 |
||
410 |
fun lookup_data sg tab kind = |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
411 |
let val name = Object.name_of_kind kind in |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
412 |
(case Symtab.lookup (tab, name) of |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
413 |
Some (k, x) => |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
414 |
if Object.eq_kind (kind, k) then x |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
415 |
else err_access sg name |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
416 |
| None => err_uninit sg name) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
417 |
end; |
4256 | 418 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
419 |
fun get_data kind f (sg as Sg (_, {data = Data tab, ...})) = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
420 |
let val x = fst (lookup_data sg tab kind) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
421 |
in f x handle Match => Object.kind_error kind end; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
422 |
|
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
423 |
fun print_data kind (sg as Sg (_, {data = Data tab, ...})) = |
12310 | 424 |
let val (e, (_, _, _, prt)) = lookup_data sg tab kind |
6961 | 425 |
in prt sg e handle exn => err_method ("print" ^ of_theory sg) (Object.name_of_kind kind) exn end; |
4256 | 426 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
427 |
fun put_data_sg sg (Data tab) kind f x = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
428 |
Data (Symtab.update ((Object.name_of_kind kind, |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
429 |
(kind, (f x, snd (lookup_data sg tab kind)))), tab)); |
4256 | 430 |
|
431 |
||
432 |
||
433 |
(** build signatures **) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
434 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
435 |
fun ext_stamps stamps (id as ref name) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
436 |
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
|
437 |
if exists (equal name o !) stmps then |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
438 |
error ("Theory already contains a " ^ quote name ^ " component") |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
439 |
else id :: stmps |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
440 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
441 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
442 |
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
|
443 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
444 |
val id = ref name; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
445 |
val sign = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
446 |
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
|
447 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
448 |
(case self of |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
449 |
SgRef (Some r) => r := sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
450 |
| _ => sys_error "Sign.create_sign"); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
451 |
sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
452 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
453 |
|
3975 | 454 |
fun extend_sign keep extfun name decls |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
455 |
(sg as Sg ({id = _, stamps, syn}, {self, tsig, consts, path, spaces, data})) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
456 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
457 |
val _ = check_stale sg; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
458 |
val (self', data') = |
3975 | 459 |
if is_draft sg andalso keep then (self, data) |
4256 | 460 |
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
|
461 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
462 |
create_sign self' stamps name |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
463 |
(extfun sg (syn, tsig, consts, (path, spaces), data') decls) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
464 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
465 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
466 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
467 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
468 |
(** name spaces **) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
469 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
470 |
(* kinds *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
471 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
472 |
val classK = "class"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
473 |
val typeK = "type"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
474 |
val constK = "const"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
475 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
476 |
|
8725 | 477 |
(* declare and retrieve names *) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
478 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
479 |
fun space_of spaces kind = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
480 |
if_none (assoc (spaces, kind)) NameSpace.empty; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
481 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
482 |
(*input and output of qualified names*) |
3995 | 483 |
fun intrn spaces kind = NameSpace.intern (space_of spaces kind); |
484 |
fun extrn spaces kind = NameSpace.extern (space_of spaces kind); |
|
5175 | 485 |
fun cond_extrn spaces kind = NameSpace.cond_extern (space_of spaces kind); |
6845 | 486 |
fun cond_extrn_table spaces kind tab = NameSpace.cond_extern_table (space_of spaces kind) tab; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
487 |
|
8725 | 488 |
(*add / hide names*) |
489 |
fun change_space f spaces kind x = overwrite (spaces, (kind, f (space_of spaces kind, x))); |
|
8730 | 490 |
fun add_names x = change_space NameSpace.extend x; |
12588 | 491 |
fun hide_names b x = change_space (NameSpace.hide b) x; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
492 |
|
3810 | 493 |
(*make full names*) |
11501 | 494 |
fun full _ "" = error "Attempt to declare empty name \"\"" |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
495 |
| full None bname = bname |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
496 |
| full (Some path) bname = |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
497 |
if NameSpace.is_qualified bname then |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
498 |
error ("Attempt to declare qualified name " ^ quote bname) |
14688 | 499 |
else |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
500 |
let val name = NameSpace.pack (path @ [bname]) in |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
501 |
if Syntax.is_identifier bname then () |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
502 |
else warning ("Declared non-identifier " ^ quote name); name |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
503 |
end; |
3937 | 504 |
|
505 |
(*base name*) |
|
506 |
val base_name = NameSpace.base; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
507 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
508 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
509 |
(* intern / extern names *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
510 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
511 |
local |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
512 |
(*prepare mapping of names*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
513 |
fun mapping f add_xs t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
514 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
515 |
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
|
516 |
val table = mapfilter f' (add_xs (t, [])); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
517 |
fun lookup x = if_none (assoc (table, x)) x; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
518 |
in lookup end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
519 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
520 |
(*intern / extern typ*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
521 |
fun trn_typ trn T = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
522 |
T |> map_typ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
523 |
(mapping (trn classK) add_typ_classes T) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
524 |
(mapping (trn typeK) add_typ_tycons T); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
525 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
526 |
(*intern / extern term*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
527 |
fun trn_term trn t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
528 |
t |> map_term |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
529 |
(mapping (trn classK) add_term_classes t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
530 |
(mapping (trn typeK) add_term_tycons t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
531 |
(mapping (trn constK) add_term_consts t); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
532 |
|
3975 | 533 |
val spaces_of = #spaces o rep_sg; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
534 |
in |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
535 |
fun intrn_class spaces = intrn spaces classK; |
14383
09aab4710789
Printing functions now use cond_extrn instead of extrn
berghofe
parents:
12785
diff
changeset
|
536 |
fun extrn_class spaces = cond_extrn spaces classK; |
3937 | 537 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
538 |
val intrn_sort = map o intrn_class; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
539 |
val intrn_typ = trn_typ o intrn; |
3937 | 540 |
val intrn_term = trn_term o intrn; |
541 |
||
542 |
val extrn_sort = map o extrn_class; |
|
14383
09aab4710789
Printing functions now use cond_extrn instead of extrn
berghofe
parents:
12785
diff
changeset
|
543 |
val extrn_typ = trn_typ o cond_extrn; |
09aab4710789
Printing functions now use cond_extrn instead of extrn
berghofe
parents:
12785
diff
changeset
|
544 |
val extrn_term = trn_term o cond_extrn; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
545 |
|
3805 | 546 |
fun intrn_tycons spaces T = |
547 |
map_typ I (mapping (intrn spaces typeK) add_typ_tycons T) T; |
|
548 |
||
3810 | 549 |
val intern = intrn o spaces_of; |
3855 | 550 |
val extern = extrn o spaces_of; |
5175 | 551 |
val cond_extern = cond_extrn o spaces_of; |
6845 | 552 |
fun cond_extern_table sg = cond_extrn_table (spaces_of sg); |
3937 | 553 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
554 |
fun extern_typ (sg as Sg (_, {spaces, ...})) T = |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
555 |
if ! NameSpace.long_names then T else extrn_typ spaces T; |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
556 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
557 |
val intern_class = intrn_class o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
558 |
val intern_sort = intrn_sort o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
559 |
val intern_typ = intrn_typ o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
560 |
val intern_term = intrn_term o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
561 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
562 |
fun intern_tycon sg = intrn (spaces_of sg) typeK; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
563 |
fun intern_const sg = intrn (spaces_of sg) constK; |
3937 | 564 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
565 |
val intern_tycons = intrn_tycons o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
566 |
|
3975 | 567 |
val full_name = full o #path o rep_sg; |
11501 | 568 |
|
569 |
fun full_name_path sg elems = |
|
570 |
full (Some (if_none (#path (rep_sg sg)) [] @ NameSpace.unpack elems)); |
|
571 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
572 |
end; |
620 | 573 |
|
402 | 574 |
|
0 | 575 |
|
14645 | 576 |
(** partial Pure signature **) |
577 |
||
578 |
val pure_syn = |
|
579 |
Syn (Syntax.pure_syn, (Symtab.empty, Symtab.empty, Symtab.empty, Symtab.empty)); |
|
580 |
||
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
581 |
val dummy_sg = make_sign (ref "", SgRef None, Type.empty_tsig, |
14645 | 582 |
Symtab.empty, pure_syn, Some [], [], empty_data, []); |
583 |
||
584 |
val pre_pure = |
|
585 |
create_sign (SgRef (Some (ref dummy_sg))) [] "#" |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
586 |
(pure_syn, Type.empty_tsig, Symtab.empty, (Some [], []), empty_data); |
14645 | 587 |
|
588 |
val PureN = "Pure"; |
|
589 |
val CPureN = "CPure"; |
|
590 |
||
591 |
||
592 |
||
4249 | 593 |
(** pretty printing of terms, types etc. **) |
3937 | 594 |
|
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
595 |
fun pretty_term' syn (sg as Sg ({stamps, ...}, {spaces, ...})) t = |
3937 | 596 |
Syntax.pretty_term syn |
14645 | 597 |
(exists (equal CPureN o !) stamps) |
5175 | 598 |
(if ! NameSpace.long_names then t else extrn_term spaces t); |
3937 | 599 |
|
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
600 |
fun pretty_term sg = pretty_term' (syn_of sg) sg; |
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
601 |
|
14700
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
602 |
fun pretty_typ sg T = |
2f885b7e5ba7
reimplementation of HOL records; only one type is created for
schirmer
parents:
14688
diff
changeset
|
603 |
Syntax.pretty_typ (syn_of sg) (extern_typ sg T); |
3937 | 604 |
|
14645 | 605 |
fun pretty_sort (sg as Sg (_, {spaces, ...})) S = |
606 |
Syntax.pretty_sort (syn_of sg) |
|
5175 | 607 |
(if ! NameSpace.long_names then S else extrn_sort spaces S); |
3937 | 608 |
|
14828 | 609 |
fun pretty_classrel sg cs = Pretty.block (flat |
610 |
(separate [Pretty.str " <", Pretty.brk 1] (map (single o pretty_sort sg o single) cs))); |
|
3937 | 611 |
|
612 |
fun pretty_arity sg (t, Ss, S) = |
|
613 |
let |
|
614 |
val t' = cond_extern sg typeK t; |
|
615 |
val dom = |
|
616 |
if null Ss then [] |
|
617 |
else [Pretty.list "(" ")" (map (pretty_sort sg) Ss), Pretty.brk 1]; |
|
618 |
in |
|
619 |
Pretty.block |
|
620 |
([Pretty.str (t' ^ " ::"), Pretty.brk 1] @ dom @ [pretty_sort sg S]) |
|
621 |
end; |
|
622 |
||
14828 | 623 |
val string_of_term = Pretty.string_of oo pretty_term; |
624 |
val string_of_typ = Pretty.string_of oo pretty_typ; |
|
625 |
val string_of_sort = Pretty.string_of oo pretty_sort; |
|
626 |
val string_of_classrel = Pretty.string_of oo pretty_classrel; |
|
627 |
val string_of_arity = Pretty.string_of oo pretty_arity; |
|
3937 | 628 |
|
629 |
fun pprint_term sg = Pretty.pprint o Pretty.quote o (pretty_term sg); |
|
630 |
fun pprint_typ sg = Pretty.pprint o Pretty.quote o (pretty_typ sg); |
|
631 |
||
14828 | 632 |
fun pp sg = Pretty.pp (pretty_term sg) (pretty_typ sg) (pretty_sort sg) |
633 |
(pretty_classrel sg) (pretty_arity sg); |
|
634 |
||
3937 | 635 |
|
636 |
||
8898 | 637 |
(** read sorts **) (*exception ERROR*) |
638 |
||
639 |
fun err_in_sort s = |
|
640 |
error ("The error(s) above occurred in sort " ^ quote s); |
|
641 |
||
14645 | 642 |
fun rd_sort sg syn tsig spaces str = |
643 |
let val S = intrn_sort spaces (Syntax.read_sort (make_syntax sg syn) str |
|
644 |
handle ERROR => err_in_sort str) |
|
8898 | 645 |
in Type.cert_sort tsig S handle TYPE (msg, _, _) => (error_msg msg; err_in_sort str) end; |
646 |
||
647 |
(*read and certify sort wrt a signature*) |
|
14645 | 648 |
fun read_sort (sg as Sg ({syn, ...}, {tsig, spaces, ...})) str = |
649 |
(check_stale sg; rd_sort sg syn tsig spaces str); |
|
8898 | 650 |
|
14645 | 651 |
fun cert_sort _ _ tsig _ = Type.cert_sort tsig; |
8898 | 652 |
|
653 |
||
654 |
||
562 | 655 |
(** read types **) (*exception ERROR*) |
656 |
||
657 |
fun err_in_type s = |
|
658 |
error ("The error(s) above occurred in type " ^ quote s); |
|
659 |
||
4227 | 660 |
fun rd_raw_typ syn tsig spaces def_sort str = |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
661 |
intrn_tycons spaces (Syntax.read_typ syn |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
662 |
(TypeInfer.get_sort tsig def_sort (intrn_sort spaces)) (intrn_sort spaces) str |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
663 |
handle ERROR => err_in_type str); |
4227 | 664 |
|
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
665 |
fun read_raw_typ' syn (sg as Sg (_, {tsig, spaces, ...}), def_sort) str = |
4227 | 666 |
(check_stale sg; rd_raw_typ syn tsig spaces def_sort str); |
667 |
||
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
668 |
fun read_raw_typ (sg, def_sort) = read_raw_typ' (syn_of sg) (sg, def_sort); |
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
669 |
|
562 | 670 |
(*read and certify typ wrt a signature*) |
9504 | 671 |
local |
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
672 |
fun read_typ_aux rd cert (sg, def_sort) str = |
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
673 |
(cert (tsig_of sg) (rd (sg, def_sort) str) |
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
674 |
handle TYPE (msg, _, _) => (error_msg msg; err_in_type str)); |
9504 | 675 |
in |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
676 |
val read_typ = read_typ_aux read_raw_typ Type.cert_typ; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
677 |
val read_typ_raw = read_typ_aux read_raw_typ Type.cert_typ_raw; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
678 |
fun read_typ' syn = read_typ_aux (read_raw_typ' syn) Type.cert_typ; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
679 |
fun read_typ_raw' syn = read_typ_aux (read_raw_typ' syn) Type.cert_typ_raw; |
9504 | 680 |
end; |
562 | 681 |
|
682 |
||
683 |
||
8898 | 684 |
(** certify classes, sorts, types and terms **) (*exception TYPE*) |
251 | 685 |
|
8898 | 686 |
val certify_class = Type.cert_class o tsig_of; |
687 |
val certify_sort = Type.cert_sort o tsig_of; |
|
3975 | 688 |
val certify_typ = Type.cert_typ o tsig_of; |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
689 |
val certify_typ_raw = Type.cert_typ_raw o tsig_of; |
10443
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents:
10404
diff
changeset
|
690 |
|
11720 | 691 |
fun certify_tyname sg c = |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
692 |
if is_some (Symtab.lookup (#types (Type.rep_tsig (tsig_of sg)), c)) then c |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
693 |
else raise TYPE ("Undeclared type constructor: " ^ quote c, [], []); |
11720 | 694 |
|
10443
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents:
10404
diff
changeset
|
695 |
fun certify_const sg c = |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
696 |
if is_some (const_type sg c) then c |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
697 |
else raise TYPE ("Undeclared constant: " ^ quote c, [], []); |
251 | 698 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
699 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
700 |
(* certify_term *) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
701 |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
702 |
(*check for duplicate occurrences of TFree/TVar with distinct sorts*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
703 |
fun nodup_tvars (env, Type (_, Ts)) = nodup_tvars_list (env, Ts) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
704 |
| nodup_tvars (env as (tfrees, tvars), T as TFree (v as (a, S))) = |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
705 |
(case assoc_string (tfrees, a) of |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
706 |
Some S' => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
707 |
if S = S' then env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
708 |
else raise TYPE ("Type variable " ^ quote a ^ |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
709 |
" has two distinct sorts", [TFree (a, S'), T], []) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
710 |
| None => (v :: tfrees, tvars)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
711 |
| nodup_tvars (env as (tfrees, tvars), T as TVar (v as (a, S))) = |
2979 | 712 |
(case assoc_string_int (tvars, a) of |
713 |
Some S' => |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
714 |
if S = S' then env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
715 |
else raise TYPE ("Type variable " ^ quote (Syntax.string_of_vname a) ^ |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
716 |
" has two distinct sorts", [TVar (a, S'), T], []) |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
717 |
| None => (tfrees, v :: tvars)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
718 |
(*equivalent to foldl nodup_tvars_list, but 3X faster under Poly/ML*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
719 |
and nodup_tvars_list (env, []) = env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
720 |
| nodup_tvars_list (env, T :: Ts) = nodup_tvars_list (nodup_tvars (env, T), Ts); |
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
721 |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
722 |
(*check for duplicate occurrences of Free/Var with distinct types*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
723 |
fun nodup_vars tm = |
2979 | 724 |
let |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
725 |
fun nodups (envs as (env as (frees, vars), envT)) tm = |
2979 | 726 |
(case tm of |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
727 |
Const (c, T) => (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
728 |
| Free (v as (a, T)) => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
729 |
(case assoc_string (frees, a) of |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
730 |
Some T' => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
731 |
if T = T' then (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
732 |
else raise TYPE ("Variable " ^ quote a ^ |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
733 |
" has two distinct types", [T', T], []) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
734 |
| None => ((v :: frees, vars), nodup_tvars (envT, T))) |
2979 | 735 |
| Var (v as (ixn, T)) => |
736 |
(case assoc_string_int (vars, ixn) of |
|
737 |
Some T' => |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
738 |
if T = T' then (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
739 |
else raise TYPE ("Variable " ^ quote (Syntax.string_of_vname ixn) ^ |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
740 |
" has two distinct types", [T', T], []) |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
741 |
| None => ((frees, v :: vars), nodup_tvars (envT, T))) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
742 |
| Bound _ => envs |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
743 |
| Abs (_, T, t) => nodups (env, nodup_tvars (envT, T)) t |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
744 |
| s $ t => nodups (nodups envs s) t) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
745 |
in nodups (([], []), ([], [])) tm; tm end; |
2979 | 746 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
747 |
(*compute and check type of the term*) |
14828 | 748 |
fun type_check pp sg tm = |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
749 |
let |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
750 |
fun err_appl why bs t T u U = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
751 |
let |
10404 | 752 |
val xs = map Free bs; (*we do not rename here*) |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
753 |
val t' = subst_bounds (xs, t); |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
754 |
val u' = subst_bounds (xs, u); |
14828 | 755 |
val text = cat_lines |
756 |
(TypeInfer.appl_error (Syntax.pp_show_brackets pp) why t' T u' U); |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
757 |
in raise TYPE (text, [T, U], [t', u']) end; |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
758 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
759 |
fun typ_of (_, Const (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
760 |
| typ_of (_, Free (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
761 |
| typ_of (_, Var (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
762 |
| typ_of (bs, Bound i) = snd (nth_elem (i, bs) handle LIST _ => |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
763 |
raise TYPE ("Loose bound variable: B." ^ string_of_int i, [], [Bound i])) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
764 |
| typ_of (bs, Abs (x, T, body)) = T --> typ_of ((x, T) :: bs, body) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
765 |
| typ_of (bs, t $ u) = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
766 |
let val T = typ_of (bs, t) and U = typ_of (bs, u) in |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
767 |
(case T of |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
768 |
Type ("fun", [T1, T2]) => |
14828 | 769 |
if T1 = U then T2 else err_appl "Incompatible operand type" bs t T u U |
770 |
| _ => err_appl "Operator not of function type" bs t T u U) |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
771 |
end; |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
772 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
773 |
in typ_of ([], tm) end; |
0 | 774 |
|
14828 | 775 |
fun certify_term pp sg tm = |
251 | 776 |
let |
3969 | 777 |
val _ = check_stale sg; |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
778 |
|
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
779 |
val tm' = Term.map_term_types (Type.cert_typ (tsig_of sg)) tm; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
780 |
val tm' = if tm = tm' then tm else tm'; (*avoid copying of already normal term*) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
781 |
|
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
782 |
fun err msg = raise TYPE (msg, [], [tm']); |
3969 | 783 |
|
14828 | 784 |
fun show_const a T = quote a ^ " :: " ^ Pretty.string_of_typ pp T; |
169 | 785 |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
786 |
fun check_atoms (t $ u) = (check_atoms t; check_atoms u) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
787 |
| check_atoms (Abs (_, _, t)) = check_atoms t |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
788 |
| check_atoms (Const (a, T)) = |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
789 |
(case const_type sg a of |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
790 |
None => err ("Undeclared constant " ^ show_const a T) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
791 |
| Some U => |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
792 |
if typ_instance sg (T, U) then () |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
793 |
else err ("Illegal type for constant " ^ show_const a T)) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
794 |
| check_atoms (Var ((x, i), _)) = |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
795 |
if i < 0 then err ("Malformed variable: " ^ quote x) else () |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
796 |
| check_atoms _ = (); |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
797 |
in |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
798 |
check_atoms tm'; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
799 |
nodup_vars tm'; |
14828 | 800 |
(tm', type_check pp sg tm', maxidx_of_term tm') |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
801 |
end; |
251 | 802 |
|
803 |
||
804 |
||
14828 | 805 |
(** instantiation **) |
806 |
||
807 |
fun inst_typ_tvars sg = Type.inst_typ_tvars (pp sg) (tsig_of sg); |
|
808 |
fun inst_term_tvars sg = Type.inst_term_tvars (pp sg) (tsig_of sg); |
|
809 |
||
810 |
||
811 |
||
583 | 812 |
(** infer_types **) (*exception ERROR*) |
251 | 813 |
|
2979 | 814 |
(* |
815 |
def_type: partial map from indexnames to types (constrains Frees, Vars) |
|
816 |
def_sort: partial map from indexnames to sorts (constrains TFrees, TVars) |
|
817 |
used: list of already used type variables |
|
818 |
freeze: if true then generated parameters are turned into TFrees, else TVars |
|
4249 | 819 |
|
820 |
termss: lists of alternative parses (only one combination should be type-correct) |
|
821 |
typs: expected types |
|
2979 | 822 |
*) |
823 |
||
14828 | 824 |
fun infer_types_simult pp sg def_type def_sort used freeze args = |
251 | 825 |
let |
3975 | 826 |
val tsig = tsig_of sg; |
4249 | 827 |
|
828 |
val termss = foldr multiply (map fst args, [[]]); |
|
829 |
val typs = |
|
830 |
map (fn (_, T) => certify_typ sg T handle TYPE (msg, _, _) => error msg) args; |
|
169 | 831 |
|
14828 | 832 |
fun infer ts = OK (TypeInfer.infer_types (Syntax.pp_show_brackets pp) tsig |
833 |
(const_type sg) def_type def_sort (intern_const sg) (intern_tycons sg) |
|
834 |
(intern_sort sg) used freeze typs ts) |
|
4249 | 835 |
handle TYPE (msg, _, _) => Error msg; |
623 | 836 |
|
4249 | 837 |
val err_results = map infer termss; |
838 |
val errs = mapfilter get_error err_results; |
|
839 |
val results = mapfilter get_ok err_results; |
|
840 |
||
14645 | 841 |
val ambiguity = length termss; |
842 |
||
4249 | 843 |
fun ambig_msg () = |
844 |
if ambiguity > 1 andalso ambiguity <= ! Syntax.ambiguity_level |
|
845 |
then |
|
846 |
error_msg "Got more than one parse tree.\n\ |
|
3805 | 847 |
\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
|
848 |
else (); |
4249 | 849 |
in |
850 |
if null results then (ambig_msg (); error (cat_lines errs)) |
|
851 |
else if length results = 1 then |
|
852 |
(if ambiguity > ! Syntax.ambiguity_level then |
|
853 |
warning "Fortunately, only one parse tree is type correct.\n\ |
|
854 |
\You may still want to disambiguate your grammar or your input." |
|
855 |
else (); hd results) |
|
856 |
else (ambig_msg (); error ("More than one term is type correct:\n" ^ |
|
14828 | 857 |
cat_lines (map (Pretty.string_of_term pp) (flat (map fst results))))) |
4249 | 858 |
end; |
623 | 859 |
|
4249 | 860 |
|
14828 | 861 |
fun infer_types pp sg def_type def_sort used freeze tsT = |
862 |
apfst hd (infer_types_simult pp sg def_type def_sort used freeze [tsT]); |
|
251 | 863 |
|
864 |
||
8607 | 865 |
(** read_def_terms **) |
866 |
||
867 |
(*read terms, infer types*) |
|
14828 | 868 |
fun read_def_terms' pp syn (sign, types, sorts) used freeze sTs = |
8607 | 869 |
let |
870 |
fun read (s, T) = |
|
871 |
let val T' = certify_typ sign T handle TYPE (msg, _, _) => error msg |
|
872 |
in (Syntax.read syn T' s, T') end; |
|
873 |
val tsTs = map read sTs; |
|
14828 | 874 |
in infer_types_simult pp sign types sorts used freeze tsTs end; |
8607 | 875 |
|
14645 | 876 |
fun read_def_terms (sign, types, sorts) = |
14828 | 877 |
read_def_terms' (pp sign) (syn_of sign) (sign, types, sorts); |
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
878 |
|
8802 | 879 |
fun simple_read_term sign T s = |
880 |
(read_def_terms (sign, K None, K None) [] true [(s, T)] |
|
881 |
handle ERROR => error ("The error(s) above occurred for " ^ s)) |> #1 |> hd; |
|
882 |
||
8607 | 883 |
|
2979 | 884 |
|
623 | 885 |
(** extend signature **) (*exception ERROR*) |
886 |
||
620 | 887 |
(** signature extension functions **) (*exception ERROR*) |
386 | 888 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
889 |
fun decls_of path name_of mfixs = |
3810 | 890 |
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
|
891 |
|
14645 | 892 |
fun no_read _ _ _ _ decl = decl; |
386 | 893 |
|
894 |
||
895 |
(* add default sort *) |
|
896 |
||
14645 | 897 |
fun ext_defS prep_sort sg (syn, tsig, ctab, (path, spaces), data) S = |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
898 |
(syn, Type.set_defsort (prep_sort sg syn tsig spaces S) tsig, |
14645 | 899 |
ctab, (path, spaces), data); |
8898 | 900 |
|
14645 | 901 |
fun ext_defsort arg = ext_defS rd_sort arg; |
8927 | 902 |
fun ext_defsort_i arg = ext_defS cert_sort arg; |
386 | 903 |
|
904 |
||
905 |
(* add type constructors *) |
|
906 |
||
14645 | 907 |
fun ext_types _ (syn, tsig, ctab, (path, spaces), data) types = |
14856 | 908 |
let |
909 |
val decls = decls_of path Syntax.type_name types; |
|
910 |
val tsig' = Type.add_types decls tsig; |
|
911 |
val log_types = Type.logical_types tsig'; |
|
912 |
in |
|
913 |
(map_syntax (Syntax.extend_log_types log_types o Syntax.extend_type_gram types) syn, |
|
914 |
tsig', ctab, (path, add_names spaces typeK (map fst decls)), data) |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
915 |
end; |
386 | 916 |
|
917 |
||
918 |
(* add type abbreviations *) |
|
919 |
||
14645 | 920 |
fun read_abbr sg syn tsig spaces (t, vs, rhs_src) = |
921 |
(t, vs, rd_raw_typ (make_syntax sg syn) tsig spaces (K None) rhs_src) |
|
386 | 922 |
handle ERROR => error ("in type abbreviation " ^ t); |
923 |
||
14645 | 924 |
fun ext_abbrs rd_abbr sg (syn, tsig, ctab, (path, spaces), data) abbrs = |
386 | 925 |
let |
926 |
fun mfix_of (t, vs, _, mx) = (t, length vs, mx); |
|
14645 | 927 |
val syn' = map_syntax (Syntax.extend_type_gram (map mfix_of abbrs)) syn; |
386 | 928 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
929 |
val abbrs' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
930 |
map (fn (t, vs, rhs, mx) => |
3810 | 931 |
(full path (Syntax.type_name t mx), vs, rhs)) abbrs; |
3805 | 932 |
val spaces' = add_names spaces typeK (map #1 abbrs'); |
14645 | 933 |
val decls = map (rd_abbr sg syn' tsig spaces') abbrs'; |
386 | 934 |
in |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
935 |
(syn', Type.add_abbrs decls tsig, ctab, (path, spaces'), data) |
386 | 936 |
end; |
937 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
938 |
fun ext_tyabbrs abbrs = ext_abbrs read_abbr abbrs; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
939 |
fun ext_tyabbrs_i abbrs = ext_abbrs no_read abbrs; |
386 | 940 |
|
941 |
||
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
942 |
(* add nonterminals *) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
943 |
|
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
944 |
fun ext_nonterminals _ (syn, tsig, ctab, (path, spaces), data) bnames = |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
945 |
let val names = map (full path) bnames in |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
946 |
(map_syntax (Syntax.extend_consts names) syn, |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
947 |
Type.add_nonterminals names tsig, ctab, |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
948 |
(path, add_names spaces typeK names), data) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
949 |
end; |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
950 |
|
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
951 |
|
386 | 952 |
(* add type arities *) |
953 |
||
14645 | 954 |
fun ext_ars int prep_sort sg (syn, tsig, ctab, (path, spaces), data) arities = |
386 | 955 |
let |
14645 | 956 |
val prepS = prep_sort sg syn tsig spaces; |
8898 | 957 |
fun prep_arity (c, Ss, S) = |
958 |
(if int then intrn spaces typeK c else c, map prepS Ss, prepS S); |
|
14828 | 959 |
val tsig' = Type.add_arities (pp sg) (map prep_arity arities) tsig; |
14856 | 960 |
in (syn, tsig', ctab, (path, spaces), data) end; |
386 | 961 |
|
14645 | 962 |
fun ext_arities arg = ext_ars true rd_sort arg; |
8927 | 963 |
fun ext_arities_i arg = ext_ars false cert_sort arg; |
8898 | 964 |
|
386 | 965 |
|
966 |
(* add term constants and syntax *) |
|
967 |
||
3805 | 968 |
fun const_name path c mx = |
3810 | 969 |
full path (Syntax.const_name c mx); |
3805 | 970 |
|
386 | 971 |
fun err_in_const c = |
972 |
error ("in declaration of constant " ^ quote c); |
|
973 |
||
974 |
fun err_dup_consts cs = |
|
975 |
error ("Duplicate declaration of constant(s) " ^ commas_quote cs); |
|
976 |
||
251 | 977 |
|
14645 | 978 |
fun read_const sg syn tsig (path, spaces) (c, ty_src, mx) = |
979 |
(c, rd_raw_typ (make_syntax sg syn) tsig spaces (K None) ty_src, mx) |
|
3805 | 980 |
handle ERROR => err_in_const (const_name path c mx); |
386 | 981 |
|
14645 | 982 |
fun ext_cnsts rd_const syn_only prmode sg (syn, tsig, ctab, (path, spaces), data) |
983 |
raw_consts = |
|
386 | 984 |
let |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
985 |
val prep_typ = compress_type o Type.varifyT o Type.no_tvars o |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
986 |
(if syn_only then Type.cert_typ_syntax tsig else Term.no_dummyT o Type.cert_typ tsig); |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
987 |
fun prep_const (c, ty, mx) = (c, prep_typ ty, mx) handle TYPE (msg, _, _) => |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
988 |
(error_msg msg; err_in_const (const_name path c mx)); |
386 | 989 |
|
14645 | 990 |
val consts = map (prep_const o rd_const sg syn tsig (path, spaces)) raw_consts; |
386 | 991 |
val decls = |
992 |
if syn_only then [] |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
993 |
else decls_of path Syntax.const_name consts; |
386 | 994 |
in |
14645 | 995 |
(map_syntax (Syntax.extend_const_gram prmode consts) syn, tsig, |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
996 |
Symtab.extend (ctab, map (fn (c, T) => (c, (T, stamp ()))) decls) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
997 |
handle Symtab.DUPS cs => err_dup_consts cs, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
998 |
(path, add_names spaces constK (map fst decls)), data) |
386 | 999 |
end; |
1000 |
||
14645 | 1001 |
fun ext_consts_i x = ext_cnsts no_read false ("", true) x; |
1002 |
fun ext_consts x = ext_cnsts read_const false ("", true) x; |
|
1003 |
fun ext_syntax_i x = ext_cnsts no_read true ("", true) x; |
|
1004 |
fun ext_syntax x = ext_cnsts read_const true ("", true) x; |
|
1005 |
fun ext_modesyntax_i x y (prmode, consts) = ext_cnsts no_read true prmode x y consts; |
|
1006 |
fun ext_modesyntax x y (prmode, consts) = ext_cnsts read_const true prmode x y consts; |
|
386 | 1007 |
|
1008 |
||
1009 |
(* add type classes *) |
|
1010 |
||
1011 |
fun const_of_class c = c ^ "_class"; |
|
1012 |
||
1013 |
fun class_of_const c_class = |
|
1014 |
let |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1015 |
val c = implode (take (size c_class - size "_class", explode c_class)); |
386 | 1016 |
in |
1017 |
if const_of_class c = c_class then c |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1018 |
else raise TERM ("class_of_const: bad name " ^ quote c_class, []) |
386 | 1019 |
end; |
1020 |
||
1021 |
||
14645 | 1022 |
fun ext_classes int sg (syn, tsig, ctab, (path, spaces), data) classes = |
386 | 1023 |
let |
562 | 1024 |
val names = map fst classes; |
386 | 1025 |
val consts = |
1026 |
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
|
1027 |
|
3810 | 1028 |
val full_names = map (full path) names; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1029 |
val spaces' = add_names spaces classK full_names; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1030 |
val intrn = if int then map (intrn_class spaces') else I; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1031 |
val classes' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1032 |
ListPair.map (fn (c, (_, cs)) => (c, intrn cs)) (full_names, classes); |
386 | 1033 |
in |
14645 | 1034 |
ext_consts_i sg |
1035 |
(map_syntax (Syntax.extend_consts names) syn, |
|
14828 | 1036 |
Type.add_classes (pp sg) classes' tsig, ctab, (path, spaces'), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1037 |
consts |
386 | 1038 |
end; |
1039 |
||
1040 |
||
2963 | 1041 |
(* add to classrel *) |
421 | 1042 |
|
14828 | 1043 |
fun ext_classrel int sg (syn, tsig, ctab, (path, spaces), data) pairs = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1044 |
let val intrn = if int then map (pairself (intrn_class spaces)) else I in |
14828 | 1045 |
(syn, Type.add_classrel (pp sg) (intrn pairs) tsig, ctab, (path, spaces), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1046 |
end; |
421 | 1047 |
|
1048 |
||
14645 | 1049 |
(* add translation functions *) |
1050 |
||
1051 |
fun ext_trfs ext non_typed sg (syn, tsig, ctab, names, data) (atrs, trs, tr's, atr's) = |
|
1052 |
let val syn' = syn |> ext (atrs, trs, map (apsnd non_typed) tr's, atr's) |
|
1053 |
in make_syntax sg syn'; (syn', tsig, ctab, names, data) end; |
|
1054 |
||
1055 |
fun ext_trfsT ext sg (syn, tsig, ctab, names, data) tr's = |
|
1056 |
let val syn' = syn |> ext ([], [], tr's, []) |
|
1057 |
in make_syntax sg syn'; (syn', tsig, ctab, names, data) end; |
|
1058 |
||
1059 |
fun ext_trfuns sg = ext_trfs (map_syntax o Syntax.extend_trfuns) Syntax.non_typed_tr' sg; |
|
1060 |
fun ext_trfunsT sg = ext_trfsT (map_syntax o Syntax.extend_trfuns) sg; |
|
1061 |
fun ext_advanced_trfuns sg = ext_trfs extend_trfuns Syntax.non_typed_tr'' sg; |
|
1062 |
fun ext_advanced_trfunsT sg = ext_trfsT extend_trfuns sg; |
|
1063 |
||
1064 |
||
1065 |
(* add token translation functions *) |
|
1066 |
||
1067 |
fun ext_tokentrfuns sg (syn, tsig, ctab, names, data) args = |
|
1068 |
(map_syntax (Syntax.extend_tokentrfuns args) syn, tsig, ctab, names, data); |
|
1069 |
||
1070 |
||
4619 | 1071 |
(* add translation rules *) |
1072 |
||
14645 | 1073 |
fun ext_trrules sg (syn, tsig, ctab, (path, spaces), data) args = |
1074 |
(syn |> map_syntax (Syntax.extend_trrules (make_syntax sg syn) |
|
1075 |
(map (Syntax.map_trrule (fn (root, str) => (intrn spaces typeK root, str))) args)), |
|
1076 |
tsig, ctab, (path, spaces), data); |
|
4619 | 1077 |
|
14645 | 1078 |
fun ext_trrules_i _ (syn, tsig, ctab, names, data) args = |
1079 |
(syn |> map_syntax (Syntax.extend_trrules_i args), tsig, ctab, names, data); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1080 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1081 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1082 |
(* add to path *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1083 |
|
14645 | 1084 |
fun ext_path _ (syn, tsig, ctab, (path, spaces), data) elems = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1085 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1086 |
val path' = |
11501 | 1087 |
if elems = "//" then None |
1088 |
else if elems = "/" then Some [] |
|
1089 |
else if elems = ".." andalso is_some path andalso path <> Some [] then |
|
1090 |
Some (fst (split_last (the path))) |
|
1091 |
else Some (if_none path [] @ NameSpace.unpack elems); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1092 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1093 |
(syn, tsig, ctab, (path', spaces), data) |
10404 | 1094 |
end; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1095 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1096 |
|
8725 | 1097 |
(* change name space *) |
1098 |
||
14645 | 1099 |
fun ext_add_space _ (syn, tsig, ctab, (path, spaces), data) (kind, names) = |
8725 | 1100 |
(syn, tsig, ctab, (path, add_names spaces kind names), data); |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1101 |
|
14645 | 1102 |
fun ext_hide_space _ (syn, tsig, ctab, (path, spaces), data) (b, (kind, xnames)) = |
12588 | 1103 |
(syn, tsig, ctab, (path, hide_names b spaces kind (map (intrn spaces kind) xnames)), data); |
8725 | 1104 |
|
14645 | 1105 |
fun ext_hide_space_i _ (syn, tsig, ctab, (path, spaces), data) (b, (kind, names)) = |
12588 | 1106 |
(syn, tsig, ctab, (path, hide_names b spaces kind names), data); |
386 | 1107 |
|
1108 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1109 |
(* signature data *) |
386 | 1110 |
|
12310 | 1111 |
fun ext_init_data sg (syn, tsig, ctab, names, data) (kind, (e, cp, ext, mrg, prt)) = |
1112 |
(syn, tsig, ctab, names, init_data_sg sg data kind e cp ext mrg prt); |
|
386 | 1113 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1114 |
fun ext_put_data sg (syn, tsig, ctab, names, data) (kind, f, x) = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1115 |
(syn, tsig, ctab, names, put_data_sg sg data kind f x); |
386 | 1116 |
|
1117 |
||
12310 | 1118 |
fun copy_data (k, (e, mths as (cp, _, _, _))) = |
6961 | 1119 |
(k, (cp e handle exn => err_method "copy" (Object.name_of_kind k) exn, mths)); |
6546 | 1120 |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1121 |
fun copy (sg as Sg ({id = _, stamps, syn}, {self, tsig, consts, path, spaces, data})) = |
6546 | 1122 |
let |
1123 |
val _ = check_stale sg; |
|
1124 |
val self' = SgRef (Some (ref sg)); |
|
1125 |
val Data tab = data; |
|
1126 |
val data' = Data (Symtab.map copy_data tab); |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1127 |
in create_sign self' stamps "#" (syn, tsig, consts, (path, spaces), data') end; |
6546 | 1128 |
|
1129 |
||
386 | 1130 |
(* the external interfaces *) |
1131 |
||
14645 | 1132 |
val add_classes = extend_sign true (ext_classes true) "#"; |
1133 |
val add_classes_i = extend_sign true (ext_classes false) "#"; |
|
1134 |
val add_classrel = extend_sign true (ext_classrel true) "#"; |
|
1135 |
val add_classrel_i = extend_sign true (ext_classrel false) "#"; |
|
1136 |
val add_defsort = extend_sign true ext_defsort "#"; |
|
1137 |
val add_defsort_i = extend_sign true ext_defsort_i "#"; |
|
1138 |
val add_types = extend_sign true ext_types "#"; |
|
1139 |
val add_nonterminals = extend_sign true ext_nonterminals "#"; |
|
1140 |
val add_tyabbrs = extend_sign true ext_tyabbrs "#"; |
|
1141 |
val add_tyabbrs_i = extend_sign true ext_tyabbrs_i "#"; |
|
1142 |
val add_arities = extend_sign true ext_arities "#"; |
|
1143 |
val add_arities_i = extend_sign true ext_arities_i "#"; |
|
1144 |
val add_consts = extend_sign true ext_consts "#"; |
|
1145 |
val add_consts_i = extend_sign true ext_consts_i "#"; |
|
1146 |
val add_syntax = extend_sign true ext_syntax "#"; |
|
1147 |
val add_syntax_i = extend_sign true ext_syntax_i "#"; |
|
1148 |
val add_modesyntax = extend_sign true ext_modesyntax "#"; |
|
1149 |
val add_modesyntax_i = extend_sign true ext_modesyntax_i "#"; |
|
1150 |
val add_trfuns = extend_sign true ext_trfuns "#"; |
|
1151 |
val add_trfunsT = extend_sign true ext_trfunsT "#"; |
|
1152 |
val add_advanced_trfuns = extend_sign true ext_advanced_trfuns "#"; |
|
1153 |
val add_advanced_trfunsT = extend_sign true ext_advanced_trfunsT "#"; |
|
1154 |
val add_tokentrfuns = extend_sign true ext_tokentrfuns "#"; |
|
1155 |
val add_trrules = extend_sign true ext_trrules "#"; |
|
1156 |
val add_trrules_i = extend_sign true ext_trrules_i "#"; |
|
1157 |
val add_path = extend_sign true ext_path "#"; |
|
1158 |
val add_space = extend_sign true ext_add_space "#"; |
|
1159 |
val hide_space = curry (extend_sign true ext_hide_space "#"); |
|
1160 |
val hide_space_i = curry (extend_sign true ext_hide_space_i "#"); |
|
1161 |
val init_data = extend_sign true ext_init_data "#"; |
|
1162 |
fun put_data k f x = extend_sign true ext_put_data "#" (k, f, x); |
|
1163 |
fun add_name name = extend_sign true (K K) name (); |
|
1164 |
val prep_ext = extend_sign false (K K) "#" (); |
|
386 | 1165 |
|
1166 |
||
3867 | 1167 |
|
10404 | 1168 |
(** merge signatures **) (*exception TERM*) |
3867 | 1169 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1170 |
(* merge_stamps *) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1171 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1172 |
fun merge_stamps stamps1 stamps2 = |
12296 | 1173 |
let val stamps = merge_lists' stamps1 stamps2 in |
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1174 |
(case duplicates (map ! stamps) of |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1175 |
[] => stamps |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1176 |
| dups => raise TERM ("Attempt to merge different versions of theories " |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1177 |
^ commas_quote dups, [])) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1178 |
end; |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1179 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1180 |
|
14645 | 1181 |
(* trivial merge *) |
3877 | 1182 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1183 |
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
|
1184 |
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
|
1185 |
if fast_subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1186 |
else if fast_subsig (sg1, sg2) then sgr2 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1187 |
else if subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1188 |
else if subsig (sg1, sg2) then sgr2 |
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1189 |
else (merge_stamps s1 s2; (*check for different versions*) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1190 |
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
|
1191 |
| merge_refs _ = sys_error "Sign.merge_refs"; |
3867 | 1192 |
|
4627 | 1193 |
val merge = deref o merge_refs o pairself self_ref; |
1194 |
||
3867 | 1195 |
|
14645 | 1196 |
(* non-trivial merge *) (*exception TERM/ERROR*) |
10932 | 1197 |
|
6961 | 1198 |
fun nontriv_merge (sg1, sg2) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1199 |
if subsig (sg2, sg1) then sg1 |
251 | 1200 |
else if subsig (sg1, sg2) then sg2 |
386 | 1201 |
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
|
1202 |
raise TERM ("Attempt to merge draft signatures", []) |
10932 | 1203 |
else if exists_stamp PureN sg1 andalso exists_stamp CPureN sg2 orelse |
1204 |
exists_stamp CPureN sg1 andalso exists_stamp PureN sg2 then |
|
1205 |
raise TERM ("Cannot merge Pure and CPure signatures", []) |
|
251 | 1206 |
else |
1207 |
let |
|
14645 | 1208 |
val Sg ({id = _, stamps = stamps1, syn = Syn (syntax1, trfuns1)}, |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1209 |
{self = _, tsig = tsig1, consts = consts1, |
14645 | 1210 |
path = _, spaces = spaces1, data = data1}) = sg1; |
1211 |
val Sg ({id = _, stamps = stamps2, syn = Syn (syntax2, trfuns2)}, |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1212 |
{self = _, tsig = tsig2, consts = consts2, |
14645 | 1213 |
path = _, spaces = spaces2, data = data2}) = sg2; |
386 | 1214 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1215 |
val id = ref ""; |
14645 | 1216 |
val self_ref = ref dummy_sg; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1217 |
val self = SgRef (Some self_ref); |
402 | 1218 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1219 |
val stamps = merge_stamps stamps1 stamps2; |
14645 | 1220 |
val syntax = Syntax.merge_syntaxes syntax1 syntax2; |
1221 |
val trfuns = merge_trfuns trfuns1 trfuns2; |
|
14828 | 1222 |
val tsig = Type.merge_tsigs (pp sg1) (tsig1, tsig2); (* FIXME improve pp *) |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1223 |
val consts = Symtab.merge eq_snd (consts1, consts2) |
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1224 |
handle Symtab.DUPS cs => err_dup_consts cs; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1225 |
|
11501 | 1226 |
val path = Some []; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1227 |
val kinds = distinct (map fst (spaces1 @ spaces2)); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1228 |
val spaces = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1229 |
kinds ~~ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1230 |
ListPair.map NameSpace.merge |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1231 |
(map (space_of spaces1) kinds, map (space_of spaces2) kinds); |
3867 | 1232 |
|
4256 | 1233 |
val data = merge_data (data1, data2); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1234 |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
1235 |
val sign = make_sign (id, self, tsig, consts, Syn (syntax, trfuns), |
14645 | 1236 |
path, spaces, data, stamps); |
1237 |
in self_ref := sign; syn_of sign; sign end; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1238 |
|
0 | 1239 |
end; |