src/HOL/Tools/hologic.ML
changeset 38786 e46e7a9cb622
parent 38555 bd6359ed1636
child 38795 848be46708dc
--- a/src/HOL/Tools/hologic.ML	Thu Aug 26 13:44:50 2010 +0200
+++ b/src/HOL/Tools/hologic.ML	Thu Aug 26 20:51:17 2010 +0200
@@ -210,8 +210,8 @@
 
 val conj = @{term "op &"}
 and disj = @{term "op |"}
-and imp = @{term "op -->"}
-and Not = @{term "Not"};
+and imp = @{term implies}
+and Not = @{term Not};
 
 fun mk_conj (t1, t2) = conj $ t1 $ t2
 and mk_disj (t1, t2) = disj $ t1 $ t2
@@ -230,7 +230,7 @@
 
 fun disjuncts t = disjuncts_aux t [];
 
-fun dest_imp (Const ("op -->", _) $ A $ B) = (A, B)
+fun dest_imp (Const ("HOL.implies", _) $ A $ B) = (A, B)
   | dest_imp  t = raise TERM ("dest_imp", [t]);
 
 fun dest_not (Const ("HOL.Not", _) $ t) = t