]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/library/logic/cprop_connectives.ma
Some notation moved to core_notation.
[helm.git] / helm / software / matita / library / logic / cprop_connectives.ma
index 3b43ef3993670c4699354fd8417d37cda8e83025..c0bbdda18f3212715b49e5c8412cb7523c81e2ce 100644 (file)
@@ -58,6 +58,13 @@ notation < "hvbox(a break ∧ b break ∧ c break ∧ d)" with precedence 35 for
  
 interpretation "constructive quaternary and" 'and4 x y z t = (And4 x y z t).
 
+record Iff (A,B:CProp) : CProp ≝
+ { if: A → B;
+   fi: B → A
+ }.
+
+interpretation "logical iff" 'iff x y = (Iff x y).
+
 inductive exT (A:Type) (P:A→CProp) : CProp ≝
   ex_introT: ∀w:A. P w → exT A P.