]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/library/datatypes/compare.ma
- renamed ocaml/ to components/
[helm.git] / helm / matita / library / datatypes / compare.ma
diff --git a/helm/matita/library/datatypes/compare.ma b/helm/matita/library/datatypes/compare.ma
deleted file mode 100644 (file)
index c4fd119..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-(**************************************************************************)
-(*       ___                                                               *)
-(*      ||M||                                                             *)
-(*      ||A||       A project by Andrea Asperti                           *)
-(*      ||T||                                                             *)
-(*      ||I||       Developers:                                           *)
-(*      ||T||       A.Asperti, C.Sacerdoti Coen,                          *)
-(*      ||A||       E.Tassi, S.Zacchiroli                                 *)
-(*      \   /                                                             *)
-(*       \ /        This file is distributed under the terms of the       *)
-(*        v         GNU Lesser General Public License Version 2.1         *)
-(*                                                                        *)
-(**************************************************************************)
-
-set "baseuri" "cic:/matita/datatypes/compare/".
-
-inductive compare :Set \def
-| LT : compare
-| EQ : compare
-| GT : compare.
-
-definition compare_invert: compare \to compare \def
-  \lambda c.
-    match c with
-      [ LT \Rightarrow GT
-      | EQ \Rightarrow EQ
-      | GT \Rightarrow LT ].