src/Pure/more_thm.ML
changeset 59058 a78612c67ec0
parent 58001 934d85f14d1d
child 59582 0fbed69ff081
--- a/src/Pure/more_thm.ML	Wed Nov 26 16:55:43 2014 +0100
+++ b/src/Pure/more_thm.ML	Wed Nov 26 20:05:34 2014 +0100
@@ -112,7 +112,7 @@
 
 (* collecting cterms *)
 
-val op aconvc = op aconv o pairself Thm.term_of;
+val op aconvc = op aconv o apply2 Thm.term_of;
 
 fun add_cterm_frees ct =
   let
@@ -179,7 +179,7 @@
 
 (* tables and caches *)
 
-structure Ctermtab = Table(type key = cterm val ord = Term_Ord.fast_term_ord o pairself Thm.term_of);
+structure Ctermtab = Table(type key = cterm val ord = Term_Ord.fast_term_ord o apply2 Thm.term_of);
 structure Thmtab = Table(type key = thm val ord = thm_ord);
 
 fun cterm_cache f = Cache.create Ctermtab.empty Ctermtab.lookup Ctermtab.update f;
@@ -193,11 +193,11 @@
 
 val eq_thm = is_equal o thm_ord;
 
-val eq_thm_prop = op aconv o pairself Thm.full_prop_of;
+val eq_thm_prop = op aconv o apply2 Thm.full_prop_of;
 
 fun eq_thm_strict ths =
   eq_thm ths andalso
-    let val (rep1, rep2) = pairself Thm.rep_thm ths in
+    let val (rep1, rep2) = apply2 Thm.rep_thm ths in
       Theory.eq_thy (#thy rep1, #thy rep2) andalso
       #maxidx rep1 = #maxidx rep2 andalso
       #tags rep1 = #tags rep2
@@ -207,7 +207,7 @@
 (* pattern equivalence *)
 
 fun equiv_thm ths =
-  Pattern.equiv (Theory.merge (pairself Thm.theory_of_thm ths)) (pairself Thm.full_prop_of ths);
+  Pattern.equiv (Theory.merge (apply2 Thm.theory_of_thm ths)) (apply2 Thm.full_prop_of ths);
 
 
 (* type classes and sorts *)
@@ -397,7 +397,7 @@
     val tfrees = rev (map TFree (Term.add_tfrees t []));
     val tfrees' = map (fn a => TFree (a, [])) (Name.invent Name.context Name.aT (length tfrees));
     val strip = tfrees ~~ tfrees';
-    val recover = map (pairself (Thm.ctyp_of thy o Logic.varifyT_global) o swap) strip;
+    val recover = map (apply2 (Thm.ctyp_of thy o Logic.varifyT_global) o swap) strip;
     val t' = Term.map_types (Term.map_atyps (perhaps (AList.lookup (op =) strip))) t;
   in (strip, recover, t') end;