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