src/HOL/Tools/Meson/meson.ML
changeset 67091 1393c2340eec
parent 61268 abe08fb15a12
child 67149 e61557884799
--- a/src/HOL/Tools/Meson/meson.ML	Sun Nov 26 13:19:52 2017 +0100
+++ b/src/HOL/Tools/Meson/meson.ML	Sun Nov 26 21:08:32 2017 +0100
@@ -770,8 +770,8 @@
 (*Rules to convert the head literal into a negated assumption. If the head
   literal is already negated, then using notEfalse instead of notEfalse'
   prevents a double negation.*)
-val notEfalse = @{lemma "~ P ==> P ==> False" by (rule notE)};
-val notEfalse' = @{lemma "P ==> ~ P ==> False" by (rule notE)};
+val notEfalse = @{lemma "\<not> P \<Longrightarrow> P \<Longrightarrow> False" by (rule notE)};
+val notEfalse' = @{lemma "P \<Longrightarrow> \<not> P \<Longrightarrow> False" by (rule notE)};
 
 fun negated_asm_of_head th =
     th RS notEfalse handle THM _ => th RS notEfalse';