]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/tests/decompose.ma
- renamed ocaml/ to components/
[helm.git] / helm / matita / tests / decompose.ma
diff --git a/helm/matita/tests/decompose.ma b/helm/matita/tests/decompose.ma
deleted file mode 100644 (file)
index fe72f71..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-(**************************************************************************)
-(*       ___                                                              *)
-(*      ||M||                                                             *)
-(*      ||A||       A project by Andrea Asperti                           *)
-(*      ||T||                                                             *)
-(*      ||I||       Developers:                                           *)
-(*      ||T||         The HELM team.                                      *)
-(*      ||A||         http://helm.cs.unibo.it                             *)
-(*      \   /                                                             *)
-(*       \ /        This file is distributed under the terms of the       *)
-(*        v         GNU General Public License Version 2                  *)
-(*                                                                        *)
-(**************************************************************************)
-
-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".
-
-
-
-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.
-  split.assumption.left.assumption.qed.
-
-