src/Pure/term_subst.ML
author wenzelm
Thu, 16 Jul 2009 17:03:11 +0200
changeset 32016 597b3b69b8d8
parent 31980 c7c1d545007e
child 32020 9abf5d66606e
permissions -rw-r--r--
use structure Same; more exports; tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/term_subst.ML
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     3
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
     4
Efficient type/term substitution.
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     5
*)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     6
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     7
signature TERM_SUBST =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
     8
sig
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
     9
  val map_atypsT_same: typ Same.operation -> typ Same.operation
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    10
  val map_types_same: typ Same.operation -> term Same.operation
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    11
  val map_aterms_same: term Same.operation -> term Same.operation
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    12
  val map_atypsT_option: (typ -> typ option) -> typ -> typ option
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    13
  val map_atyps_option: (typ -> typ option) -> term -> term option
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    14
  val map_types_option: (typ -> typ option) -> term -> term option
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    15
  val map_aterms_option: (term -> term option) -> term -> term option
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    16
  val generalize: string list * string list -> int -> term -> term
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    17
  val generalizeT: string list -> int -> typ -> typ
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    18
  val generalize_option: string list * string list -> int -> term -> term option
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    19
  val generalizeT_option: string list -> int -> typ -> typ option
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    20
  val instantiateT_maxidx: ((indexname * sort) * (typ * int)) list -> typ -> int -> typ * int
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    21
  val instantiate_maxidx:
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    22
    ((indexname * sort) * (typ * int)) list * ((indexname * typ) * (term * int)) list ->
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    23
    term -> int -> term * int
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    24
  val instantiate: ((indexname * sort) * typ) list * ((indexname * typ) * term) list ->
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    25
    term -> term
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    26
  val instantiateT: ((indexname * sort) * typ) list -> typ -> typ
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    27
  val instantiate_option: ((indexname * sort) * typ) list * ((indexname * typ) * term) list ->
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    28
    term -> term option
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    29
  val instantiateT_option: ((indexname * sort) * typ) list -> typ -> typ option
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    30
  val zero_var_indexes: term -> term
21607
3698319f6503 zero_var_indexes_inst: multiple terms;
wenzelm
parents: 21315
diff changeset
    31
  val zero_var_indexes_inst: term list ->
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    32
    ((indexname * sort) * typ) list * ((indexname * typ) * term) list
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    33
end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    34
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 29269
diff changeset
    35
structure Term_Subst: TERM_SUBST =
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    36
struct
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    37
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    38
(* generic mapping *)
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    39
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    40
fun map_atypsT_same f =
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    41
  let
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    42
    fun typ (Type (a, Ts)) = Type (a, typs Ts)
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    43
      | typ T = f T
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    44
    and typs (T :: Ts) = (typ T :: Same.commit typs Ts handle Same.SAME => T :: typs Ts)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    45
      | typs [] = raise Same.SAME;
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    46
  in typ end;
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    47
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    48
fun map_types_same f =
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    49
  let
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    50
    fun term (Const (a, T)) = Const (a, f T)
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    51
      | term (Free (a, T)) = Free (a, f T)
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    52
      | term (Var (v, T)) = Var (v, f T)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    53
      | term (Bound _)  = raise Same.SAME
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    54
      | term (Abs (x, T, t)) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    55
          (Abs (x, f T, Same.commit term t)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    56
            handle Same.SAME => Abs (x, T, term t))
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    57
      | term (t $ u) = (term t $ Same.commit term u handle Same.SAME => t $ term u);
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    58
  in term end;
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    59
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    60
fun map_aterms_same f =
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    61
  let
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    62
    fun term (Abs (x, T, t)) = Abs (x, T, term t)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    63
      | term (t $ u) = (term t $ Same.commit term u handle Same.SAME => t $ term u)
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    64
      | term a = f a;
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    65
  in term end;
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    66
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    67
val map_atypsT_option = Same.capture o map_atypsT_same o Same.function;
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    68
val map_atyps_option = Same.capture o map_types_same o map_atypsT_same o Same.function;
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    69
val map_types_option = Same.capture o map_types_same o Same.function;
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    70
val map_aterms_option = Same.capture o map_aterms_same o Same.function;
31980
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    71
c7c1d545007e added some generic mapping combinators;
wenzelm
parents: 31977
diff changeset
    72
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    73
(* generalization of fixed variables *)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    74
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    75
local
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    76
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    77
fun generalizeT_same [] _ _ = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    78
  | generalizeT_same tfrees idx ty =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    79
      let
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    80
        fun gen_typ (Type (a, Ts)) = Type (a, gen_typs Ts)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    81
          | gen_typ (TFree (a, S)) =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    82
              if member (op =) tfrees a then TVar ((a, idx), S)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    83
              else raise Same.SAME
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    84
          | gen_typ _ = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    85
        and gen_typs (T :: Ts) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    86
            (gen_typ T :: Same.commit gen_typs Ts
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    87
              handle Same.SAME => T :: gen_typs Ts)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    88
          | gen_typs [] = raise Same.SAME;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    89
      in gen_typ ty end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    90
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    91
fun generalize_same ([], []) _ _ = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    92
  | generalize_same (tfrees, frees) idx tm =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    93
      let
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    94
        val genT = generalizeT_same tfrees idx;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    95
        fun gen (Free (x, T)) =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    96
              if member (op =) frees x then
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
    97
                Var (Name.clean_index (x, idx), Same.commit genT T)
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    98
              else Free (x, genT T)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
    99
          | gen (Var (xi, T)) = Var (xi, genT T)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   100
          | gen (Const (c, T)) = Const (c, genT T)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   101
          | gen (Bound _) = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   102
          | gen (Abs (x, T, t)) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   103
              (Abs (x, genT T, Same.commit gen t)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   104
                handle Same.SAME => Abs (x, T, gen t))
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   105
          | gen (t $ u) = (gen t $ Same.commit gen u handle Same.SAME => t $ gen u);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   106
      in gen tm end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   107
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   108
in
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   109
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   110
fun generalize names i tm = generalize_same names i tm handle Same.SAME => tm;
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   111
fun generalizeT names i ty = generalizeT_same names i ty handle Same.SAME => ty;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   112
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   113
fun generalize_option names i tm = SOME (generalize_same names i tm) handle Same.SAME => NONE;
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   114
fun generalizeT_option names i ty = SOME (generalizeT_same names i ty) handle Same.SAME => NONE;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   115
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   116
end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   117
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   118
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   119
(* instantiation of schematic variables (types before terms) -- recomputes maxidx *)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   120
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   121
local
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   122
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   123
fun no_index (x, y) = (x, (y, ~1));
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   124
fun no_indexes1 inst = map no_index inst;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   125
fun no_indexes2 (inst1, inst2) = (map no_index inst1, map no_index inst2);
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   126
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   127
fun instantiateT_same maxidx instT ty =
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   128
  let
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   129
    fun maxify i = if i > ! maxidx then maxidx := i else ();
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   130
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   131
    fun subst_typ (Type (a, Ts)) = Type (a, subst_typs Ts)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   132
      | subst_typ (TVar ((a, i), S)) =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   133
          (case AList.lookup Term.eq_tvar instT ((a, i), S) of
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   134
            SOME (T, j) => (maxify j; T)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   135
          | NONE => (maxify i; raise Same.SAME))
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   136
      | subst_typ _ = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   137
    and subst_typs (T :: Ts) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   138
        (subst_typ T :: Same.commit subst_typs Ts
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   139
          handle Same.SAME => T :: subst_typs Ts)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   140
      | subst_typs [] = raise Same.SAME;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   141
  in subst_typ ty end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   142
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   143
fun instantiate_same maxidx (instT, inst) tm =
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   144
  let
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   145
    fun maxify i = if i > ! maxidx then maxidx := i else ();
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   146
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   147
    val substT = instantiateT_same maxidx instT;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   148
    fun subst (Const (c, T)) = Const (c, substT T)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   149
      | subst (Free (x, T)) = Free (x, substT T)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   150
      | subst (Var ((x, i), T)) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   151
          let val (T', same) = (substT T, false) handle Same.SAME => (T, true) in
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   152
            (case AList.lookup Term.eq_var inst ((x, i), T') of
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   153
               SOME (t, j) => (maxify j; t)
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   154
             | NONE => (maxify i; if same then raise Same.SAME else Var ((x, i), T')))
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   155
          end
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   156
      | subst (Bound _) = raise Same.SAME
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   157
      | subst (Abs (x, T, t)) =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   158
          (Abs (x, substT T, Same.commit subst t)
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   159
            handle Same.SAME => Abs (x, T, subst t))
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   160
      | subst (t $ u) = (subst t $ Same.commit subst u handle Same.SAME => t $ subst u);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   161
  in subst tm end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   162
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   163
in
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   164
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   165
fun instantiateT_maxidx instT ty i =
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   166
  let val maxidx = ref i
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   167
  in (instantiateT_same maxidx instT ty handle Same.SAME => ty, ! maxidx) end;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   168
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   169
fun instantiate_maxidx insts tm i =
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   170
  let val maxidx = ref i
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   171
  in (instantiate_same maxidx insts tm handle Same.SAME => tm, ! maxidx) end;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   172
21315
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   173
fun instantiateT [] ty = ty
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   174
  | instantiateT instT ty =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   175
      (instantiateT_same (ref ~1) (no_indexes1 instT) ty handle Same.SAME => ty);
21184
35baf14cfb6d instantiate: avoid global references;
wenzelm
parents: 20513
diff changeset
   176
21315
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   177
fun instantiate ([], []) tm = tm
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   178
  | instantiate insts tm =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   179
      (instantiate_same (ref ~1) (no_indexes2 insts) tm handle Same.SAME => tm);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   180
21315
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   181
fun instantiateT_option [] _ = NONE
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   182
  | instantiateT_option instT ty =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   183
      (SOME (instantiateT_same (ref ~1) (no_indexes1 instT) ty) handle Same.SAME => NONE);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   184
21315
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   185
fun instantiate_option ([], []) _ = NONE
be2669fe8363 instantiate: tuned indentity case;
wenzelm
parents: 21184
diff changeset
   186
  | instantiate_option insts tm =
32016
597b3b69b8d8 use structure Same;
wenzelm
parents: 31980
diff changeset
   187
      (SOME (instantiate_same (ref ~1) (no_indexes2 insts) tm) handle Same.SAME => NONE);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   188
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   189
end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   190
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   191
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   192
(* zero var indexes *)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   193
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   194
fun zero_var_inst vars =
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   195
  fold (fn v as ((x, i), X) => fn (inst, used) =>
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   196
    let
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   197
      val ([x'], used') = Name.variants [if Name.is_bound x then "u" else x] used;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   198
    in if x = x' andalso i = 0 then (inst, used') else ((v, ((x', 0), X)) :: inst, used') end)
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   199
  vars ([], Name.context) |> #1;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   200
21607
3698319f6503 zero_var_indexes_inst: multiple terms;
wenzelm
parents: 21315
diff changeset
   201
fun zero_var_indexes_inst ts =
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   202
  let
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 21607
diff changeset
   203
    val tvars = sort TermOrd.tvar_ord (fold Term.add_tvars ts []);
21607
3698319f6503 zero_var_indexes_inst: multiple terms;
wenzelm
parents: 21315
diff changeset
   204
    val instT = map (apsnd TVar) (zero_var_inst tvars);
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 21607
diff changeset
   205
    val vars = sort TermOrd.var_ord (map (apsnd (instantiateT instT)) (fold Term.add_vars ts []));
21607
3698319f6503 zero_var_indexes_inst: multiple terms;
wenzelm
parents: 21315
diff changeset
   206
    val inst = map (apsnd Var) (zero_var_inst vars);
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   207
  in (instT, inst) end;
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   208
21607
3698319f6503 zero_var_indexes_inst: multiple terms;
wenzelm
parents: 21315
diff changeset
   209
fun zero_var_indexes t = instantiate (zero_var_indexes_inst [t]) t;
20513
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   210
4294eb252283 Efficient term substitution -- avoids copying.
wenzelm
parents:
diff changeset
   211
end;