author | wenzelm |
Thu, 21 Sep 2006 19:04:43 +0200 | |
changeset 20667 | 953b68f4a9f3 |
parent 20548 | 8ef25fe585a8 |
child 20734 | 8aa9590bd452 |
permissions | -rw-r--r-- |
18060 | 1 |
(* Title: Pure/consts.ML |
2 |
ID: $Id$ |
|
3 |
Author: Makarius |
|
4 |
||
18935 | 5 |
Polymorphic constants: declarations, abbreviations, additional type |
6 |
constraints. |
|
18060 | 7 |
*) |
8 |
||
9 |
signature CONSTS = |
|
10 |
sig |
|
11 |
type T |
|
19027 | 12 |
val eq_consts: T * T -> bool |
19364 | 13 |
val abbrevs_of: T -> string list -> (term * term) list |
18935 | 14 |
val dest: T -> |
15 |
{constants: (typ * term option) NameSpace.table, |
|
16 |
constraints: typ NameSpace.table} |
|
19364 | 17 |
val declaration: T -> string -> typ (*exception TYPE*) |
18 |
val monomorphic: T -> string -> bool (*exception TYPE*) |
|
19 |
val constraint: T -> string -> typ (*exception TYPE*) |
|
18965 | 20 |
val space_of: T -> NameSpace.T |
19364 | 21 |
val intern: T -> xstring -> string |
22 |
val extern: T -> string -> xstring |
|
23 |
val extern_early: T -> string -> xstring |
|
19657 | 24 |
val syntax: T -> string * mixfix -> string * typ * mixfix |
18965 | 25 |
val read_const: T -> string -> term |
19364 | 26 |
val certify: Pretty.pp -> Type.tsig -> T -> term -> term (*exception TYPE*) |
20667 | 27 |
val serial_of: T -> string -> serial |
28 |
val name_of: T -> serial -> string |
|
18146 | 29 |
val typargs: T -> string * typ -> typ list |
18163 | 30 |
val instance: T -> string * typ list -> typ |
19364 | 31 |
val declare: NameSpace.naming -> (bstring * typ) * bool -> T -> T |
19098
fc736dbbe333
constrain: assert const declaration, optional type (i.e. may delete constraints);
wenzelm
parents:
19027
diff
changeset
|
32 |
val constrain: string * typ option -> T -> T |
19364 | 33 |
val expand_abbrevs: bool -> T -> T |
34 |
val abbreviate: Pretty.pp -> Type.tsig -> NameSpace.naming -> string -> |
|
35 |
(bstring * term) * bool -> T -> T |
|
18060 | 36 |
val hide: bool -> string -> T -> T |
37 |
val empty: T |
|
38 |
val merge: T * T -> T |
|
19364 | 39 |
end; |
18060 | 40 |
|
41 |
structure Consts: CONSTS = |
|
42 |
struct |
|
43 |
||
19364 | 44 |
|
45 |
(** consts type **) |
|
46 |
||
47 |
(* datatype T *) |
|
18060 | 48 |
|
19364 | 49 |
datatype kind = |
50 |
LogicalConst of int list list | |
|
51 |
Abbreviation of term; |
|
52 |
||
53 |
type decl = |
|
54 |
(typ * kind) * |
|
19677 | 55 |
bool; (*authentic syntax*) |
18935 | 56 |
|
18060 | 57 |
datatype T = Consts of |
20667 | 58 |
{decls: (decl * serial) NameSpace.table, |
19364 | 59 |
constraints: typ Symtab.table, |
60 |
rev_abbrevs: (term * term) list Symtab.table, |
|
61 |
expand_abbrevs: bool} * stamp; |
|
19027 | 62 |
|
63 |
fun eq_consts (Consts (_, s1), Consts (_, s2)) = s1 = s2; |
|
18060 | 64 |
|
19364 | 65 |
fun make_consts (decls, constraints, rev_abbrevs, expand_abbrevs) = |
19677 | 66 |
Consts ({decls = decls, constraints = constraints, rev_abbrevs = rev_abbrevs, |
67 |
expand_abbrevs = expand_abbrevs}, stamp ()); |
|
18060 | 68 |
|
19364 | 69 |
fun map_consts f (Consts ({decls, constraints, rev_abbrevs, expand_abbrevs}, _)) = |
70 |
make_consts (f (decls, constraints, rev_abbrevs, expand_abbrevs)); |
|
71 |
||
72 |
fun abbrevs_of (Consts ({rev_abbrevs, ...}, _)) modes = |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19433
diff
changeset
|
73 |
maps (Symtab.lookup_list rev_abbrevs) modes; |
19364 | 74 |
|
18965 | 75 |
|
19364 | 76 |
(* dest consts *) |
77 |
||
78 |
fun dest_kind (LogicalConst _) = NONE |
|
79 |
| dest_kind (Abbreviation t) = SOME t; |
|
80 |
||
81 |
fun dest (Consts ({decls = (space, decls), constraints, ...}, _)) = |
|
82 |
{constants = (space, |
|
83 |
Symtab.fold (fn (c, (((T, kind), _), _)) => |
|
84 |
Symtab.update (c, (T, dest_kind kind))) decls Symtab.empty), |
|
18060 | 85 |
constraints = (space, constraints)}; |
86 |
||
87 |
||
88 |
(* lookup consts *) |
|
89 |
||
19027 | 90 |
fun the_const (Consts ({decls = (_, tab), ...}, _)) c = |
19364 | 91 |
(case Symtab.lookup tab c of |
20667 | 92 |
SOME decl => decl |
19364 | 93 |
| NONE => raise TYPE ("Undeclared constant: " ^ quote c, [], [])); |
18935 | 94 |
|
95 |
fun logical_const consts c = |
|
20667 | 96 |
(case #1 (#1 (the_const consts c)) of |
97 |
(T, LogicalConst ps) => (T, ps) |
|
19364 | 98 |
| _ => raise TYPE ("Illegal abbreviation: " ^ quote c, [], [])); |
18060 | 99 |
|
19364 | 100 |
val declaration = #1 oo logical_const; |
101 |
val type_arguments = #2 oo logical_const; |
|
102 |
val monomorphic = null oo type_arguments; |
|
18935 | 103 |
|
19027 | 104 |
fun constraint (consts as Consts ({constraints, ...}, _)) c = |
18060 | 105 |
(case Symtab.lookup constraints c of |
106 |
SOME T => T |
|
20667 | 107 |
| NONE => #1 (#1 (#1 (the_const consts c)))); |
18935 | 108 |
|
109 |
||
19657 | 110 |
(* name space and syntax *) |
19364 | 111 |
|
112 |
fun space_of (Consts ({decls = (space, _), ...}, _)) = space; |
|
113 |
||
114 |
val intern = NameSpace.intern o space_of; |
|
115 |
val extern = NameSpace.extern o space_of; |
|
116 |
||
117 |
fun extern_early consts c = |
|
118 |
(case try (the_const consts) c of |
|
20667 | 119 |
SOME ((_, true), _) => Syntax.constN ^ c |
19576
179ad0076f75
extern_early: improved handling of undeclared constants;
wenzelm
parents:
19502
diff
changeset
|
120 |
| _ => extern consts c); |
19364 | 121 |
|
19657 | 122 |
fun syntax consts (c, mx) = |
123 |
let |
|
20667 | 124 |
val ((T, _), authentic) = #1 (the_const consts c) handle TYPE (msg, _, _) => error msg; |
19677 | 125 |
val c' = if authentic then Syntax.constN ^ c else NameSpace.base c; |
19657 | 126 |
in (c', T, mx) end; |
127 |
||
18060 | 128 |
|
19364 | 129 |
(* read_const *) |
130 |
||
131 |
fun read_const consts raw_c = |
|
132 |
let |
|
133 |
val c = intern consts raw_c; |
|
134 |
val _ = the_const consts c handle TYPE (msg, _, _) => error msg; |
|
135 |
in Const (c, dummyT) end; |
|
136 |
||
137 |
||
138 |
(* certify *) |
|
139 |
||
140 |
fun certify pp tsig (consts as Consts ({expand_abbrevs, ...}, _)) = |
|
18965 | 141 |
let |
142 |
fun err msg (c, T) = |
|
143 |
raise TYPE (msg ^ " " ^ quote c ^ " :: " ^ Pretty.string_of_typ pp T, [], []); |
|
144 |
fun cert tm = |
|
145 |
let |
|
146 |
val (head, args) = Term.strip_comb tm; |
|
19364 | 147 |
fun comb h = Term.list_comb (h, map cert args); |
18965 | 148 |
in |
149 |
(case head of |
|
19364 | 150 |
Abs (x, T, t) => comb (Abs (x, T, cert t)) |
151 |
| Const (c, T) => |
|
152 |
let |
|
153 |
val T' = Type.cert_typ tsig T; |
|
20667 | 154 |
val (U, kind) = #1 (#1 (the_const consts c)); |
19364 | 155 |
in |
19433
c7a2b7a8c4cb
certify: ignore sort constraints of declarations (MAJOR CHANGE);
wenzelm
parents:
19364
diff
changeset
|
156 |
if not (Type.raw_instance (T', U)) then |
19364 | 157 |
err "Illegal type for constant" (c, T) |
158 |
else |
|
159 |
(case (kind, expand_abbrevs) of |
|
160 |
(Abbreviation u, true) => |
|
19433
c7a2b7a8c4cb
certify: ignore sort constraints of declarations (MAJOR CHANGE);
wenzelm
parents:
19364
diff
changeset
|
161 |
Term.betapplys (Envir.expand_atom T' (U, u) handle TYPE _ => |
19364 | 162 |
err "Illegal type for abbreviation" (c, T), map cert args) |
163 |
| _ => comb head) |
|
164 |
end |
|
165 |
| _ => comb head) |
|
18965 | 166 |
end; |
167 |
in cert end; |
|
168 |
||
169 |
||
20667 | 170 |
|
171 |
(** efficient representations **) |
|
172 |
||
173 |
(* serial numbers *) |
|
174 |
||
175 |
fun serial_of consts c = #2 (the_const consts c); |
|
176 |
||
177 |
fun name_of (Consts ({decls = (_, tab), ...}, _)) i = |
|
178 |
(case Symtab.fold (fn (c, (_, j)) => if i = j then K (SOME c) else I) tab NONE of |
|
179 |
SOME c => c |
|
180 |
| NONE => raise TYPE ("Bad serial number of constant", [], [])); |
|
181 |
||
182 |
||
18060 | 183 |
(* typargs -- view actual const type as instance of declaration *) |
184 |
||
19364 | 185 |
fun subscript (Type (_, Ts)) (i :: is) = subscript (nth Ts i) is |
186 |
| subscript T [] = T |
|
187 |
| subscript T _ = raise Subscript; |
|
18060 | 188 |
|
19364 | 189 |
fun typargs consts (c, T) = map (subscript T) (type_arguments consts c); |
18060 | 190 |
|
18163 | 191 |
fun instance consts (c, Ts) = |
192 |
let |
|
193 |
val declT = declaration consts c; |
|
194 |
val vars = map Term.dest_TVar (typargs consts (c, declT)); |
|
20509 | 195 |
in declT |> TermSubst.instantiateT (vars ~~ Ts) end; |
18163 | 196 |
|
18060 | 197 |
|
198 |
||
19364 | 199 |
(** build consts **) |
18060 | 200 |
|
201 |
fun err_dup_consts cs = |
|
202 |
error ("Duplicate declaration of constant(s) " ^ commas_quote cs); |
|
203 |
||
204 |
fun err_inconsistent_constraints cs = |
|
205 |
error ("Inconsistent type constraints for constant(s) " ^ commas_quote cs); |
|
206 |
||
18935 | 207 |
fun extend_decls naming decl tab = NameSpace.extend_table naming (tab, [decl]) |
208 |
handle Symtab.DUPS cs => err_dup_consts cs; |
|
18060 | 209 |
|
18935 | 210 |
|
211 |
(* name space *) |
|
18060 | 212 |
|
19364 | 213 |
fun hide fully c = map_consts (fn (decls, constraints, rev_abbrevs, expand_abbrevs) => |
214 |
(apfst (NameSpace.hide fully c) decls, constraints, rev_abbrevs, expand_abbrevs)); |
|
18935 | 215 |
|
216 |
||
217 |
(* declarations *) |
|
218 |
||
19677 | 219 |
fun declare naming ((c, declT), authentic) = |
19364 | 220 |
map_consts (fn (decls, constraints, rev_abbrevs, expand_abbrevs) => |
18060 | 221 |
let |
18935 | 222 |
fun args_of (Type (_, Ts)) pos = args_of_list Ts 0 pos |
223 |
| args_of (TVar v) pos = insert (eq_fst op =) (v, rev pos) |
|
224 |
| args_of (TFree _) _ = I |
|
225 |
and args_of_list (T :: Ts) i is = args_of T (i :: is) #> args_of_list Ts (i + 1) is |
|
226 |
| args_of_list [] _ _ = I; |
|
20667 | 227 |
val decl = |
228 |
(((declT, LogicalConst (map #2 (rev (args_of declT [] [])))), authentic), serial ()); |
|
19364 | 229 |
in (extend_decls naming (c, decl) decls, constraints, rev_abbrevs, expand_abbrevs) end); |
230 |
||
231 |
||
232 |
(* constraints *) |
|
233 |
||
234 |
fun constrain (c, C) consts = |
|
235 |
consts |> map_consts (fn (decls, constraints, rev_abbrevs, expand_abbrevs) => |
|
236 |
(the_const consts c handle TYPE (msg, _, _) => error msg; |
|
237 |
(decls, |
|
238 |
constraints |> (case C of SOME T => Symtab.update (c, T) | NONE => Symtab.delete_safe c), |
|
239 |
rev_abbrevs, expand_abbrevs))); |
|
18060 | 240 |
|
18935 | 241 |
|
242 |
(* abbreviations *) |
|
243 |
||
19364 | 244 |
fun expand_abbrevs b = map_consts (fn (decls, constraints, rev_abbrevs, _) => |
245 |
(decls, constraints, rev_abbrevs, b)); |
|
246 |
||
19027 | 247 |
local |
248 |
||
19364 | 249 |
fun strip_abss tm = ([], tm) :: |
250 |
(case tm of |
|
251 |
Abs (a, T, t) => |
|
252 |
if Term.loose_bvar1 (t, 0) then |
|
253 |
strip_abss t |> map (fn (xs, b) => ((a, T) :: xs, b)) |
|
254 |
else [] |
|
255 |
| _ => []); |
|
19027 | 256 |
|
19364 | 257 |
fun rev_abbrev const rhs = |
18060 | 258 |
let |
19027 | 259 |
fun abbrev (xs, body) = |
260 |
let val vars = fold (fn (x, T) => cons (Var ((x, 0), T))) (Term.rename_wrt_term body xs) [] |
|
261 |
in (Term.subst_bounds (rev vars, body), Term.list_comb (Const const, vars)) end; |
|
19502 | 262 |
in map abbrev (strip_abss (Envir.beta_eta_contract rhs)) end; |
19027 | 263 |
|
264 |
in |
|
18965 | 265 |
|
19677 | 266 |
fun abbreviate pp tsig naming mode ((c, raw_rhs), authentic) consts = |
18965 | 267 |
let |
19364 | 268 |
val rhs = raw_rhs |
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20509
diff
changeset
|
269 |
|> Term.map_types (Type.cert_typ tsig) |
19364 | 270 |
|> certify pp tsig (consts |> expand_abbrevs false); |
271 |
val rhs' = rhs |
|
272 |
|> certify pp tsig (consts |> expand_abbrevs true); |
|
18965 | 273 |
val T = Term.fastype_of rhs; |
19364 | 274 |
in |
275 |
consts |> map_consts (fn (decls, constraints, rev_abbrevs, expand_abbrevs) => |
|
276 |
let |
|
277 |
val decls' = decls |
|
20667 | 278 |
|> extend_decls naming (c, (((T, Abbreviation rhs'), authentic), serial ())); |
19364 | 279 |
val rev_abbrevs' = rev_abbrevs |
19502 | 280 |
|> fold (curry Symtab.update_list mode) (rev_abbrev (NameSpace.full naming c, T) rhs); |
19364 | 281 |
in (decls', constraints, rev_abbrevs', expand_abbrevs) end) |
282 |
end; |
|
18935 | 283 |
|
19027 | 284 |
end; |
285 |
||
18060 | 286 |
|
287 |
(* empty and merge *) |
|
288 |
||
19364 | 289 |
val empty = make_consts (NameSpace.empty_table, Symtab.empty, Symtab.empty, true); |
18060 | 290 |
|
291 |
fun merge |
|
19364 | 292 |
(Consts ({decls = decls1, constraints = constraints1, |
293 |
rev_abbrevs = rev_abbrevs1, expand_abbrevs = expand_abbrevs1}, _), |
|
294 |
Consts ({decls = decls2, constraints = constraints2, |
|
295 |
rev_abbrevs = rev_abbrevs2, expand_abbrevs = expand_abbrevs2}, _)) = |
|
18060 | 296 |
let |
18935 | 297 |
val decls' = NameSpace.merge_tables (eq_snd (op =)) (decls1, decls2) |
18060 | 298 |
handle Symtab.DUPS cs => err_dup_consts cs; |
18935 | 299 |
val constraints' = Symtab.merge (op =) (constraints1, constraints2) |
18060 | 300 |
handle Symtab.DUPS cs => err_inconsistent_constraints cs; |
19364 | 301 |
val rev_abbrevs' = (rev_abbrevs1, rev_abbrevs2) |> Symtab.join |
302 |
(K (Library.merge (fn ((t, u), (t', u')) => t aconv t' andalso u aconv u'))); |
|
303 |
val expand_abbrevs' = expand_abbrevs1 orelse expand_abbrevs2; |
|
304 |
in make_consts (decls', constraints', rev_abbrevs', expand_abbrevs') end; |
|
18060 | 305 |
|
306 |
end; |