| author | wenzelm | 
| Fri, 12 Jul 2013 21:13:57 +0200 | |
| changeset 52630 | fe411c1dc180 | 
| parent 52220 | c4264f71dc3b | 
| child 52709 | 0e4bacf21e77 | 
| permissions | -rw-r--r-- | 
| 12784 | 1 | (* Title: Pure/pattern.ML | 
| 29269 
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
 wenzelm parents: 
28348diff
changeset | 2 | Author: Tobias Nipkow, Christine Heinzelmann, and Stefan Berghofer, TU Muenchen | 
| 0 | 3 | |
| 4 | Unification of Higher-Order Patterns. | |
| 5 | ||
| 6 | See also: | |
| 7 | Tobias Nipkow. Functional Unification of Higher-Order Patterns. | |
| 8 | 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: 
63diff
changeset | 9 | |
| 
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
 nipkow parents: 
63diff
changeset | 10 | TODO: optimize red by special-casing it | 
| 0 | 11 | *) | 
| 12 | ||
| 13 | signature PATTERN = | |
| 14787 | 14 | sig | 
| 32738 | 15 | val trace_unify_fail: bool Unsynchronized.ref | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 16 | 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: 
18011diff
changeset | 17 | val first_order_match: theory -> term * term | 
| 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 18 | -> Type.tyenv * Envir.tenv -> Type.tyenv * Envir.tenv | 
| 17203 | 19 | val matches: theory -> term * term -> bool | 
| 28348 | 20 | val matchess: theory -> term list * term list -> bool | 
| 19880 | 21 | val equiv: theory -> term * term -> bool | 
| 17203 | 22 | val matches_subterm: theory -> term * term -> bool | 
| 52127 
a40dfe02dd83
re-use Pattern.unify_types, including its trace_unify_fail option;
 wenzelm parents: 
51700diff
changeset | 23 | val unify_types: theory -> typ * typ -> Envir.env -> Envir.env | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 24 | val unify: theory -> term * term -> Envir.env -> Envir.env | 
| 17203 | 25 | val first_order: term -> bool | 
| 26 | val pattern: term -> bool | |
| 30565 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 27 | val match_rew: theory -> term -> term * term -> (term * term) option | 
| 17203 | 28 | val rewrite_term: theory -> (term * term) list -> (term -> term option) list -> term -> term | 
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 29 | val rewrite_term_top: theory -> (term * term) list -> (term -> term option) list -> term -> term | 
| 0 | 30 | exception Unif | 
| 31 | exception MATCH | |
| 32 | exception Pattern | |
| 14787 | 33 | end; | 
| 0 | 34 | |
| 17203 | 35 | structure Pattern: PATTERN = | 
| 0 | 36 | struct | 
| 37 | ||
| 38 | exception Unif; | |
| 39 | exception Pattern; | |
| 40 | ||
| 32738 | 41 | val trace_unify_fail = Unsynchronized.ref false; | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 42 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26831diff
changeset | 43 | fun string_of_term thy env binders t = | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26831diff
changeset | 44 | Syntax.string_of_term_global thy | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26831diff
changeset | 45 | (Envir.norm_term env (subst_bounds (map Free binders, t))); | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 46 | |
| 18011 
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
 haftmann parents: 
17756diff
changeset | 47 | fun bname binders i = fst (nth binders i); | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 48 | fun bnames binders is = space_implode " " (map (bname binders) is); | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 49 | |
| 17203 | 50 | fun typ_clash thy (tye,T,U) = | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 51 | if !trace_unify_fail | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26831diff
changeset | 52 | then let val t = Syntax.string_of_typ_global thy (Envir.norm_type tye T) | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26831diff
changeset | 53 | and u = Syntax.string_of_typ_global thy (Envir.norm_type tye U) | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
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: 
13195diff
changeset | 55 | else () | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 56 | |
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 57 | fun clash a b = | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 58 |   if !trace_unify_fail then tracing("Clash: " ^ a ^ " =/= " ^ b) else ()
 | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 59 | |
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 60 | fun boundVar binders i = | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 61 | "bound variable " ^ bname binders i ^ " (depth " ^ string_of_int i ^ ")"; | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 62 | |
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 63 | fun clashBB binders i j = | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 64 | if !trace_unify_fail then clash (boundVar binders i) (boundVar binders j) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 65 | else () | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 66 | |
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 67 | fun clashB binders i s = | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 68 | if !trace_unify_fail then clash (boundVar binders i) s | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 69 | else () | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 70 | |
| 17203 | 71 | fun proj_fail thy (env,binders,F,_,is,t) = | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
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: 
13195diff
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: 
13195diff
changeset | 77 |        in tracing("Cannot unify variable " ^ f ^
 | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 78 | " (depending on bound variables " ^ xs ^ ")\nwith term " ^ u ^ | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 79 | "\nTerm contains additional bound variable(s) " ^ ys) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 80 | end | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 81 | else () | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 82 | |
| 17203 | 83 | fun ocheck_fail thy (F,t,binders,env) = | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
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: 
13195diff
changeset | 87 |        in tracing("Variable " ^ f ^ " occurs in term\n" ^ u ^
 | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 88 | "\nCannot unify!\n") | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 89 | end | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 90 | else () | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 91 | |
| 12784 | 92 | fun occurs(F,t,env) = | 
| 51700 | 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: 
63diff
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: 
63diff
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: 
14787diff
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: 
17756diff
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: 
63diff
changeset | 133 | | red t [] [] = t | 
| 18011 
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
 haftmann parents: 
17756diff
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: 
63diff
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)
 | |
| 52133 | 140 | | split_type _ = raise Fail "split_type"; | 
| 0 | 141 | |
| 32032 | 142 | fun type_of_G env (T, n, is) = | 
| 143 | let | |
| 144 | val tyenv = Envir.type_env env; | |
| 145 | val (Ts, U) = split_type (Envir.norm_type tyenv T, n, []); | |
| 18011 
685d95c793ff
cleaned up nth, nth_update, nth_map and nth_string functions
 haftmann parents: 
17756diff
changeset | 146 | in map (nth Ts) is ---> U end; | 
| 0 | 147 | |
| 52130 | 148 | fun mk_hnf (binders,is,G,js) = mkabs (binders, is, app(G,js)); | 
| 0 | 149 | |
| 52130 | 150 | fun mk_new_hnf(env,binders,is,F as (a,_),T,js) = | 
| 13891 
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
 berghofe parents: 
13645diff
changeset | 151 | let val (env',G) = Envir.genvar a (env,type_of_G env (T,length is,js)) | 
| 52130 | 152 | in Envir.update ((F, T), mk_hnf (binders, is, G, js)) env' end; | 
| 0 | 153 | |
| 154 | ||
| 23222 | 155 | (*predicate: downto0 (is, n) <=> is = [n, n - 1, ..., 0]*) | 
| 156 | fun downto0 (i :: is, n) = i = n andalso downto0 (is, n - 1) | |
| 157 | | downto0 ([], n) = n = ~1; | |
| 158 | ||
| 159 | (*mk_proj_list(is) = [ |is| - k | 1 <= k <= |is| and is[k] >= 0 ]*) | |
| 0 | 160 | fun mk_proj_list is = | 
| 19502 | 161 | let fun mk(i::is,j) = if is_some i then j :: mk(is,j-1) else mk(is,j-1) | 
| 0 | 162 | | mk([],_) = [] | 
| 163 | in mk(is,length is - 1) end; | |
| 164 | ||
| 165 | fun proj(s,env,binders,is) = | |
| 166 | let fun trans d i = if i<d then i else (idx is (i-d))+d; | |
| 12232 | 167 | fun pr(s,env,d,binders) = (case Envir.head_norm env s of | 
| 0 | 168 | Abs(a,T,t) => let val (t',env') = pr(t,env,d+1,((a,T)::binders)) | 
| 169 | in (Abs(a,T,t'),env') end | |
| 170 | | t => (case strip_comb t of | |
| 171 | (c as Const _,ts) => | |
| 172 | let val (ts',env') = prs(ts,env,d,binders) | |
| 173 | in (list_comb(c,ts'),env') end | |
| 174 | | (f as Free _,ts) => | |
| 175 | let val (ts',env') = prs(ts,env,d,binders) | |
| 176 | in (list_comb(f,ts'),env') end | |
| 177 | | (Bound(i),ts) => | |
| 178 | let val j = trans d i | |
| 14861 
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
 berghofe parents: 
14787diff
changeset | 179 | val (ts',env') = prs(ts,env,d,binders) | 
| 
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
 berghofe parents: 
14787diff
changeset | 180 | in (list_comb(Bound j,ts'),env') end | 
| 0 | 181 | | (Var(F as (a,_),Fty),ts) => | 
| 12232 | 182 | let val js = ints_of' env ts; | 
| 14861 
ca5cae7fb65a
Removed ~10000 hack in function idx that can lead to inconsistencies
 berghofe parents: 
14787diff
changeset | 183 | val js' = map (try (trans d)) js; | 
| 0 | 184 | val ks = mk_proj_list js'; | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19300diff
changeset | 185 | val ls = map_filter I js' | 
| 13891 
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
 berghofe parents: 
13645diff
changeset | 186 | val Hty = type_of_G env (Fty,length js,ks) | 
| 0 | 187 | val (env',H) = Envir.genvar a (env,Hty) | 
| 188 | val env'' = | |
| 52130 | 189 | Envir.update ((F, Fty), mk_hnf (binders, js, H, ks)) env' | 
| 0 | 190 | in (app(H,ls),env'') end | 
| 191 | | _ => raise Pattern)) | |
| 192 | and prs(s::ss,env,d,binders) = | |
| 193 | let val (s',env1) = pr(s,env,d,binders) | |
| 194 | val (ss',env2) = prs(ss,env1,d,binders) | |
| 195 | in (s'::ss',env2) end | |
| 196 | | prs([],env,_,_) = ([],env) | |
| 197 | in if downto0(is,length binders - 1) then (s,env) | |
| 198 | else pr(s,env,0,binders) | |
| 199 | end; | |
| 200 | ||
| 201 | ||
| 202 | (* mk_ff_list(is,js) = [ length(is) - k | 1 <= k <= |is| and is[k] = js[k] ] *) | |
| 12784 | 203 | fun mk_ff_list(is,js) = | 
| 204 | let fun mk([],[],_) = [] | |
| 16668 | 205 | | mk(i::is,j::js, k) = if (i:int) = j then k :: mk(is,js,k-1) | 
| 0 | 206 | else mk(is,js,k-1) | 
| 52133 | 207 | | mk _ = raise Fail "mk_ff_list" | 
| 0 | 208 | in mk(is,js,length is-1) end; | 
| 209 | ||
| 210 | fun flexflex1(env,binders,F,Fty,is,js) = | |
| 211 | if is=js then env | |
| 212 | else let val ks = mk_ff_list(is,js) | |
| 52130 | 213 | in mk_new_hnf(env,binders,is,F,Fty,ks) end; | 
| 0 | 214 | |
| 215 | fun flexflex2(env,binders,F,Fty,is,G,Gty,js) = | |
| 216 | let fun ff(F,Fty,is,G as (a,_),Gty,js) = | |
| 33038 | 217 | if subset (op =) (js, is) | 
| 0 | 218 | then let val t= mkabs(binders,is,app(Var(G,Gty),map (idx is) js)) | 
| 51700 | 219 | in Envir.update ((F, Fty), t) env end | 
| 33049 
c38f02fdf35d
curried inter as canonical list operation (beware of argument order)
 haftmann parents: 
33038diff
changeset | 220 | else let val ks = inter (op =) js is | 
| 13891 
ae9a2a433388
type_of_G now applies type substitution before decomposing type.
 berghofe parents: 
13645diff
changeset | 221 | val Hty = type_of_G env (Fty,length is,map (idx is) ks) | 
| 0 | 222 | val (env',H) = Envir.genvar a (env,Hty) | 
| 223 | fun lam(is) = mkabs(binders,is,app(H,map (idx is) ks)); | |
| 51700 | 224 | in Envir.update ((G, Gty), lam js) (Envir.update ((F, Fty), lam is) env') | 
| 0 | 225 | end; | 
| 35408 | 226 | in if Term_Ord.indexname_ord (G,F) = LESS then ff(F,Fty,is,G,Gty,js) else ff(G,Gty,js,F,Fty,is) end | 
| 0 | 227 | |
| 32032 | 228 | fun unify_types thy (T, U) (env as Envir.Envir {maxidx, tenv, tyenv}) =
 | 
| 229 | if T = U then env | |
| 230 | else | |
| 231 | let val (tyenv', maxidx') = Sign.typ_unify thy (U, T) (tyenv, maxidx) | |
| 232 |     in Envir.Envir {maxidx = maxidx', tenv = tenv, tyenv = tyenv'} end
 | |
| 233 | handle Type.TUNIFY => (typ_clash thy (tyenv, T, U); raise Unif); | |
| 0 | 234 | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 235 | fun unif thy binders (s,t) env = case (Envir.head_norm env s, Envir.head_norm env t) of | 
| 0 | 236 | (Abs(ns,Ts,ts),Abs(nt,Tt,tt)) => | 
| 237 | let val name = if ns = "" then nt else ns | |
| 52129 
3fd0fe916097
unify types of bound variables in the same manner as Unify.new_dpair (which emphatically "Tries to unify types of the bound variables!");
 wenzelm parents: 
52127diff
changeset | 238 | in unif thy ((name,Ts)::binders) (ts,tt) (unify_types thy (Ts, Tt) env) end | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 239 | | (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: 
18011diff
changeset | 240 | | (t,Abs(nt,Tt,tt)) => unif thy ((nt,Tt)::binders) ((incr t)$Bound(0),tt) env | 
| 17203 | 241 | | p => cases thy (binders,env,p) | 
| 0 | 242 | |
| 17203 | 243 | and cases thy (binders,env,(s,t)) = case (strip_comb s,strip_comb t) of | 
| 12784 | 244 | ((Var(F,Fty),ss),(Var(G,Gty),ts)) => | 
| 52220 
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
 wenzelm parents: 
52179diff
changeset | 245 | if F = G then flexflex1(env,binders,F,Fty,ints_of' env ss,ints_of' env ts) | 
| 
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
 wenzelm parents: 
52179diff
changeset | 246 | else flexflex2(env,binders,F,Fty,ints_of' env ss,G,Gty,ints_of' env ts) | 
| 17203 | 247 | | ((Var(F,Fty),ss),_) => flexrigid thy (env,binders,F,Fty,ints_of' env ss,t) | 
| 248 | | (_,(Var(F,Fty),ts)) => flexrigid thy (env,binders,F,Fty,ints_of' env ts,s) | |
| 249 | | ((Const c,ss),(Const d,ts)) => rigidrigid thy (env,binders,c,d,ss,ts) | |
| 250 | | ((Free(f),ss),(Free(g),ts)) => rigidrigid thy (env,binders,f,g,ss,ts) | |
| 251 | | ((Bound(i),ss),(Bound(j),ts)) => rigidrigidB thy (env,binders,i,j,ss,ts) | |
| 0 | 252 | | ((Abs(_),_),_) => raise Pattern | 
| 253 | | (_,(Abs(_),_)) => raise Pattern | |
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 254 | | ((Const(c,_),_),(Free(f,_),_)) => (clash c f; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 255 | | ((Const(c,_),_),(Bound i,_)) => (clashB binders i c; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 256 | | ((Free(f,_),_),(Const(c,_),_)) => (clash f c; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 257 | | ((Free(f,_),_),(Bound i,_)) => (clashB binders i f; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 258 | | ((Bound i,_),(Const(c,_),_)) => (clashB binders i c; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 259 | | ((Bound i,_),(Free(f,_),_)) => (clashB binders i f; raise Unif) | 
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 260 | |
| 0 | 261 | |
| 17203 | 262 | and rigidrigid thy (env,binders,(a,Ta),(b,Tb),ss,ts) = | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 263 | 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: 
18011diff
changeset | 264 | else env |> unify_types thy (Ta,Tb) |> fold (unif thy binders) (ss~~ts) | 
| 0 | 265 | |
| 17203 | 266 | and rigidrigidB thy (env,binders,i,j,ss,ts) = | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 267 | 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: 
18011diff
changeset | 268 | else fold (unif thy binders) (ss~~ts) env | 
| 0 | 269 | |
| 17203 | 270 | and flexrigid thy (params as (env,binders,F,Fty,is,t)) = | 
| 271 | 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: 
13195diff
changeset | 272 | else (let val (u,env') = proj(t,env,binders,is) | 
| 51700 | 273 | in Envir.update ((F, Fty), mkabs (binders, is, u)) env' end | 
| 17203 | 274 | handle Unif => (proj_fail thy params; raise Unif)); | 
| 0 | 275 | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 276 | fun unify thy = unif thy []; | 
| 0 | 277 | |
| 278 | ||
| 678 
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
 nipkow parents: 
63diff
changeset | 279 | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 280 | (*** Matching ***) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 281 | |
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 282 | exception MATCH; | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 283 | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 284 | fun typ_match thy TU tyenv = Sign.typ_match thy TU tyenv | 
| 16939 | 285 | handle Type.TYPE_MATCH => raise MATCH; | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 286 | |
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 287 | (*First-order matching; | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 288 | 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: 
4667diff
changeset | 289 | 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: 
4667diff
changeset | 290 | 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: 
4667diff
changeset | 291 | Precondition: the pattern is already eta-contracted! | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 292 | Types are matched on the fly*) | 
| 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 293 | fun first_order_match thy = | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 294 | let | 
| 25473 
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
 berghofe parents: 
23222diff
changeset | 295 | 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: 
4667diff
changeset | 296 | (Var(ixn,T), t) => | 
| 42083 
e1209fc7ecdc
added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
 wenzelm parents: 
41067diff
changeset | 297 | if k > 0 andalso Term.is_open t then raise MATCH | 
| 51700 | 298 | else (case Envir.lookup1 insts (ixn, T) of | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 299 | NONE => (typ_match thy (T, fastype_of t) tyinsts, | 
| 17412 | 300 | Vartab.update_new (ixn, (T, t)) insts) | 
| 52131 | 301 | | SOME u => if Envir.aeconv (t, u) then instsp else raise MATCH) | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 302 | | (Free (a,T), Free (b,U)) => | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 303 | 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: 
4667diff
changeset | 304 | | (Const (a,T), Const (b,U)) => | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 305 | 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: 
4667diff
changeset | 306 | | (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: 
4667diff
changeset | 307 | | (Abs(_,T,t), Abs(_,U,u)) => | 
| 25473 
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
 berghofe parents: 
23222diff
changeset | 308 | 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: 
23222diff
changeset | 309 | | (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: 
23222diff
changeset | 310 | | (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: 
4667diff
changeset | 311 | | _ => raise MATCH | 
| 25473 
812db0f215b3
first_order_match now only calls loose_bvar when inside an abstraction.
 berghofe parents: 
23222diff
changeset | 312 | 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: 
4667diff
changeset | 313 | |
| 8406 
a217b0cd304d
Type.unify and Type.typ_match now use Vartab instead of association lists.
 berghofe parents: 
6539diff
changeset | 314 | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 315 | (* Matching of higher-order patterns *) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 316 | |
| 15797 | 317 | 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: 
4667diff
changeset | 318 | let val js = loose_bnos t | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 319 | in if null is | 
| 17412 | 320 | then if null js then Vartab.update_new (ixn, (T, t)) itms else raise MATCH | 
| 33038 | 321 | else if subset (op =) (js, is) | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 322 | 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: 
4667diff
changeset | 323 | else mapbnd (idx is) t | 
| 17412 | 324 | 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: 
4667diff
changeset | 325 | else raise MATCH | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 326 | end; | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 327 | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 328 | fun match thy (po as (pat,obj)) envir = | 
| 678 
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
 nipkow parents: 
63diff
changeset | 329 | let | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 330 | (* Pre: pat and obj have same type *) | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 331 | 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: 
4667diff
changeset | 332 | case pat of | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 333 | Abs(ns,Ts,ts) => | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 334 | (case obj of | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 335 | Abs(nt,Tt,tt) => mtch ((nt,Tt)::binders) (ts,tt) env | 
| 32035 | 336 | | _ => let val Tt = Envir.subst_type iTs Ts | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 337 | 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: 
4667diff
changeset | 338 | | _ => (case obj of | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 339 | Abs(nt,Tt,tt) => | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 340 | 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: 
4667diff
changeset | 341 | | _ => cases(binders,env,pat,obj)) | 
| 678 
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
 nipkow parents: 
63diff
changeset | 342 | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 343 | 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: 
4667diff
changeset | 344 | let val (ph,pargs) = strip_comb pat | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 345 | fun rigrig1(iTs,oargs) = fold (mtch binders) (pargs~~oargs) (iTs,itms) | 
| 41067 | 346 | handle ListPair.UnequalLengths => raise MATCH | 
| 16668 | 347 | fun rigrig2((a:string,Ta),(b,Tb),oargs) = | 
| 348 | if a <> b then raise MATCH | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 349 | 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: 
4667diff
changeset | 350 | in case ph of | 
| 15797 | 351 | Var(ixn,T) => | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 352 | let val is = ints_of pargs | 
| 51700 | 353 | in case Envir.lookup1 itms (ixn, T) of | 
| 15797 | 354 | NONE => (iTs,match_bind(itms,binders,ixn,T,is,obj)) | 
| 52131 | 355 | | SOME u => if Envir.aeconv (obj, red u is []) then env | 
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 356 | else raise MATCH | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 357 | end | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 358 | | _ => | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 359 | let val (oh,oargs) = strip_comb obj | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 360 | in case (ph,oh) of | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 361 | (Const c,Const d) => rigrig2(c,d,oargs) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 362 | | (Free f,Free g) => rigrig2(f,g,oargs) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 363 | | (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: 
4667diff
changeset | 364 | else rigrig1(iTs,oargs) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 365 | | (Abs _, _) => raise Pattern | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 366 | | (_, Abs _) => raise Pattern | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 367 | | _ => raise MATCH | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 368 | end | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 369 | end; | 
| 678 
6151b7f3b606
Modified pattern.ML to perform proper matching of Higher-Order Patterns.
 nipkow parents: 
63diff
changeset | 370 | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 371 | val pT = fastype_of pat | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 372 | and oT = fastype_of obj | 
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 373 | val envir' = apfst (typ_match thy (pT, oT)) envir; | 
| 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 374 | in mtch [] po envir' handle Pattern => first_order_match thy po envir' end; | 
| 0 | 375 | |
| 18182 
786d83044780
tuned interfaces to support incremental match/unify (cf. versions in type.ML);
 wenzelm parents: 
18011diff
changeset | 376 | 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: 
18011diff
changeset | 377 | |
| 46857 | 378 | fun matchess thy (ps, os) = | 
| 379 | length ps = length os andalso | |
| 380 | ((fold (match thy) (ps ~~ os) (Vartab.empty, Vartab.empty); true) handle MATCH => false); | |
| 28348 | 381 | |
| 19880 | 382 | fun equiv thy (t, u) = matches thy (t, u) andalso matches thy (u, t); | 
| 383 | ||
| 0 | 384 | |
| 4667 
6328d427a339
Tried to reorganize rewriter a little. More to be done.
 nipkow parents: 
2792diff
changeset | 385 | (* Does pat match a subterm of obj? *) | 
| 22255 | 386 | fun matches_subterm thy (pat, obj) = | 
| 387 | let | |
| 388 | fun msub bounds obj = matches thy (pat, obj) orelse | |
| 389 | (case obj of | |
| 390 | Abs (x, T, t) => msub (bounds + 1) (snd (Term.dest_abs (Name.bound bounds, T, t))) | |
| 391 | | t $ u => msub bounds t orelse msub bounds u | |
| 392 | | _ => false) | |
| 393 | in msub 0 obj end; | |
| 4667 
6328d427a339
Tried to reorganize rewriter a little. More to be done.
 nipkow parents: 
2792diff
changeset | 394 | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 395 | fun first_order(Abs(_,_,t)) = first_order t | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 396 | | 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: 
4667diff
changeset | 397 | not(is_Var t) | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 398 | | first_order _ = true; | 
| 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 399 | |
| 20672 | 400 | fun pattern (Abs (_, _, t)) = pattern t | 
| 401 | | pattern t = | |
| 402 | let val (head, args) = strip_comb t in | |
| 403 | if is_Var head then | |
| 404 | forall is_Bound args andalso not (has_duplicates (op aconv) args) | |
| 405 | else forall pattern args | |
| 406 | end; | |
| 4820 
8f6dbbd8d497
Tried to speed up the rewriter by eta-contracting all patterns beforehand and
 nipkow parents: 
4667diff
changeset | 407 | |
| 12784 | 408 | |
| 409 | (* rewriting -- simple but fast *) | |
| 410 | ||
| 30565 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 411 | fun match_rew thy tm (tm1, tm2) = | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 412 | let val rtm = the_default tm2 (Term.rename_abs tm1 tm tm2) in | 
| 32035 | 413 | SOME (Envir.subst_term (match thy (tm1, tm) (Vartab.empty, Vartab.empty)) rtm, rtm) | 
| 30565 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 414 | handle MATCH => NONE | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 415 | end; | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 416 | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 417 | fun gen_rewrite_term bot thy rules procs tm = | 
| 12784 | 418 | let | 
| 13195 | 419 | val skel0 = Bound 0; | 
| 420 | ||
| 16939 | 421 | fun variant_absfree bounds (x, T, t) = | 
| 12797 | 422 | let | 
| 20079 
ec5c8584487c
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
19880diff
changeset | 423 | val (x', t') = Term.dest_abs (Name.bound bounds, T, t); | 
| 16939 | 424 | fun abs u = Abs (x, T, abstract_over (Free (x', T), u)); | 
| 425 | in (abs, t') end; | |
| 12797 | 426 | |
| 15531 | 427 | fun rew (Abs (_, _, body) $ t) = SOME (subst_bound (t, body), skel0) | 
| 30565 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 428 | | rew tm = | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 429 | (case get_first (match_rew thy tm) rules of | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 430 | NONE => Option.map (rpair skel0) (get_first (fn p => p tm) procs) | 
| 
784be11cb70e
export match_rew -- useful for implementing "procs" for rewrite_term;
 wenzelm parents: 
30555diff
changeset | 431 | | x => x); | 
| 13195 | 432 | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 433 | fun rew_sub r bounds skel (tm1 $ tm2) = (case tm1 of | 
| 12784 | 434 | Abs (_, _, body) => | 
| 435 | let val tm' = subst_bound (tm2, body) | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 436 | in SOME (the_default tm' (rew_sub r bounds skel0 tm')) end | 
| 14787 | 437 | | _ => | 
| 13195 | 438 | let val (skel1, skel2) = (case skel of | 
| 439 | skel1 $ skel2 => (skel1, skel2) | |
| 440 | | _ => (skel0, skel0)) | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 441 | in case r bounds skel1 tm1 of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 442 | SOME tm1' => (case r bounds skel2 tm2 of | 
| 15531 | 443 | SOME tm2' => SOME (tm1' $ tm2') | 
| 444 | | NONE => SOME (tm1' $ tm2)) | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 445 | | NONE => (case r bounds skel2 tm2 of | 
| 15531 | 446 | SOME tm2' => SOME (tm1 $ tm2') | 
| 447 | | NONE => NONE) | |
| 13195 | 448 | end) | 
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 449 | | rew_sub r bounds skel (Abs body) = | 
| 13195 | 450 | let | 
| 16939 | 451 | val (abs, tm') = variant_absfree bounds body; | 
| 13195 | 452 | val skel' = (case skel of Abs (_, _, skel') => skel' | _ => skel0) | 
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 453 | in case r (bounds + 1) skel' tm' of | 
| 15531 | 454 | SOME tm'' => SOME (abs tm'') | 
| 455 | | NONE => NONE | |
| 12797 | 456 | end | 
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 457 | | rew_sub _ _ _ _ = NONE; | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 458 | |
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 459 | fun rew_bot bounds (Var _) _ = NONE | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 460 | | rew_bot bounds skel tm = (case rew_sub rew_bot bounds skel tm of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 461 | SOME tm1 => (case rew tm1 of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 462 | SOME (tm2, skel') => SOME (the_default tm2 (rew_bot bounds skel' tm2)) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 463 | | NONE => SOME tm1) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 464 | | NONE => (case rew tm of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 465 | SOME (tm1, skel') => SOME (the_default tm1 (rew_bot bounds skel' tm1)) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 466 | | NONE => NONE)); | 
| 12784 | 467 | |
| 35210 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 468 | fun rew_top bounds _ tm = (case rew tm of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 469 | SOME (tm1, _) => (case rew_sub rew_top bounds skel0 tm1 of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 470 | SOME tm2 => SOME (the_default tm2 (rew_top bounds skel0 tm2)) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 471 | | NONE => SOME tm1) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 472 | | NONE => (case rew_sub rew_top bounds skel0 tm of | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 473 | SOME tm1 => SOME (the_default tm1 (rew_top bounds skel0 tm1)) | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 474 | | NONE => NONE)); | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 475 | |
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 476 | in the_default tm ((if bot then rew_bot else rew_top) 0 skel0 tm) end; | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 477 | |
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 478 | val rewrite_term = gen_rewrite_term true; | 
| 
6e45e4c94751
Added function rewrite_term_top for top-down rewriting.
 berghofe parents: 
33049diff
changeset | 479 | val rewrite_term_top = gen_rewrite_term false; | 
| 12784 | 480 | |
| 0 | 481 | end; | 
| 13642 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 482 | |
| 
a3d97348ceb6
added failure trace information to pattern unification
 nipkow parents: 
13195diff
changeset | 483 | val trace_unify_fail = Pattern.trace_unify_fail; |