author | wenzelm |
Sat, 17 May 2008 23:37:07 +0200 | |
changeset 26934 | c1ae80a58341 |
parent 26831 | 6c3eec8157d3 |
child 26939 | 1035c89b4c02 |
permissions | -rw-r--r-- |
12784 | 1 |
(* Title: Pure/pattern.ML |
0 | 2 |
ID: $Id$ |
12784 | 3 |
Author: Tobias Nipkow, Christine Heinzelmann, and Stefan Berghofer |
0 | 4 |
|
5 |
Unification of Higher-Order Patterns. |
|
6 |
||
7 |
See also: |
|
8 |
Tobias Nipkow. Functional Unification of Higher-Order Patterns. |
|
9 |
In Proceedings of the 8th IEEE Symposium Logic in Computer Science, 1993. |
|
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
10 |
|
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
11 |
TODO: optimize red by special-casing it |
0 | 12 |
*) |
13 |
||
2751 | 14 |
infix aeconv; |
15 |
||
0 | 16 |
signature PATTERN = |
14787 | 17 |
sig |
17203 | 18 |
val trace_unify_fail: bool ref |
19 |
val aeconv: term * term -> bool |
|
20 |
val eta_long: typ list -> term -> term |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
21 |
val match: theory -> term * term -> Type.tyenv * Envir.tenv -> Type.tyenv * Envir.tenv |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
22 |
val first_order_match: theory -> term * term |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
23 |
-> Type.tyenv * Envir.tenv -> Type.tyenv * Envir.tenv |
17203 | 24 |
val matches: theory -> term * term -> bool |
19880 | 25 |
val equiv: theory -> term * term -> bool |
17203 | 26 |
val matches_subterm: theory -> term * term -> bool |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
27 |
val unify: theory -> term * term -> Envir.env -> Envir.env |
17203 | 28 |
val first_order: term -> bool |
29 |
val pattern: term -> bool |
|
30 |
val rewrite_term: theory -> (term * term) list -> (term -> term option) list -> term -> term |
|
0 | 31 |
exception Unif |
32 |
exception MATCH |
|
33 |
exception Pattern |
|
14787 | 34 |
end; |
0 | 35 |
|
17203 | 36 |
structure Pattern: PATTERN = |
0 | 37 |
struct |
38 |
||
39 |
exception Unif; |
|
40 |
exception Pattern; |
|
41 |
||
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
42 |
val trace_unify_fail = ref false; |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
43 |
|
17203 | 44 |
fun string_of_term thy env binders t = Sign.string_of_term thy |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
45 |
(Envir.norm_term env (subst_bounds(map Free binders,t))); |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
46 |
|
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17756
diff
changeset
|
47 |
fun bname binders i = fst (nth binders i); |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
48 |
fun bnames binders is = space_implode " " (map (bname binders) is); |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
49 |
|
17203 | 50 |
fun typ_clash thy (tye,T,U) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
51 |
if !trace_unify_fail |
17203 | 52 |
then let val t = Sign.string_of_typ thy (Envir.norm_type tye T) |
53 |
and u = Sign.string_of_typ thy (Envir.norm_type tye U) |
|
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
54 |
in tracing("The following types do not unify:\n" ^ t ^ "\n" ^ u) end |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
55 |
else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
56 |
|
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
57 |
fun clash a b = |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
58 |
if !trace_unify_fail then tracing("Clash: " ^ a ^ " =/= " ^ b) else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
59 |
|
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
60 |
fun boundVar binders i = |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
61 |
"bound variable " ^ bname binders i ^ " (depth " ^ string_of_int i ^ ")"; |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
62 |
|
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
63 |
fun clashBB binders i j = |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
64 |
if !trace_unify_fail then clash (boundVar binders i) (boundVar binders j) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
65 |
else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
66 |
|
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
67 |
fun clashB binders i s = |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
68 |
if !trace_unify_fail then clash (boundVar binders i) s |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
69 |
else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
70 |
|
17203 | 71 |
fun proj_fail thy (env,binders,F,_,is,t) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
72 |
if !trace_unify_fail |
22678 | 73 |
then let val f = Term.string_of_vname F |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
74 |
val xs = bnames binders is |
17203 | 75 |
val u = string_of_term thy env binders t |
19300 | 76 |
val ys = bnames binders (subtract (op =) is (loose_bnos t)) |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
77 |
in tracing("Cannot unify variable " ^ f ^ |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
78 |
" (depending on bound variables " ^ xs ^ ")\nwith term " ^ u ^ |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
79 |
"\nTerm contains additional bound variable(s) " ^ ys) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
80 |
end |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
81 |
else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
82 |
|
17203 | 83 |
fun ocheck_fail thy (F,t,binders,env) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
84 |
if !trace_unify_fail |
22678 | 85 |
then let val f = Term.string_of_vname F |
17203 | 86 |
val u = string_of_term thy env binders t |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
87 |
in tracing("Variable " ^ f ^ " occurs in term\n" ^ u ^ |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
88 |
"\nCannot unify!\n") |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
89 |
end |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
90 |
else () |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
91 |
|
12784 | 92 |
fun occurs(F,t,env) = |
15797 | 93 |
let fun occ(Var (G, T)) = (case Envir.lookup (env, (G, T)) of |
15531 | 94 |
SOME(t) => occ t |
95 |
| NONE => F=G) |
|
0 | 96 |
| occ(t1$t2) = occ t1 orelse occ t2 |
97 |
| occ(Abs(_,_,t)) = occ t |
|
98 |
| occ _ = false |
|
99 |
in occ t end; |
|
100 |
||
101 |
||
102 |
fun mapbnd f = |
|
103 |
let fun mpb d (Bound(i)) = if i < d then Bound(i) else Bound(f(i-d)+d) |
|
104 |
| mpb d (Abs(s,T,t)) = Abs(s,T,mpb(d+1) t) |
|
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
105 |
| mpb d ((u1 $ u2)) = (mpb d u1)$(mpb d u2) |
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
106 |
| mpb _ atom = atom |
0 | 107 |
in mpb 0 end; |
108 |
||
14861
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents:
14787
diff
changeset
|
109 |
fun idx [] j = raise Unif |
16668 | 110 |
| idx(i::is) j = if (i:int) =j then length is else idx is j; |
0 | 111 |
|
112 |
fun mkabs (binders,is,t) = |
|
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17756
diff
changeset
|
113 |
let fun mk(i::is) = let val (x,T) = nth binders i |
12784 | 114 |
in Abs(x,T,mk is) end |
0 | 115 |
| mk [] = t |
116 |
in mk is end; |
|
117 |
||
118 |
val incr = mapbnd (fn i => i+1); |
|
119 |
||
120 |
fun ints_of [] = [] |
|
12784 | 121 |
| ints_of (Bound i ::bs) = |
0 | 122 |
let val is = ints_of bs |
20672 | 123 |
in if member (op =) is i then raise Pattern else i::is end |
0 | 124 |
| ints_of _ = raise Pattern; |
125 |
||
12232 | 126 |
fun ints_of' env ts = ints_of (map (Envir.head_norm env) ts); |
127 |
||
0 | 128 |
|
129 |
fun app (s,(i::is)) = app (s$Bound(i),is) |
|
130 |
| app (s,[]) = s; |
|
131 |
||
132 |
fun red (Abs(_,_,s)) (i::is) js = red s is (i::js) |
|
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
133 |
| red t [] [] = t |
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17756
diff
changeset
|
134 |
| red t is jn = app (mapbnd (nth jn) t,is); |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
135 |
|
0 | 136 |
|
137 |
(* split_type ([T1,....,Tn]---> T,n,[]) = ([Tn,...,T1],T) *) |
|
138 |
fun split_type (T,0,Ts) = (Ts,T) |
|
139 |
| split_type (Type ("fun",[T1,T2]),n,Ts) = split_type (T2,n-1,T1::Ts) |
|
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
140 |
| split_type _ = error("split_type"); |
0 | 141 |
|
13891
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
berghofe
parents:
13645
diff
changeset
|
142 |
fun type_of_G (env as Envir.Envir {iTs, ...}) (T,n,is) = |
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
berghofe
parents:
13645
diff
changeset
|
143 |
let val (Ts, U) = split_type (Envir.norm_type iTs T, n, []) |
18011
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
haftmann
parents:
17756
diff
changeset
|
144 |
in map (nth Ts) is ---> U end; |
0 | 145 |
|
146 |
fun mkhnf (binders,is,G,js) = mkabs (binders, is, app(G,js)); |
|
147 |
||
148 |
fun mknewhnf(env,binders,is,F as (a,_),T,js) = |
|
13891
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
berghofe
parents:
13645
diff
changeset
|
149 |
let val (env',G) = Envir.genvar a (env,type_of_G env (T,length is,js)) |
15797 | 150 |
in Envir.update (((F, T), mkhnf (binders, is, G, js)), env') end; |
0 | 151 |
|
152 |
||
23222 | 153 |
(*predicate: downto0 (is, n) <=> is = [n, n - 1, ..., 0]*) |
154 |
fun downto0 (i :: is, n) = i = n andalso downto0 (is, n - 1) |
|
155 |
| downto0 ([], n) = n = ~1; |
|
156 |
||
157 |
(*mk_proj_list(is) = [ |is| - k | 1 <= k <= |is| and is[k] >= 0 ]*) |
|
0 | 158 |
fun mk_proj_list is = |
19502 | 159 |
let fun mk(i::is,j) = if is_some i then j :: mk(is,j-1) else mk(is,j-1) |
0 | 160 |
| mk([],_) = [] |
161 |
in mk(is,length is - 1) end; |
|
162 |
||
163 |
fun proj(s,env,binders,is) = |
|
164 |
let fun trans d i = if i<d then i else (idx is (i-d))+d; |
|
12232 | 165 |
fun pr(s,env,d,binders) = (case Envir.head_norm env s of |
0 | 166 |
Abs(a,T,t) => let val (t',env') = pr(t,env,d+1,((a,T)::binders)) |
167 |
in (Abs(a,T,t'),env') end |
|
168 |
| t => (case strip_comb t of |
|
169 |
(c as Const _,ts) => |
|
170 |
let val (ts',env') = prs(ts,env,d,binders) |
|
171 |
in (list_comb(c,ts'),env') end |
|
172 |
| (f as Free _,ts) => |
|
173 |
let val (ts',env') = prs(ts,env,d,binders) |
|
174 |
in (list_comb(f,ts'),env') end |
|
175 |
| (Bound(i),ts) => |
|
176 |
let val j = trans d i |
|
14861
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents:
14787
diff
changeset
|
177 |
val (ts',env') = prs(ts,env,d,binders) |
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents:
14787
diff
changeset
|
178 |
in (list_comb(Bound j,ts'),env') end |
0 | 179 |
| (Var(F as (a,_),Fty),ts) => |
12232 | 180 |
let val js = ints_of' env ts; |
14861
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents:
14787
diff
changeset
|
181 |
val js' = map (try (trans d)) js; |
0 | 182 |
val ks = mk_proj_list js'; |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19300
diff
changeset
|
183 |
val ls = map_filter I js' |
13891
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
berghofe
parents:
13645
diff
changeset
|
184 |
val Hty = type_of_G env (Fty,length js,ks) |
0 | 185 |
val (env',H) = Envir.genvar a (env,Hty) |
186 |
val env'' = |
|
15797 | 187 |
Envir.update (((F, Fty), mkhnf (binders, js, H, ks)), env') |
0 | 188 |
in (app(H,ls),env'') end |
189 |
| _ => raise Pattern)) |
|
190 |
and prs(s::ss,env,d,binders) = |
|
191 |
let val (s',env1) = pr(s,env,d,binders) |
|
192 |
val (ss',env2) = prs(ss,env1,d,binders) |
|
193 |
in (s'::ss',env2) end |
|
194 |
| prs([],env,_,_) = ([],env) |
|
195 |
in if downto0(is,length binders - 1) then (s,env) |
|
196 |
else pr(s,env,0,binders) |
|
197 |
end; |
|
198 |
||
199 |
||
200 |
(* mk_ff_list(is,js) = [ length(is) - k | 1 <= k <= |is| and is[k] = js[k] ] *) |
|
12784 | 201 |
fun mk_ff_list(is,js) = |
202 |
let fun mk([],[],_) = [] |
|
16668 | 203 |
| mk(i::is,j::js, k) = if (i:int) = j then k :: mk(is,js,k-1) |
0 | 204 |
else mk(is,js,k-1) |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
205 |
| mk _ = error"mk_ff_list" |
0 | 206 |
in mk(is,js,length is-1) end; |
207 |
||
208 |
fun flexflex1(env,binders,F,Fty,is,js) = |
|
209 |
if is=js then env |
|
210 |
else let val ks = mk_ff_list(is,js) |
|
211 |
in mknewhnf(env,binders,is,F,Fty,ks) end; |
|
212 |
||
213 |
fun flexflex2(env,binders,F,Fty,is,G,Gty,js) = |
|
214 |
let fun ff(F,Fty,is,G as (a,_),Gty,js) = |
|
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1501
diff
changeset
|
215 |
if js subset_int is |
0 | 216 |
then let val t= mkabs(binders,is,app(Var(G,Gty),map (idx is) js)) |
15797 | 217 |
in Envir.update (((F, Fty), t), env) end |
1576
af8f43f742a0
Added some optimized versions of functions dealing with sets
berghofe
parents:
1501
diff
changeset
|
218 |
else let val ks = is inter_int js |
13891
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
berghofe
parents:
13645
diff
changeset
|
219 |
val Hty = type_of_G env (Fty,length is,map (idx is) ks) |
0 | 220 |
val (env',H) = Envir.genvar a (env,Hty) |
221 |
fun lam(is) = mkabs(binders,is,app(H,map (idx is) ks)); |
|
15797 | 222 |
in Envir.update (((G, Gty), lam js), Envir.update (((F, Fty), lam is), env')) |
0 | 223 |
end; |
20098 | 224 |
in if Term.indexname_ord (G,F) = LESS then ff(F,Fty,is,G,Gty,js) else ff(G,Gty,js,F,Fty,is) end |
0 | 225 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
226 |
fun unify_types thy (T,U) (env as Envir.Envir{asol,iTs,maxidx}) = |
0 | 227 |
if T=U then env |
17203 | 228 |
else let val (iTs',maxidx') = Sign.typ_unify thy (U, T) (iTs, maxidx) |
1435
aefcd255ed4a
Removed bug in type unification. Negative indexes are not used any longer.
nipkow
parents:
1029
diff
changeset
|
229 |
in Envir.Envir{asol=asol,maxidx=maxidx',iTs=iTs'} end |
17203 | 230 |
handle Type.TUNIFY => (typ_clash thy (iTs,T,U); raise Unif); |
0 | 231 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
232 |
fun unif thy binders (s,t) env = case (Envir.head_norm env s, Envir.head_norm env t) of |
0 | 233 |
(Abs(ns,Ts,ts),Abs(nt,Tt,tt)) => |
234 |
let val name = if ns = "" then nt else ns |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
235 |
in unif thy ((name,Ts)::binders) (ts,tt) env end |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
236 |
| (Abs(ns,Ts,ts),t) => unif thy ((ns,Ts)::binders) (ts,(incr t)$Bound(0)) env |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
237 |
| (t,Abs(nt,Tt,tt)) => unif thy ((nt,Tt)::binders) ((incr t)$Bound(0),tt) env |
17203 | 238 |
| p => cases thy (binders,env,p) |
0 | 239 |
|
17203 | 240 |
and cases thy (binders,env,(s,t)) = case (strip_comb s,strip_comb t) of |
12784 | 241 |
((Var(F,Fty),ss),(Var(G,Gty),ts)) => |
12232 | 242 |
if F = G then flexflex1(env,binders,F,Fty,ints_of' env ss,ints_of' env ts) |
243 |
else flexflex2(env,binders,F,Fty,ints_of' env ss,G,Gty,ints_of' env ts) |
|
17203 | 244 |
| ((Var(F,Fty),ss),_) => flexrigid thy (env,binders,F,Fty,ints_of' env ss,t) |
245 |
| (_,(Var(F,Fty),ts)) => flexrigid thy (env,binders,F,Fty,ints_of' env ts,s) |
|
246 |
| ((Const c,ss),(Const d,ts)) => rigidrigid thy (env,binders,c,d,ss,ts) |
|
247 |
| ((Free(f),ss),(Free(g),ts)) => rigidrigid thy (env,binders,f,g,ss,ts) |
|
248 |
| ((Bound(i),ss),(Bound(j),ts)) => rigidrigidB thy (env,binders,i,j,ss,ts) |
|
0 | 249 |
| ((Abs(_),_),_) => raise Pattern |
250 |
| (_,(Abs(_),_)) => raise Pattern |
|
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
251 |
| ((Const(c,_),_),(Free(f,_),_)) => (clash c f; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
252 |
| ((Const(c,_),_),(Bound i,_)) => (clashB binders i c; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
253 |
| ((Free(f,_),_),(Const(c,_),_)) => (clash f c; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
254 |
| ((Free(f,_),_),(Bound i,_)) => (clashB binders i f; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
255 |
| ((Bound i,_),(Const(c,_),_)) => (clashB binders i c; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
256 |
| ((Bound i,_),(Free(f,_),_)) => (clashB binders i f; raise Unif) |
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
257 |
|
0 | 258 |
|
17203 | 259 |
and rigidrigid thy (env,binders,(a,Ta),(b,Tb),ss,ts) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
260 |
if a<>b then (clash a b; raise Unif) |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
261 |
else env |> unify_types thy (Ta,Tb) |> fold (unif thy binders) (ss~~ts) |
0 | 262 |
|
17203 | 263 |
and rigidrigidB thy (env,binders,i,j,ss,ts) = |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
264 |
if i <> j then (clashBB binders i j; raise Unif) |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
265 |
else fold (unif thy binders) (ss~~ts) env |
0 | 266 |
|
17203 | 267 |
and flexrigid thy (params as (env,binders,F,Fty,is,t)) = |
268 |
if occurs(F,t,env) then (ocheck_fail thy (F,t,binders,env); raise Unif) |
|
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
269 |
else (let val (u,env') = proj(t,env,binders,is) |
15797 | 270 |
in Envir.update (((F, Fty), mkabs (binders, is, u)), env') end |
17203 | 271 |
handle Unif => (proj_fail thy params; raise Unif)); |
0 | 272 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
273 |
fun unify thy = unif thy []; |
0 | 274 |
|
275 |
||
13998 | 276 |
(* put a term into eta long beta normal form *) |
277 |
fun eta_long Ts (Abs (s, T, t)) = Abs (s, T, eta_long (T :: Ts) t) |
|
278 |
| eta_long Ts t = (case strip_comb t of |
|
279 |
(Abs _, _) => eta_long Ts (Envir.beta_norm t) |
|
14787 | 280 |
| (u, ts) => |
13998 | 281 |
let |
282 |
val Us = binder_types (fastype_of1 (Ts, t)); |
|
283 |
val i = length Us |
|
284 |
in list_abs (map (pair "x") Us, |
|
285 |
list_comb (incr_boundvars i u, map (eta_long (rev Us @ Ts)) |
|
286 |
(map (incr_boundvars i) ts @ map Bound (i - 1 downto 0)))) |
|
287 |
end); |
|
288 |
||
2725
9453616d4b80
Declares eta_contract_atom; fixed comment; some tidying
paulson
parents:
2616
diff
changeset
|
289 |
|
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
290 |
(*Tests whether 2 terms are alpha/eta-convertible and have same type. |
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
291 |
Note that Consts and Vars may have more than one type.*) |
26831
6c3eec8157d3
- Removed function eta_contract_atom, which did not quite work
berghofe
parents:
25473
diff
changeset
|
292 |
fun t aeconv u = Envir.eta_contract t aconv Envir.eta_contract u; |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
293 |
|
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
294 |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
295 |
(*** Matching ***) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
296 |
|
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
297 |
exception MATCH; |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
298 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
299 |
fun typ_match thy TU tyenv = Sign.typ_match thy TU tyenv |
16939 | 300 |
handle Type.TYPE_MATCH => raise MATCH; |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
301 |
|
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
302 |
(*First-order matching; |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
303 |
The pattern and object may have variables in common. |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
304 |
Instantiation does not affect the object, so matching ?a with ?a+1 works. |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
305 |
Object is eta-contracted on the fly (by eta-expanding the pattern). |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
306 |
Precondition: the pattern is already eta-contracted! |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
307 |
Types are matched on the fly*) |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
308 |
fun first_order_match thy = |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
309 |
let |
25473
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
310 |
fun mtch k (instsp as (tyinsts,insts)) = fn |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
311 |
(Var(ixn,T), t) => |
25473
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
312 |
if k > 0 andalso loose_bvar(t,0) then raise MATCH |
16651 | 313 |
else (case Envir.lookup' (insts, (ixn, T)) of |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
314 |
NONE => (typ_match thy (T, fastype_of t) tyinsts, |
17412 | 315 |
Vartab.update_new (ixn, (T, t)) insts) |
15531 | 316 |
| SOME u => if t aeconv u then instsp else raise MATCH) |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
317 |
| (Free (a,T), Free (b,U)) => |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
318 |
if a=b then (typ_match thy (T,U) tyinsts, insts) else raise MATCH |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
319 |
| (Const (a,T), Const (b,U)) => |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
320 |
if a=b then (typ_match thy (T,U) tyinsts, insts) else raise MATCH |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
321 |
| (Bound i, Bound j) => if i=j then instsp else raise MATCH |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
322 |
| (Abs(_,T,t), Abs(_,U,u)) => |
25473
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
323 |
mtch (k + 1) (typ_match thy (T,U) tyinsts, insts) (t,u) |
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
324 |
| (f$t, g$u) => mtch k (mtch k instsp (f,g)) (t, u) |
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
325 |
| (t, Abs(_,U,u)) => mtch (k + 1) instsp ((incr t)$(Bound 0), u) |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
326 |
| _ => raise MATCH |
25473
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
berghofe
parents:
23222
diff
changeset
|
327 |
in fn tu => fn env => mtch 0 env tu end; |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
328 |
|
8406
a217b0cd304d
Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents:
6539
diff
changeset
|
329 |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
330 |
(* Matching of higher-order patterns *) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
331 |
|
15797 | 332 |
fun match_bind(itms,binders,ixn,T,is,t) = |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
333 |
let val js = loose_bnos t |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
334 |
in if null is |
17412 | 335 |
then if null js then Vartab.update_new (ixn, (T, t)) itms else raise MATCH |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
336 |
else if js subset_int is |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
337 |
then let val t' = if downto0(is,length binders - 1) then t |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
338 |
else mapbnd (idx is) t |
17412 | 339 |
in Vartab.update_new (ixn, (T, mkabs (binders, is, t'))) itms end |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
340 |
else raise MATCH |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
341 |
end; |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
342 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
343 |
fun match thy (po as (pat,obj)) envir = |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
344 |
let |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
345 |
(* Pre: pat and obj have same type *) |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
346 |
fun mtch binders (pat,obj) (env as (iTs,itms)) = |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
347 |
case pat of |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
348 |
Abs(ns,Ts,ts) => |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
349 |
(case obj of |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
350 |
Abs(nt,Tt,tt) => mtch ((nt,Tt)::binders) (ts,tt) env |
15797 | 351 |
| _ => let val Tt = Envir.typ_subst_TVars iTs Ts |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
352 |
in mtch((ns,Tt)::binders) (ts,(incr obj)$Bound(0)) env end) |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
353 |
| _ => (case obj of |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
354 |
Abs(nt,Tt,tt) => |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
355 |
mtch((nt,Tt)::binders) ((incr pat)$Bound(0),tt) env |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
356 |
| _ => cases(binders,env,pat,obj)) |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
357 |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
358 |
and cases(binders,env as (iTs,itms),pat,obj) = |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
359 |
let val (ph,pargs) = strip_comb pat |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
360 |
fun rigrig1(iTs,oargs) = fold (mtch binders) (pargs~~oargs) (iTs,itms) |
16668 | 361 |
fun rigrig2((a:string,Ta),(b,Tb),oargs) = |
362 |
if a <> b then raise MATCH |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
363 |
else rigrig1(typ_match thy (Ta,Tb) iTs, oargs) |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
364 |
in case ph of |
15797 | 365 |
Var(ixn,T) => |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
366 |
let val is = ints_of pargs |
16651 | 367 |
in case Envir.lookup' (itms, (ixn, T)) of |
15797 | 368 |
NONE => (iTs,match_bind(itms,binders,ixn,T,is,obj)) |
15531 | 369 |
| SOME u => if obj aeconv (red u is []) then env |
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
370 |
else raise MATCH |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
371 |
end |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
372 |
| _ => |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
373 |
let val (oh,oargs) = strip_comb obj |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
374 |
in case (ph,oh) of |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
375 |
(Const c,Const d) => rigrig2(c,d,oargs) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
376 |
| (Free f,Free g) => rigrig2(f,g,oargs) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
377 |
| (Bound i,Bound j) => if i<>j then raise MATCH |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
378 |
else rigrig1(iTs,oargs) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
379 |
| (Abs _, _) => raise Pattern |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
380 |
| (_, Abs _) => raise Pattern |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
381 |
| _ => raise MATCH |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
382 |
end |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
383 |
end; |
678
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents:
63
diff
changeset
|
384 |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
385 |
val pT = fastype_of pat |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
386 |
and oT = fastype_of obj |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
387 |
val envir' = apfst (typ_match thy (pT, oT)) envir; |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
388 |
in mtch [] po envir' handle Pattern => first_order_match thy po envir' end; |
0 | 389 |
|
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
390 |
fun matches thy po = (match thy po (Vartab.empty, Vartab.empty); true) handle MATCH => false; |
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
391 |
|
19880 | 392 |
fun equiv thy (t, u) = matches thy (t, u) andalso matches thy (u, t); |
393 |
||
0 | 394 |
|
4667
6328d427a339
Tried to reorganize rewriter a little. More to be done.
nipkow
parents:
2792
diff
changeset
|
395 |
(* Does pat match a subterm of obj? *) |
22255 | 396 |
fun matches_subterm thy (pat, obj) = |
397 |
let |
|
398 |
fun msub bounds obj = matches thy (pat, obj) orelse |
|
399 |
(case obj of |
|
400 |
Abs (x, T, t) => msub (bounds + 1) (snd (Term.dest_abs (Name.bound bounds, T, t))) |
|
401 |
| t $ u => msub bounds t orelse msub bounds u |
|
402 |
| _ => false) |
|
403 |
in msub 0 obj end; |
|
4667
6328d427a339
Tried to reorganize rewriter a little. More to be done.
nipkow
parents:
2792
diff
changeset
|
404 |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
405 |
fun first_order(Abs(_,_,t)) = first_order t |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
406 |
| first_order(t $ u) = first_order t andalso first_order u andalso |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
407 |
not(is_Var t) |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
408 |
| first_order _ = true; |
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
409 |
|
20672 | 410 |
fun pattern (Abs (_, _, t)) = pattern t |
411 |
| pattern t = |
|
412 |
let val (head, args) = strip_comb t in |
|
413 |
if is_Var head then |
|
414 |
forall is_Bound args andalso not (has_duplicates (op aconv) args) |
|
415 |
else forall pattern args |
|
416 |
end; |
|
4820
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents:
4667
diff
changeset
|
417 |
|
12784 | 418 |
|
419 |
(* rewriting -- simple but fast *) |
|
420 |
||
17203 | 421 |
fun rewrite_term thy rules procs tm = |
12784 | 422 |
let |
13195 | 423 |
val skel0 = Bound 0; |
424 |
||
16939 | 425 |
fun variant_absfree bounds (x, T, t) = |
12797 | 426 |
let |
20079
ec5c8584487c
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
19880
diff
changeset
|
427 |
val (x', t') = Term.dest_abs (Name.bound bounds, T, t); |
16939 | 428 |
fun abs u = Abs (x, T, abstract_over (Free (x', T), u)); |
429 |
in (abs, t') end; |
|
12797 | 430 |
|
12784 | 431 |
fun match_rew tm (tm1, tm2) = |
18940 | 432 |
let val rtm = the_default tm2 (Term.rename_abs tm1 tm tm2) in |
18182
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
wenzelm
parents:
18011
diff
changeset
|
433 |
SOME (Envir.subst_vars (match thy (tm1, tm) (Vartab.empty, Vartab.empty)) rtm, rtm) |
16939 | 434 |
handle MATCH => NONE |
13195 | 435 |
end; |
12784 | 436 |
|
15531 | 437 |
fun rew (Abs (_, _, body) $ t) = SOME (subst_bound (t, body), skel0) |
13195 | 438 |
| rew tm = (case get_first (match_rew tm) rules of |
15570 | 439 |
NONE => Option.map (rpair skel0) (get_first (fn p => p tm) procs) |
13195 | 440 |
| x => x); |
441 |
||
16939 | 442 |
fun rew1 bounds (Var _) _ = NONE |
443 |
| rew1 bounds skel tm = (case rew2 bounds skel tm of |
|
15531 | 444 |
SOME tm1 => (case rew tm1 of |
18940 | 445 |
SOME (tm2, skel') => SOME (the_default tm2 (rew1 bounds skel' tm2)) |
15531 | 446 |
| NONE => SOME tm1) |
447 |
| NONE => (case rew tm of |
|
18940 | 448 |
SOME (tm1, skel') => SOME (the_default tm1 (rew1 bounds skel' tm1)) |
15531 | 449 |
| NONE => NONE)) |
12784 | 450 |
|
16939 | 451 |
and rew2 bounds skel (tm1 $ tm2) = (case tm1 of |
12784 | 452 |
Abs (_, _, body) => |
453 |
let val tm' = subst_bound (tm2, body) |
|
18940 | 454 |
in SOME (the_default tm' (rew2 bounds skel0 tm')) end |
14787 | 455 |
| _ => |
13195 | 456 |
let val (skel1, skel2) = (case skel of |
457 |
skel1 $ skel2 => (skel1, skel2) |
|
458 |
| _ => (skel0, skel0)) |
|
16939 | 459 |
in case rew1 bounds skel1 tm1 of |
460 |
SOME tm1' => (case rew1 bounds skel2 tm2 of |
|
15531 | 461 |
SOME tm2' => SOME (tm1' $ tm2') |
462 |
| NONE => SOME (tm1' $ tm2)) |
|
16939 | 463 |
| NONE => (case rew1 bounds skel2 tm2 of |
15531 | 464 |
SOME tm2' => SOME (tm1 $ tm2') |
465 |
| NONE => NONE) |
|
13195 | 466 |
end) |
16939 | 467 |
| rew2 bounds skel (Abs body) = |
13195 | 468 |
let |
16939 | 469 |
val (abs, tm') = variant_absfree bounds body; |
13195 | 470 |
val skel' = (case skel of Abs (_, _, skel') => skel' | _ => skel0) |
16939 | 471 |
in case rew1 (bounds + 1) skel' tm' of |
15531 | 472 |
SOME tm'' => SOME (abs tm'') |
473 |
| NONE => NONE |
|
12797 | 474 |
end |
16939 | 475 |
| rew2 _ _ _ = NONE; |
12784 | 476 |
|
18940 | 477 |
in the_default tm (rew1 0 skel0 tm) end; |
12784 | 478 |
|
0 | 479 |
end; |
13642
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
480 |
|
a3d97348ceb6
added failure trace information to pattern unification
nipkow
parents:
13195
diff
changeset
|
481 |
val trace_unify_fail = Pattern.trace_unify_fail; |