src/Pure/drule.ML
changeset 60314 6e465f0d46d3
parent 60313 2a0b42cd58fb
child 60315 c08adefc98ea
--- a/src/Pure/drule.ML	Sat May 30 20:21:53 2015 +0200
+++ b/src/Pure/drule.ML	Sat May 30 21:28:01 2015 +0200
@@ -14,7 +14,6 @@
   val strip_imp_concl: cterm -> cterm
   val cprems_of: thm -> cterm list
   val cterm_fun: (term -> term) -> (cterm -> cterm)
-  val ctyp_fun: (typ -> typ) -> (ctyp -> ctyp)
   val forall_intr_list: cterm list -> thm -> thm
   val forall_intr_vars: thm -> thm
   val forall_elim_list: cterm list -> thm -> thm
@@ -133,7 +132,6 @@
 val cprems_of = strip_imp_prems o Thm.cprop_of;
 
 fun cterm_fun f ct = Thm.global_cterm_of (Thm.theory_of_cterm ct) (f (Thm.term_of ct));
-fun ctyp_fun f cT = Thm.global_ctyp_of (Thm.theory_of_ctyp cT) (f (Thm.typ_of cT));
 
 fun certify t = Thm.global_cterm_of (Context.the_theory (Context.the_thread_data ())) t;