src/HOL/hologic.ML
changeset 27325 70e4eb732fa9
parent 26804 e2b1e6868c2f
--- a/src/HOL/hologic.ML	Mon Jun 23 15:31:25 2008 +0200
+++ b/src/HOL/hologic.ML	Mon Jun 23 15:51:37 2008 +0200
@@ -34,7 +34,6 @@
   val disjuncts: term -> term list
   val dest_imp: term -> term * term
   val dest_not: term -> term
-  val dest_concls: term -> term list
   val eq_const: typ -> term
   val mk_eq: term * term -> term
   val dest_eq: term -> term * term
@@ -198,9 +197,6 @@
 fun dest_not (Const ("Not", _) $ t) = t
   | dest_not t = raise TERM ("dest_not", [t]);
 
-fun imp_concl_of t = imp_concl_of (#2 (dest_imp t)) handle TERM _ => t;
-val dest_concls = map imp_concl_of o dest_conj o dest_Trueprop;
-
 fun eq_const T = Const ("op =", [T, T] ---> boolT);
 fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u;