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