aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/NeqAxioms.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Num/NeqAxioms.v')
-rw-r--r--theories/Num/NeqAxioms.v33
1 files changed, 0 insertions, 33 deletions
diff --git a/theories/Num/NeqAxioms.v b/theories/Num/NeqAxioms.v
deleted file mode 100644
index 8de6ade42..000000000
--- a/theories/Num/NeqAxioms.v
+++ /dev/null
@@ -1,33 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-(*i $Id$ i*)
-
-(** InEquality is introduced as an independant parameter, it could be
- instantiated with the negation of equality *)
-
-Require Export EqParams.
-Require Export NeqParams.
-
-Axiom eq_not_neq : (x,y:N)x=y->~(x<>y).
-Hints Immediate eq_not_neq : num.
-
-Axiom neq_sym : (x,y:N)(x<>y)->(y<>x).
-Hints Resolve neq_sym : num.
-
-Axiom neq_not_neq_trans : (x,y,z:N)(x<>y)->~(y<>z)->(x<>z).
-Hints Resolve neq_not_neq_trans : num.
-
-
-
-
-
-
-
-
-