src/Pure/pattern.ML
author berghofe
Tue, 01 Jun 2004 15:02:05 +0200
changeset 14861 ca5cae7fb65a
parent 14787 724ce6e574e3
child 14875 c48d086264c4
permissions -rw-r--r--
Removed ~10000 hack in function idx that can lead to inconsistencies when unifying terms with a large number of abstractions.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
     1
(*  Title:      Pure/pattern.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
     3
    Author:     Tobias Nipkow, Christine Heinzelmann, and Stefan Berghofer
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Unification of Higher-Order Patterns.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
See also:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
Tobias Nipkow. Functional Unification of Higher-Order Patterns.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
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
    11
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
    12
TODO: optimize red by special-casing it
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    13
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
2751
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
    15
infix aeconv;
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
    16
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    17
signature PATTERN =
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    18
sig
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    19
  val trace_unify_fail  : bool ref
2751
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
    20
  val aeconv            : term * term -> bool
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
    21
  val eta_contract      : term -> term
13998
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
    22
  val eta_long          : typ list -> term -> term
12781
f76180d14819 added beta_eta_contract;
wenzelm
parents: 12527
diff changeset
    23
  val beta_eta_contract : term -> term
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
    24
  val eta_contract_atom : term -> term
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    25
  val match             : Type.tsig -> term * term
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
    26
                          -> (indexname*typ)list * (indexname*term)list
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    27
  val first_order_match : Type.tsig -> term * term
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
    28
                          -> (indexname*typ)list * (indexname*term)list
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    29
  val matches           : Type.tsig -> term * term -> bool
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    30
  val matches_subterm   : Type.tsig -> term * term -> bool
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    31
  val unify             : Sign.sg * Envir.env * (term * term)list -> Envir.env
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
    32
  val first_order       : term -> bool
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
    33
  val pattern           : term -> bool
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    34
  val rewrite_term      : Type.tsig -> (term * term) list -> (term -> term option) list
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
    35
                          -> term -> term
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    36
  exception Unif
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    37
  exception MATCH
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
  exception Pattern
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
    39
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    40
1501
bb7f99a0a6f0 Elimination of fully-functorial style.
paulson
parents: 1460
diff changeset
    41
structure Pattern : PATTERN =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    42
struct
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    43
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
exception Unif;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
exception Pattern;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    47
val trace_unify_fail = ref false;
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    48
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    49
(* Only for communication between unification and error message printing *)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    50
val sgr = ref Sign.pre_pure
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    51
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    52
fun string_of_term env binders t = Sign.string_of_term (!sgr)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    53
  (Envir.norm_term env (subst_bounds(map Free binders,t)));
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    54
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    55
fun bname binders i = fst(nth_elem(i,binders));
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    56
fun bnames binders is = space_implode " " (map (bname binders) is);
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    57
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    58
fun typ_clash(tye,T,U) =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    59
  if !trace_unify_fail
13645
430310b12c5b norm_typ -> Envir.norm_type
berghofe
parents: 13642
diff changeset
    60
  then let val t = Sign.string_of_typ (!sgr) (Envir.norm_type tye T)
430310b12c5b norm_typ -> Envir.norm_type
berghofe
parents: 13642
diff changeset
    61
           and u = Sign.string_of_typ (!sgr) (Envir.norm_type tye U)
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    62
       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
    63
  else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    64
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    65
fun clash a b =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    66
  if !trace_unify_fail then tracing("Clash: " ^ a ^ " =/= " ^ b) else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    67
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    68
fun boundVar binders i =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    69
  "bound variable " ^ bname binders i ^ " (depth " ^ string_of_int i ^ ")";
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    70
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    71
fun clashBB binders i j =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    72
  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
    73
  else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    74
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    75
fun clashB binders i s =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    76
  if !trace_unify_fail then clash (boundVar binders i) s
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    77
  else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    78
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    79
fun proj_fail(env,binders,F,is,t) =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    80
  if !trace_unify_fail
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    81
  then let val f = Syntax.string_of_vname F
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    82
           val xs = bnames binders is
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    83
           val u = string_of_term env binders t
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    84
           val ys = bnames binders (loose_bnos t \\ is)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    85
       in tracing("Cannot unify variable " ^ f ^
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    86
               " (depending on bound variables " ^ xs ^ ")\nwith term " ^ u ^
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    87
               "\nTerm contains additional bound variable(s) " ^ ys)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    88
       end
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    89
  else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    90
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    91
fun ocheck_fail(F,t,binders,env) =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    92
  if !trace_unify_fail
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    93
  then let val f = Syntax.string_of_vname F
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    94
           val u = string_of_term env binders t
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    95
       in tracing("Variable " ^ f ^ " occurs in term\n" ^ u ^
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    96
                  "\nCannot unify!\n")
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    97
       end
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    98
  else ()
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
    99
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   100
fun occurs(F,t,env) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   101
    let fun occ(Var(G,_))   = (case Envir.lookup(env,G) of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
                                 Some(t) => occ t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   103
                               | None    => F=G)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   104
          | occ(t1$t2)      = occ t1 orelse occ t2
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
          | occ(Abs(_,_,t)) = occ t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   106
          | occ _           = false
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   107
    in occ t end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   108
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   110
fun mapbnd f =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   111
    let fun mpb d (Bound(i))     = if i < d then Bound(i) else Bound(f(i-d)+d)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   112
          | 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
   113
          | 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
   114
          | mpb _ atom           = atom
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   115
    in mpb 0 end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   116
14861
ca5cae7fb65a Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents: 14787
diff changeset
   117
fun idx [] j     = raise Unif
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   118
  | idx(i::is) j = if i=j then length is else idx is j;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   119
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   120
fun at xs i = nth_elem (i,xs);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   121
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
fun mkabs (binders,is,t)  =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   123
    let fun mk(i::is) = let val (x,T) = nth_elem(i,binders)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   124
                        in Abs(x,T,mk is) end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   125
          | mk []     = t
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   126
    in mk is end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   127
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   128
val incr = mapbnd (fn i => i+1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   129
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   130
fun ints_of []             = []
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   131
  | ints_of (Bound i ::bs) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   132
      let val is = ints_of bs
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1501
diff changeset
   133
      in if i mem_int is then raise Pattern else i::is end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   134
  | ints_of _              = raise Pattern;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   135
12232
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   136
fun ints_of' env ts = ints_of (map (Envir.head_norm env) ts);
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   137
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   138
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   139
fun app (s,(i::is)) = app (s$Bound(i),is)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   140
  | app (s,[])      = s;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   141
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   142
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
   143
  | red t            []      [] = t
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   144
  | red t            is      jn = app (mapbnd (at jn) t,is);
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   145
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   146
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   147
(* split_type ([T1,....,Tn]---> T,n,[]) = ([Tn,...,T1],T) *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   148
fun split_type (T,0,Ts)                    = (Ts,T)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   149
  | 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
   150
  | split_type _                           = error("split_type");
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   151
13891
ae9a2a433388 type_of_G now applies type substitution before decomposing type.
berghofe
parents: 13645
diff changeset
   152
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
   153
  let val (Ts, U) = split_type (Envir.norm_type iTs T, n, [])
ae9a2a433388 type_of_G now applies type substitution before decomposing type.
berghofe
parents: 13645
diff changeset
   154
  in map (at Ts) is ---> U end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   155
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   156
fun mkhnf (binders,is,G,js) = mkabs (binders, is, app(G,js));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   157
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
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
   159
  let val (env',G) = Envir.genvar a (env,type_of_G env (T,length is,js))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
  in Envir.update((F,mkhnf(binders,is,G,js)),env') end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   161
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   163
(* mk_proj_list(is) = [ |is| - k | 1 <= k <= |is| and is[k] >= 0 ] *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   164
fun mk_proj_list is =
14861
ca5cae7fb65a Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents: 14787
diff changeset
   165
    let fun mk(i::is,j) = if is_some i then j :: mk(is,j-1) else mk(is,j-1)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   166
          | mk([],_)    = []
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   167
    in mk(is,length is - 1) end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   168
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   169
fun proj(s,env,binders,is) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   170
    let fun trans d i = if i<d then i else (idx is (i-d))+d;
12232
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   171
        fun pr(s,env,d,binders) = (case Envir.head_norm env s of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   172
              Abs(a,T,t) => let val (t',env') = pr(t,env,d+1,((a,T)::binders))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   173
                            in (Abs(a,T,t'),env') end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   174
            | t => (case strip_comb t of
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
                (c as Const _,ts) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   176
                         let val (ts',env') = prs(ts,env,d,binders)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   177
                         in (list_comb(c,ts'),env') end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   178
                 | (f as Free _,ts) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   179
                         let val (ts',env') = prs(ts,env,d,binders)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   180
                         in (list_comb(f,ts'),env') end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   181
                 | (Bound(i),ts) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   182
                         let val j = trans d i
14861
ca5cae7fb65a Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents: 14787
diff changeset
   183
                             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
   184
                         in (list_comb(Bound j,ts'),env') end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   185
                 | (Var(F as (a,_),Fty),ts) =>
12232
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   186
                      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
   187
                          val js' = map (try (trans d)) js;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   188
                          val ks = mk_proj_list js';
14861
ca5cae7fb65a Removed ~10000 hack in function idx that can lead to inconsistencies
berghofe
parents: 14787
diff changeset
   189
                          val ls = mapfilter I js'
13891
ae9a2a433388 type_of_G now applies type substitution before decomposing type.
berghofe
parents: 13645
diff changeset
   190
                          val Hty = type_of_G env (Fty,length js,ks)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   191
                          val (env',H) = Envir.genvar a (env,Hty)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   192
                          val env'' =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   193
                                Envir.update((F,mkhnf(binders,js,H,ks)),env')
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   194
                      in (app(H,ls),env'') end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
                 | _  => raise Pattern))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   196
        and prs(s::ss,env,d,binders) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
              let val (s',env1) = pr(s,env,d,binders)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   198
                  val (ss',env2) = prs(ss,env1,d,binders)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
              in (s'::ss',env2) end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   200
          | prs([],env,_,_) = ([],env)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   201
   in if downto0(is,length binders - 1) then (s,env)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
      else pr(s,env,0,binders)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   203
   end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   204
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   206
(* mk_ff_list(is,js) = [ length(is) - k | 1 <= k <= |is| and is[k] = js[k] ] *)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   207
fun mk_ff_list(is,js) =
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   208
    let fun mk([],[],_)        = []
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   209
          | mk(i::is,j::js, k) = if i=j then k :: mk(is,js,k-1)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   210
                                        else mk(is,js,k-1)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   211
          | mk _               = error"mk_ff_list"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   212
    in mk(is,js,length is-1) end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   214
fun flexflex1(env,binders,F,Fty,is,js) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   215
  if is=js then env
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   216
  else let val ks = mk_ff_list(is,js)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   217
       in mknewhnf(env,binders,is,F,Fty,ks) end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   218
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
fun flexflex2(env,binders,F,Fty,is,G,Gty,js) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   220
  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
   221
            if js subset_int is
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   222
            then let val t= mkabs(binders,is,app(Var(G,Gty),map (idx is) js))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   223
                 in Envir.update((F,t),env) end
1576
af8f43f742a0 Added some optimized versions of functions dealing with sets
berghofe
parents: 1501
diff changeset
   224
            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
   225
                     val Hty = type_of_G env (Fty,length is,map (idx is) ks)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   226
                     val (env',H) = Envir.genvar a (env,Hty)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   227
                     fun lam(is) = mkabs(binders,is,app(H,map (idx is) ks));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
                 in Envir.update((G,lam js), Envir.update((F,lam is),env'))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
                 end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
  in if xless(G,F) then ff(F,Fty,is,G,Gty,js) else ff(G,Gty,js,F,Fty,is) end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   232
val tsgr = ref(Type.empty_tsig);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   234
fun unify_types(T,U, env as Envir.Envir{asol,iTs,maxidx}) =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   235
  if T=U then env
12527
d6c91bc3e49c tuned Type.unify;
wenzelm
parents: 12232
diff changeset
   236
  else let val (iTs',maxidx') = Type.unify (!tsgr) (iTs, maxidx) (U, T)
1435
aefcd255ed4a Removed bug in type unification. Negative indexes are not used any longer.
nipkow
parents: 1029
diff changeset
   237
       in Envir.Envir{asol=asol,maxidx=maxidx',iTs=iTs'} end
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   238
       handle Type.TUNIFY => (typ_clash(iTs,T,U); raise Unif);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   239
12232
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   240
fun unif binders (env,(s,t)) = case (Envir.head_norm env s, Envir.head_norm env t) of
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   241
      (Abs(ns,Ts,ts),Abs(nt,Tt,tt)) =>
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   242
         let val name = if ns = "" then nt else ns
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
         in unif ((name,Ts)::binders) (env,(ts,tt)) end
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   244
    | (Abs(ns,Ts,ts),t) => unif ((ns,Ts)::binders) (env,(ts,(incr t)$Bound(0)))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   245
    | (t,Abs(nt,Tt,tt)) => unif ((nt,Tt)::binders) (env,((incr t)$Bound(0),tt))
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   246
    | p => cases(binders,env,p)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   247
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   248
and cases(binders,env,(s,t)) = case (strip_comb s,strip_comb t) of
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   249
       ((Var(F,Fty),ss),(Var(G,Gty),ts)) =>
12232
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   250
         if F = G then flexflex1(env,binders,F,Fty,ints_of' env ss,ints_of' env ts)
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   251
                  else flexflex2(env,binders,F,Fty,ints_of' env ss,G,Gty,ints_of' env ts)
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   252
      | ((Var(F,_),ss),_)             => flexrigid(env,binders,F,ints_of' env ss,t)
ff75ed08b3fb Replaced devar by Envir.head_norm
berghofe
parents: 8406
diff changeset
   253
      | (_,(Var(F,_),ts))             => flexrigid(env,binders,F,ints_of' env ts,s)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   254
      | ((Const c,ss),(Const d,ts))   => rigidrigid(env,binders,c,d,ss,ts)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   255
      | ((Free(f),ss),(Free(g),ts))   => rigidrigid(env,binders,f,g,ss,ts)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   256
      | ((Bound(i),ss),(Bound(j),ts)) => rigidrigidB (env,binders,i,j,ss,ts)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   257
      | ((Abs(_),_),_)                => raise Pattern
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   258
      | (_,(Abs(_),_))                => raise Pattern
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   259
      | ((Const(c,_),_),(Free(f,_),_)) => (clash c f; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   260
      | ((Const(c,_),_),(Bound i,_))   => (clashB binders i c; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   261
      | ((Free(f,_),_),(Const(c,_),_)) => (clash f c; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   262
      | ((Free(f,_),_),(Bound i,_))    => (clashB binders i f; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   263
      | ((Bound i,_),(Const(c,_),_))   => (clashB binders i c; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   264
      | ((Bound i,_),(Free(f,_),_))    => (clashB binders i f; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   265
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   266
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   267
and rigidrigid (env,binders,(a,Ta),(b,Tb),ss,ts) =
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   268
      if a<>b then (clash a b; raise Unif)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   269
      else foldl (unif binders) (unify_types(Ta,Tb,env), ss~~ts)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   270
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   271
and rigidrigidB (env,binders,i,j,ss,ts) =
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   272
     if i <> j then (clashBB binders i j; raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   273
     else foldl (unif binders) (env ,ss~~ts)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   274
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   275
and flexrigid (params as (env,binders,F,is,t)) =
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   276
      if occurs(F,t,env) then (ocheck_fail(F,t,binders,env); raise Unif)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   277
      else (let val (u,env') = proj(t,env,binders,is)
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   278
            in Envir.update((F,mkabs(binders,is,u)),env') end
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   279
            handle Unif => (proj_fail params; raise Unif));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   280
14643
wenzelm
parents: 13998
diff changeset
   281
fun unify(sg,env,tus) = (sgr := sg; tsgr := Sign.tsig_of sg;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   282
                         foldl (unif []) (env,tus));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   283
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   284
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   285
(*Eta-contract a term (fully)*)
2792
6c17c5ec3d8b Avoid eta-contraction in the simplifier.
nipkow
parents: 2751
diff changeset
   286
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   287
fun eta_contract t =
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   288
  let
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   289
    exception SAME;
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   290
    fun eta (Abs (a, T, body)) =
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   291
      ((case eta body of
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   292
          body' as (f $ Bound 0) =>
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   293
            if loose_bvar1 (f, 0) then Abs(a, T, body')
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   294
            else incr_boundvars ~1 f
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   295
        | body' => Abs (a, T, body')) handle SAME =>
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   296
       (case body of
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   297
          (f $ Bound 0) =>
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   298
            if loose_bvar1 (f, 0) then raise SAME
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   299
            else incr_boundvars ~1 f
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   300
        | _ => raise SAME))
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   301
      | eta (f $ t) =
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   302
          (let val f' = eta f
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   303
           in f' $ etah t end handle SAME => f $ eta t)
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   304
      | eta _ = raise SAME
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   305
    and etah t = (eta t handle SAME => t)
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   306
  in etah t end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   307
12781
f76180d14819 added beta_eta_contract;
wenzelm
parents: 12527
diff changeset
   308
val beta_eta_contract = eta_contract o Envir.beta_norm;
f76180d14819 added beta_eta_contract;
wenzelm
parents: 12527
diff changeset
   309
6539
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 4820
diff changeset
   310
(*Eta-contract a term from outside: just enough to reduce it to an atom
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 4820
diff changeset
   311
DOESN'T QUITE WORK!
2e7d2fba9f6c Eta contraction is now performed all the time during rewriting.
nipkow
parents: 4820
diff changeset
   312
*)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   313
fun eta_contract_atom (t0 as Abs(a, T, body)) =
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   314
      (case  eta_contract2 body  of
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   315
        body' as (f $ Bound 0) =>
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   316
            if loose_bvar1(f,0) then Abs(a,T,body')
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   317
            else eta_contract_atom (incr_boundvars ~1 f)
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   318
      | _ => t0)
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   319
  | eta_contract_atom t = t
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   320
and eta_contract2 (f$t) = f $ eta_contract_atom t
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   321
  | eta_contract2 t     = eta_contract_atom t;
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   322
13998
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   323
(* put a term into eta long beta normal form *)
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   324
fun eta_long Ts (Abs (s, T, t)) = Abs (s, T, eta_long (T :: Ts) t)
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   325
  | eta_long Ts t = (case strip_comb t of
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   326
      (Abs _, _) => eta_long Ts (Envir.beta_norm t)
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   327
    | (u, ts) =>
13998
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   328
      let
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   329
        val Us = binder_types (fastype_of1 (Ts, t));
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   330
        val i = length Us
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   331
      in list_abs (map (pair "x") Us,
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   332
        list_comb (incr_boundvars i u, map (eta_long (rev Us @ Ts))
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   333
          (map (incr_boundvars i) ts @ map Bound (i - 1 downto 0))))
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   334
      end);
75a399c2781f Added new function eta_long.
berghofe
parents: 13891
diff changeset
   335
2725
9453616d4b80 Declares eta_contract_atom; fixed comment; some tidying
paulson
parents: 2616
diff changeset
   336
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   337
(*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
   338
  Note that Consts and Vars may have more than one type.*)
2751
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   339
fun t aeconv u = aconv_aux (eta_contract_atom t, eta_contract_atom u)
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   340
and aconv_aux (Const(a,T), Const(b,U)) = a=b  andalso  T=U
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   341
  | aconv_aux (Free(a,T),  Free(b,U))  = a=b  andalso  T=U
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   342
  | aconv_aux (Var(v,T),   Var(w,U))   = eq_ix(v,w) andalso  T=U
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   343
  | aconv_aux (Bound i,    Bound j)    = i=j
2751
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   344
  | aconv_aux (Abs(_,T,t), Abs(_,U,u)) = (t aeconv u)  andalso  T=U
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   345
  | aconv_aux (f$t,        g$u)        = (f aeconv g)  andalso (t aeconv u)
2751
673c4eefd2e1 Corrected aeconv and exported it
paulson
parents: 2725
diff changeset
   346
  | aconv_aux _ =  false;
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   347
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   348
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   349
(*** Matching ***)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   350
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   351
exception MATCH;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   352
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   353
fun typ_match tsig args = (Type.typ_match tsig args)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   354
                          handle Type.TYPE_MATCH => raise MATCH;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   355
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   356
(*First-order matching;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   357
  fomatch tsig (pattern, object) returns a (tyvar,typ)list and (var,term)list.
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   358
  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
   359
  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
   360
  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
   361
  Precondition: the pattern is already eta-contracted!
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   362
  Note: types are matched on the fly *)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   363
fun fomatch tsig =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   364
  let
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   365
    fun mtch (instsp as (tyinsts,insts)) = fn
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   366
        (Var(ixn,T), t)  =>
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   367
          if loose_bvar(t,0) then raise MATCH
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   368
          else (case assoc_string_int(insts,ixn) of
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   369
                  None => (typ_match tsig (tyinsts, (T, fastype_of t)),
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   370
                           (ixn,t)::insts)
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   371
                | 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
   372
      | (Free (a,T), Free (b,U)) =>
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   373
          if a=b then (typ_match tsig (tyinsts,(T,U)), insts) else raise MATCH
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   374
      | (Const (a,T), Const (b,U))  =>
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   375
          if a=b then (typ_match tsig (tyinsts,(T,U)), insts) else raise MATCH
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   376
      | (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
   377
      | (Abs(_,T,t), Abs(_,U,u))  =>
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   378
          mtch (typ_match tsig (tyinsts,(T,U)),insts) (t,u)
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   379
      | (f$t, g$u) => mtch (mtch instsp (f,g)) (t, u)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   380
      | (t, Abs(_,U,u))  =>  mtch instsp ((incr t)$(Bound 0), u)
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
  in mtch end;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   383
8406
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   384
fun first_order_match tsig = apfst Vartab.dest o fomatch tsig (Vartab.empty, []);
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   385
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   386
(* Matching of higher-order patterns *)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   387
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   388
fun match_bind(itms,binders,ixn,is,t) =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   389
  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
   390
  in if null is
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   391
     then if null js then (ixn,t)::itms else raise MATCH
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   392
     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
   393
          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
   394
                            else mapbnd (idx is) t
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   395
               in (ixn, mkabs(binders,is,t')) :: itms end
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   396
          else raise MATCH
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   397
  end;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   398
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   399
fun match tsg (po as (pat,obj)) =
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   400
let
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   401
  (* Pre: pat and obj have same type *)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   402
  fun mtch 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
   403
    case pat of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   404
      Abs(ns,Ts,ts) =>
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   405
        (case obj of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   406
           Abs(nt,Tt,tt) => mtch ((nt,Tt)::binders) (env,(ts,tt))
8406
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   407
         | _ => let val Tt = typ_subst_TVars_Vartab iTs Ts
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   408
                in mtch((ns,Tt)::binders)(env,(ts,(incr obj)$Bound(0))) end)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   409
    | _ => (case obj of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   410
              Abs(nt,Tt,tt) =>
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   411
                mtch((nt,Tt)::binders)(env,((incr pat)$Bound(0),tt))
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   412
            | _ => cases(binders,env,pat,obj))
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   413
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   414
  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
   415
    let val (ph,pargs) = strip_comb pat
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   416
        fun rigrig1(iTs,oargs) =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   417
              foldl (mtch binders) ((iTs,itms), pargs~~oargs)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   418
        fun rigrig2((a,Ta),(b,Tb),oargs) =
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   419
              if a<> b then raise MATCH
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   420
              else rigrig1(typ_match tsg (iTs,(Ta,Tb)), oargs)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   421
    in case ph of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   422
         Var(ixn,_) =>
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   423
           let val is = ints_of pargs
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   424
           in case assoc_string_int(itms,ixn) of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   425
                None => (iTs,match_bind(itms,binders,ixn,is,obj))
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   426
              | Some u => if obj aeconv (red u is []) then env
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   427
                          else raise MATCH
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   428
           end
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   429
       | _ =>
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   430
           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
   431
           in case (ph,oh) of
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   432
                (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
   433
              | (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
   434
              | (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
   435
                                     else rigrig1(iTs,oargs)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   436
              | (Abs _, _)        => raise Pattern
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   437
              | (_, Abs _)        => raise Pattern
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   438
              | _                 => raise MATCH
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   439
           end
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   440
    end;
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   441
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   442
  val pT = fastype_of pat
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   443
  and oT = fastype_of obj
8406
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   444
  val iTs = typ_match tsg (Vartab.empty, (pT,oT))
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   445
  val insts2 = (iTs,[])
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   446
8406
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   447
in apfst Vartab.dest (mtch [] (insts2, po)
a217b0cd304d Type.unify and Type.typ_match now use Vartab instead of association lists.
berghofe
parents: 6539
diff changeset
   448
   handle Pattern => fomatch tsg insts2 po)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   449
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   450
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   451
(*Predicate: does the pattern match the object?*)
678
6151b7f3b606 Modified pattern.ML to perform proper matching of Higher-Order Patterns.
nipkow
parents: 63
diff changeset
   452
fun matches tsig po = (match tsig po; true) handle MATCH => false;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   453
4667
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   454
(* Does pat match a subterm of obj? *)
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   455
fun matches_subterm tsig (pat,obj) =
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   456
  let fun msub(bounds,obj) = matches tsig (pat,obj) orelse
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   457
            case obj of
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   458
              Abs(x,T,t) => let val y = variant bounds x
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   459
                                val f = Free(":" ^ y,T)
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   460
                            in msub(x::bounds,subst_bound(f,t)) end
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   461
            | s$t => msub(bounds,s) orelse msub(bounds,t)
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   462
            | _ => false
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   463
  in msub([],obj) end;
6328d427a339 Tried to reorganize rewriter a little. More to be done.
nipkow
parents: 2792
diff changeset
   464
4820
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   465
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
   466
  | 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
   467
                         not(is_Var t)
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   468
  | first_order _ = true;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   469
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   470
fun pattern(Abs(_,_,t)) = pattern t
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   471
  | pattern(t) = let val (head,args) = strip_comb t
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   472
                 in if is_Var head
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   473
                    then let val _ = ints_of args in true end
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   474
                         handle Pattern => false
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   475
                    else forall pattern args
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   476
                 end;
8f6dbbd8d497 Tried to speed up the rewriter by eta-contracting all patterns beforehand and
nipkow
parents: 4667
diff changeset
   477
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   478
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   479
(* rewriting -- simple but fast *)
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   480
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   481
fun rewrite_term tsig rules procs tm =
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   482
  let
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   483
    val skel0 = Bound 0;
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   484
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   485
    val rhs_names =
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   486
      foldr (fn ((_, rhs), names) => add_term_free_names (rhs, names)) (rules, []);
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   487
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   488
    fun variant_absfree (x, T, t) =
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   489
      let
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   490
        val x' = variant (add_term_free_names (t, rhs_names)) x;
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   491
        val t' = subst_bound (Free (x', T), t);
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   492
      in (fn u => Abs (x, T, abstract_over (Free (x', T), u)), t') end;
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   493
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   494
    fun match_rew tm (tm1, tm2) =
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   495
      let val rtm = if_none (Term.rename_abs tm1 tm tm2) tm2
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   496
      in Some (subst_vars (match tsig (tm1, tm)) rtm, rtm)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   497
        handle MATCH => None
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   498
      end;
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   499
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   500
    fun rew (Abs (_, _, body) $ t) = Some (subst_bound (t, body), skel0)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   501
      | rew tm = (case get_first (match_rew tm) rules of
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   502
          None => apsome (rpair skel0) (get_first (fn p => p tm) procs)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   503
        | x => x);
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   504
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   505
    fun rew1 (Var _) _ = None
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   506
      | rew1 skel tm = (case rew2 skel tm of
12817
fcbb6ad5c790 rewrite_term: removed rew0, so no on-the-fly eta-contraction;
wenzelm
parents: 12797
diff changeset
   507
          Some tm1 => (case rew tm1 of
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   508
              Some (tm2, skel') => Some (if_none (rew1 skel' tm2) tm2)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   509
            | None => Some tm1)
12817
fcbb6ad5c790 rewrite_term: removed rew0, so no on-the-fly eta-contraction;
wenzelm
parents: 12797
diff changeset
   510
        | None => (case rew tm of
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   511
              Some (tm1, skel') => Some (if_none (rew1 skel' tm1) tm1)
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   512
            | None => None))
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   513
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   514
    and rew2 skel (tm1 $ tm2) = (case tm1 of
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   515
            Abs (_, _, body) =>
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   516
              let val tm' = subst_bound (tm2, body)
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   517
              in Some (if_none (rew2 skel0 tm') tm') end
14787
724ce6e574e3 adapted tsig interface;
wenzelm
parents: 14643
diff changeset
   518
          | _ =>
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   519
            let val (skel1, skel2) = (case skel of
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   520
                skel1 $ skel2 => (skel1, skel2)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   521
              | _ => (skel0, skel0))
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   522
            in case rew1 skel1 tm1 of
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   523
                Some tm1' => (case rew1 skel2 tm2 of
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   524
                    Some tm2' => Some (tm1' $ tm2')
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   525
                  | None => Some (tm1' $ tm2))
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   526
              | None => (case rew1 skel2 tm2 of
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   527
                    Some tm2' => Some (tm1 $ tm2')
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   528
                  | None => None)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   529
            end)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   530
      | rew2 skel (Abs (x, T, tm)) =
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   531
          let
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   532
            val (abs, tm') = variant_absfree (x, T, tm);
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   533
            val skel' = (case skel of Abs (_, _, skel') => skel' | _ => skel0)
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   534
          in case rew1 skel' tm' of
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   535
              Some tm'' => Some (abs tm'')
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   536
            | None => None
12797
4de06a8f67ef eta_contract with sharing (by berghofe);
wenzelm
parents: 12784
diff changeset
   537
          end
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   538
      | rew2 _ _ = None
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   539
13195
98975cc13d28 Changes to rewrite_term:
berghofe
parents: 12980
diff changeset
   540
  in if_none (rew1 skel0 tm) tm end;
12784
bab3b002cbbb added rewrite_term;
wenzelm
parents: 12781
diff changeset
   541
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   542
end;
13642
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   543
a3d97348ceb6 added failure trace information to pattern unification
nipkow
parents: 13195
diff changeset
   544
val trace_unify_fail = Pattern.trace_unify_fail;