]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/tests/decompose.ma
...
[helm.git] / helm / software / matita / tests / decompose.ma
index 03f43a9ca505a24d93b63d9840a9251e7c12f294..39d04755e617802559a13e9018ace01ffedd012c 100644 (file)
 (*                                                                        *)
 (**************************************************************************)
 
-set "baseuri" "cic:/matita/tests/decompose".
-include "../legacy/coq.ma".
-alias symbol "and" (instance 0) = "Coq's logical and".
-alias symbol "or" (instance 0) = "Coq's logical or".
 
 
+include "logic/connectives.ma".
 
 theorem stupid: 
   \forall a,b,c:Prop.
   (a \land c \lor b \land c) \to (c \land (b \lor a)).
-  intros.decompose H.split.assumption.right.assumption.
+  intros.decompose.split.assumption.right.assumption.
   split.assumption.left.assumption.qed.
 
+definition MyFalse \def False.
 
+theorem ex_falso_quodlibet: \forall (P:Prop). MyFalse \to P.
+ intros. decompose.
+qed.