3 Author: Tobias Nipkow and Christine Heinzelmann, TU Muenchen
4 Copyright 1993 TU Muenchen
6 Unification of Higher-Order Patterns.
9 Tobias Nipkow. Functional Unification of Higher-Order Patterns.
10 In Proceedings of the 8th IEEE Symposium Logic in Computer Science, 1993.
12 TODO: optimize red by special-casing it
22 val aeconv : term * term -> bool
23 val eta_contract : term -> term
24 val eta_contract_atom : term -> term
25 val match : type_sig -> term * term
26 -> (indexname*typ)list * (indexname*term)list
27 val first_order_match : type_sig -> term * term
28 -> (indexname*typ)list * (indexname*term)list
29 val matches : type_sig -> term * term -> bool
30 val matches_subterm : type_sig -> term * term -> bool
31 val unify : sg * env * (term * term)list -> env
32 val first_order : term -> bool
33 val pattern : term -> bool
39 structure Pattern : PATTERN =
42 type type_sig = Type.type_sig
50 let fun occ(Var(G,_)) = (case Envir.lookup(env,G) of
53 | occ(t1$t2) = occ t1 orelse occ t2
54 | occ(Abs(_,_,t)) = occ t
60 let fun mpb d (Bound(i)) = if i < d then Bound(i) else Bound(f(i-d)+d)
61 | mpb d (Abs(s,T,t)) = Abs(s,T,mpb(d+1) t)
62 | mpb d ((u1 $ u2)) = (mpb d u1)$(mpb d u2)
67 | idx(i::is) j = if i=j then length is else idx is j;
69 fun at xs i = nth_elem (i,xs);
71 fun mkabs (binders,is,t) =
72 let fun mk(i::is) = let val (x,T) = nth_elem(i,binders)
77 val incr = mapbnd (fn i => i+1);
80 | ints_of (Bound i ::bs) =
81 let val is = ints_of bs
82 in if i mem_int is then raise Pattern else i::is end
83 | ints_of _ = raise Pattern;
86 fun app (s,(i::is)) = app (s$Bound(i),is)
89 fun red (Abs(_,_,s)) (i::is) js = red s is (i::js)
91 | red t is jn = app (mapbnd (at jn) t,is);
94 (* split_type ([T1,....,Tn]---> T,n,[]) = ([Tn,...,T1],T) *)
95 fun split_type (T,0,Ts) = (Ts,T)
96 | split_type (Type ("fun",[T1,T2]),n,Ts) = split_type (T2,n-1,T1::Ts)
97 | split_type _ = error("split_type");
99 fun type_of_G (T,n,is) =
100 let val (Ts,U) = split_type(T,n,[]) in map(at Ts)is ---> U end;
102 fun mkhnf (binders,is,G,js) = mkabs (binders, is, app(G,js));
104 fun mknewhnf(env,binders,is,F as (a,_),T,js) =
105 let val (env',G) = Envir.genvar a (env,type_of_G(T,length is,js))
106 in Envir.update((F,mkhnf(binders,is,G,js)),env') end;
109 fun devar env t = case strip_comb t of
111 (case Envir.lookup(env,F) of
112 Some(t) => devar env (red t (ints_of ys) [])
117 (* mk_proj_list(is) = [ |is| - k | 1 <= k <= |is| and is[k] >= 0 ] *)
118 fun mk_proj_list is =
119 let fun mk(i::is,j) = if i >= 0 then j :: mk(is,j-1) else mk(is,j-1)
121 in mk(is,length is - 1) end;
123 fun proj(s,env,binders,is) =
124 let fun trans d i = if i<d then i else (idx is (i-d))+d;
125 fun pr(s,env,d,binders) = (case devar env s of
126 Abs(a,T,t) => let val (t',env') = pr(t,env,d+1,((a,T)::binders))
127 in (Abs(a,T,t'),env') end
128 | t => (case strip_comb t of
130 let val (ts',env') = prs(ts,env,d,binders)
131 in (list_comb(c,ts'),env') end
132 | (f as Free _,ts) =>
133 let val (ts',env') = prs(ts,env,d,binders)
134 in (list_comb(f,ts'),env') end
136 let val j = trans d i
137 in if j < 0 then raise Unif
138 else let val (ts',env') = prs(ts,env,d,binders)
139 in (list_comb(Bound j,ts'),env') end
141 | (Var(F as (a,_),Fty),ts) =>
142 let val js = ints_of ts;
143 val js' = map (trans d) js;
144 val ks = mk_proj_list js';
145 val ls = filter (fn i => i >= 0) js'
146 val Hty = type_of_G(Fty,length js,ks)
147 val (env',H) = Envir.genvar a (env,Hty)
149 Envir.update((F,mkhnf(binders,js,H,ks)),env')
150 in (app(H,ls),env'') end
151 | _ => raise Pattern))
152 and prs(s::ss,env,d,binders) =
153 let val (s',env1) = pr(s,env,d,binders)
154 val (ss',env2) = prs(ss,env1,d,binders)
155 in (s'::ss',env2) end
156 | prs([],env,_,_) = ([],env)
157 in if downto0(is,length binders - 1) then (s,env)
158 else pr(s,env,0,binders)
162 (* mk_ff_list(is,js) = [ length(is) - k | 1 <= k <= |is| and is[k] = js[k] ] *)
163 fun mk_ff_list(is,js) =
164 let fun mk([],[],_) = []
165 | mk(i::is,j::js, k) = if i=j then k :: mk(is,js,k-1)
167 | mk _ = error"mk_ff_list"
168 in mk(is,js,length is-1) end;
170 fun flexflex1(env,binders,F,Fty,is,js) =
172 else let val ks = mk_ff_list(is,js)
173 in mknewhnf(env,binders,is,F,Fty,ks) end;
175 fun flexflex2(env,binders,F,Fty,is,G,Gty,js) =
176 let fun ff(F,Fty,is,G as (a,_),Gty,js) =
178 then let val t= mkabs(binders,is,app(Var(G,Gty),map (idx is) js))
179 in Envir.update((F,t),env) end
180 else let val ks = is inter_int js
181 val Hty = type_of_G(Fty,length is,map (idx is) ks)
182 val (env',H) = Envir.genvar a (env,Hty)
183 fun lam(is) = mkabs(binders,is,app(H,map (idx is) ks));
184 in Envir.update((G,lam js), Envir.update((F,lam is),env'))
186 in if xless(G,F) then ff(F,Fty,is,G,Gty,js) else ff(G,Gty,js,F,Fty,is) end
188 val tsgr = ref(Type.tsig0);
190 fun unify_types(T,U, env as Envir.Envir{asol,iTs,maxidx}) =
192 else let val (iTs',maxidx') = Type.unify (!tsgr) maxidx iTs (U,T)
193 in Envir.Envir{asol=asol,maxidx=maxidx',iTs=iTs'} end
194 handle Type.TUNIFY => raise Unif;
196 fun unif binders (env,(s,t)) = case (devar env s,devar env t) of
197 (Abs(ns,Ts,ts),Abs(nt,Tt,tt)) =>
198 let val name = if ns = "" then nt else ns
199 in unif ((name,Ts)::binders) (env,(ts,tt)) end
200 | (Abs(ns,Ts,ts),t) => unif ((ns,Ts)::binders) (env,(ts,(incr t)$Bound(0)))
201 | (t,Abs(nt,Tt,tt)) => unif ((nt,Tt)::binders) (env,((incr t)$Bound(0),tt))
202 | p => cases(binders,env,p)
204 and cases(binders,env,(s,t)) = case (strip_comb s,strip_comb t) of
205 ((Var(F,Fty),ss),(Var(G,Gty),ts)) =>
206 if F = G then flexflex1(env,binders,F,Fty,ints_of ss,ints_of ts)
207 else flexflex2(env,binders,F,Fty,ints_of ss,G,Gty,ints_of ts)
208 | ((Var(F,_),ss),_) => flexrigid(env,binders,F,ints_of ss,t)
209 | (_,(Var(F,_),ts)) => flexrigid(env,binders,F,ints_of ts,s)
210 | ((Const c,ss),(Const d,ts)) => rigidrigid(env,binders,c,d,ss,ts)
211 | ((Free(f),ss),(Free(g),ts)) => rigidrigid(env,binders,f,g,ss,ts)
212 | ((Bound(i),ss),(Bound(j),ts)) => rigidrigidB (env,binders,i,j,ss,ts)
213 | ((Abs(_),_),_) => raise Pattern
214 | (_,(Abs(_),_)) => raise Pattern
217 and rigidrigid (env,binders,(a,Ta),(b,Tb),ss,ts) =
218 if a<>b then raise Unif
219 else foldl (unif binders) (unify_types(Ta,Tb,env), ss~~ts)
221 and rigidrigidB (env,binders,i,j,ss,ts) =
222 if i <> j then raise Unif else foldl (unif binders) (env ,ss~~ts)
224 and flexrigid (env,binders,F,is,t) =
225 if occurs(F,t,env) then raise Unif
226 else let val (u,env') = proj(t,env,binders,is)
227 in Envir.update((F,mkabs(binders,is,u)),env') end;
229 fun unify(sg,env,tus) = (tsgr := #tsig(Sign.rep_sg sg);
230 foldl (unif []) (env,tus));
233 (*Eta-contract a term (fully)*)
236 fun eta_contract (Abs(a,T,body)) =
237 (case eta_contract body of
238 body' as (f $ Bound 0) =>
239 if loose_bvar1(f,0) then Abs(a,T,body')
240 else incr_boundvars ~1 f
241 | body' => Abs(a,T,body'))
242 | eta_contract(f$t) = eta_contract f $ eta_contract t
243 | eta_contract t = t;
249 fun eta(Abs(x,T,t)) =
252 f $ Bound 0 => if loose_bvar1(f,0)
254 else Some(incr_boundvars ~1 f)
256 | Some(t') => (case t' of
257 f $ Bound 0 => if loose_bvar1(f,0)
258 then Some(Abs(x,T,t'))
259 else Some(incr_boundvars ~1 f)
260 | _ => Some(Abs(x,T,t'))))
261 | eta(s$t) = (case (eta s,eta t) of
263 | (None, Some t') => Some(s $ t')
264 | (Some s',None) => Some(s' $ t)
265 | (Some s',Some t') => Some(s' $ t'))
270 fun eta_contract t = case eta t of None => t | Some(t') => t';
274 (*Eta-contract a term from outside: just enough to reduce it to an atom
277 fun eta_contract_atom (t0 as Abs(a, T, body)) =
278 (case eta_contract2 body of
279 body' as (f $ Bound 0) =>
280 if loose_bvar1(f,0) then Abs(a,T,body')
281 else eta_contract_atom (incr_boundvars ~1 f)
283 | eta_contract_atom t = t
284 and eta_contract2 (f$t) = f $ eta_contract_atom t
285 | eta_contract2 t = eta_contract_atom t;
288 (*Tests whether 2 terms are alpha/eta-convertible and have same type.
289 Note that Consts and Vars may have more than one type.*)
290 fun t aeconv u = aconv_aux (eta_contract_atom t, eta_contract_atom u)
291 and aconv_aux (Const(a,T), Const(b,U)) = a=b andalso T=U
292 | aconv_aux (Free(a,T), Free(b,U)) = a=b andalso T=U
293 | aconv_aux (Var(v,T), Var(w,U)) = eq_ix(v,w) andalso T=U
294 | aconv_aux (Bound i, Bound j) = i=j
295 | aconv_aux (Abs(_,T,t), Abs(_,U,u)) = (t aeconv u) andalso T=U
296 | aconv_aux (f$t, g$u) = (f aeconv g) andalso (t aeconv u)
297 | aconv_aux _ = false;
304 fun typ_match tsig args = (Type.typ_match tsig args)
305 handle Type.TYPE_MATCH => raise MATCH;
307 (*First-order matching;
308 fomatch tsig (pattern, object) returns a (tyvar,typ)list and (var,term)list.
309 The pattern and object may have variables in common.
310 Instantiation does not affect the object, so matching ?a with ?a+1 works.
311 Object is eta-contracted on the fly (by eta-expanding the pattern).
312 Precondition: the pattern is already eta-contracted!
313 Note: types are matched on the fly *)
316 fun mtch (instsp as (tyinsts,insts)) = fn
318 if loose_bvar(t,0) then raise MATCH
319 else (case assoc_string_int(insts,ixn) of
320 None => (typ_match tsig (tyinsts, (T, fastype_of t)),
322 | Some u => if t aeconv u then instsp else raise MATCH)
323 | (Free (a,T), Free (b,U)) =>
324 if a=b then (typ_match tsig (tyinsts,(T,U)), insts) else raise MATCH
325 | (Const (a,T), Const (b,U)) =>
326 if a=b then (typ_match tsig (tyinsts,(T,U)), insts) else raise MATCH
327 | (Bound i, Bound j) => if i=j then instsp else raise MATCH
328 | (Abs(_,T,t), Abs(_,U,u)) =>
329 mtch (typ_match tsig (tyinsts,(T,U)),insts) (t,u)
330 | (f$t, g$u) => mtch (mtch instsp (f,g)) (t, u)
331 | (t, Abs(_,U,u)) => mtch instsp ((incr t)$(Bound 0), u)
335 fun first_order_match tsig = apfst Vartab.dest o fomatch tsig (Vartab.empty, []);
337 (* Matching of higher-order patterns *)
339 fun match_bind(itms,binders,ixn,is,t) =
340 let val js = loose_bnos t
342 then if null js then (ixn,t)::itms else raise MATCH
343 else if js subset_int is
344 then let val t' = if downto0(is,length binders - 1) then t
345 else mapbnd (idx is) t
346 in (ixn, mkabs(binders,is,t')) :: itms end
350 fun match tsg (po as (pat,obj)) =
352 (* Pre: pat and obj have same type *)
353 fun mtch binders (env as (iTs,itms),(pat,obj)) =
357 Abs(nt,Tt,tt) => mtch ((nt,Tt)::binders) (env,(ts,tt))
358 | _ => let val Tt = typ_subst_TVars_Vartab iTs Ts
359 in mtch((ns,Tt)::binders)(env,(ts,(incr obj)$Bound(0))) end)
362 mtch((nt,Tt)::binders)(env,((incr pat)$Bound(0),tt))
363 | _ => cases(binders,env,pat,obj))
365 and cases(binders,env as (iTs,itms),pat,obj) =
366 let val (ph,pargs) = strip_comb pat
367 fun rigrig1(iTs,oargs) =
368 foldl (mtch binders) ((iTs,itms), pargs~~oargs)
369 fun rigrig2((a,Ta),(b,Tb),oargs) =
370 if a<> b then raise MATCH
371 else rigrig1(typ_match tsg (iTs,(Ta,Tb)), oargs)
374 let val is = ints_of pargs
375 in case assoc_string_int(itms,ixn) of
376 None => (iTs,match_bind(itms,binders,ixn,is,obj))
377 | Some u => if obj aeconv (red u is []) then env
381 let val (oh,oargs) = strip_comb obj
383 (Const c,Const d) => rigrig2(c,d,oargs)
384 | (Free f,Free g) => rigrig2(f,g,oargs)
385 | (Bound i,Bound j) => if i<>j then raise MATCH
386 else rigrig1(iTs,oargs)
387 | (Abs _, _) => raise Pattern
388 | (_, Abs _) => raise Pattern
393 val pT = fastype_of pat
394 and oT = fastype_of obj
395 val iTs = typ_match tsg (Vartab.empty, (pT,oT))
396 val insts2 = (iTs,[])
398 in apfst Vartab.dest (mtch [] (insts2, po)
399 handle Pattern => fomatch tsg insts2 po)
402 (*Predicate: does the pattern match the object?*)
403 fun matches tsig po = (match tsig po; true) handle MATCH => false;
405 (* Does pat match a subterm of obj? *)
406 fun matches_subterm tsig (pat,obj) =
407 let fun msub(bounds,obj) = matches tsig (pat,obj) orelse
409 Abs(x,T,t) => let val y = variant bounds x
410 val f = Free(":" ^ y,T)
411 in msub(x::bounds,subst_bound(f,t)) end
412 | s$t => msub(bounds,s) orelse msub(bounds,t)
416 fun first_order(Abs(_,_,t)) = first_order t
417 | first_order(t $ u) = first_order t andalso first_order u andalso
419 | first_order _ = true;
421 fun pattern(Abs(_,_,t)) = pattern t
422 | pattern(t) = let val (head,args) = strip_comb t
424 then let val _ = ints_of args in true end
425 handle Pattern => false
426 else forall pattern args