src/Pure/conjunction.ML
changeset 67721 5348bea4accd
parent 64556 851ae0e7b09c
child 74282 c2ee8d993d6a
--- a/src/Pure/conjunction.ML	Sun Feb 25 12:59:08 2018 +0100
+++ b/src/Pure/conjunction.ML	Sun Feb 25 15:44:46 2018 +0100
@@ -72,7 +72,7 @@
 val A = read_prop "A" and vA = (("A", 0), propT);
 val B = read_prop "B" and vB = (("B", 0), propT);
 val C = read_prop "C";
-val ABC = read_prop "A ==> B ==> C";
+val ABC = read_prop "A \<Longrightarrow> B \<Longrightarrow> C";
 val A_B = read_prop "A &&& B";
 
 val conjunction_def =
@@ -155,9 +155,9 @@
 in
 
 (*
-  A1 &&& ... &&& An ==> B
+  A1 &&& ... &&& An \<Longrightarrow> B
   -----------------------
-  A1 ==> ... ==> An ==> B
+  A1 \<Longrightarrow> ... \<Longrightarrow> An \<Longrightarrow> B
 *)
 fun curry_balanced n th =
   if n < 2 then th
@@ -172,9 +172,9 @@
     end;
 
 (*
-  A1 ==> ... ==> An ==> B
+  A1 \<Longrightarrow> ... \<Longrightarrow> An \<Longrightarrow> B
   -----------------------
-  A1 &&& ... &&& An ==> B
+  A1 &&& ... &&& An \<Longrightarrow> B
 *)
 fun uncurry_balanced n th =
   if n < 2 then th