tuned;
authorwenzelm
Tue, 08 Oct 2019 16:54:23 +0200
changeset 70810 8623422d07de
parent 70809 58677c92bef7
child 70811 785a2112f861
tuned;
src/Pure/proofterm.ML
--- a/src/Pure/proofterm.ML	Tue Oct 08 16:17:19 2019 +0200
+++ b/src/Pure/proofterm.ML	Tue Oct 08 16:54:23 2019 +0200
@@ -1078,6 +1078,10 @@
 
 (** axioms and theorems **)
 
+fun tvars_of t = map TVar (rev (Term.add_tvars t []));
+fun tfrees_of t = map TFree (rev (Term.add_tfrees t []));
+fun type_variables_of t = tvars_of t @ tfrees_of t;
+
 fun vars_of t = map Var (rev (Term.add_vars t []));
 fun frees_of t = map Free (rev (Term.add_frees t []));
 fun variables_of t = vars_of t @ frees_of t;
@@ -1573,14 +1577,12 @@
 
 fun app_types shift prop Ts prf =
   let
-    val tvars = rev (Term.add_tvars prop []);
-    val tfrees = rev (Term.add_tfrees prop []) |> map (fn (a, S) => ((a, ~1), S));
-    val inst = (tvars @ tfrees) ~~ Ts;
-    fun subst_same v = (case AList.lookup (op =) inst v of SOME T => T | NONE => raise Same.SAME);
+    val inst = type_variables_of prop ~~ Ts;
+    fun subst_same A =
+      (case AList.lookup (op =) inst A of SOME T => T | NONE => raise Same.SAME);
     val subst_type_same =
       Term_Subst.map_atypsT_same
-        (fn TVar ((a, i), S) => subst_same ((a, i - shift), S)
-          | TFree (a, S) => subst_same ((a, ~1), S));
+        (fn TVar ((a, i), S) => subst_same (TVar ((a, i - shift), S)) | A => subst_same A);
   in Same.commit (map_proof_types_same subst_type_same) prf end;
 
 fun guess_name (PThm ({name, ...}, _)) = name