aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/GtAxioms.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Num/GtAxioms.v')
-rw-r--r--theories/Num/GtAxioms.v21
1 files changed, 0 insertions, 21 deletions
diff --git a/theories/Num/GtAxioms.v b/theories/Num/GtAxioms.v
deleted file mode 100644
index 8f49a3412..000000000
--- a/theories/Num/GtAxioms.v
+++ /dev/null
@@ -1,21 +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*)
-
-Require Export Axioms.
-Require Export LeProps.
-
-(** Axiomatizing [>] from [<] *)
-
-Axiom not_le_gt : (x,y:N)~(x<=y)->(x>y).
-Axiom gt_not_le : (x,y:N)(x>y)->~(x<=y).
-
-Hints Resolve not_le_gt : num.
-
-Hints Immediate gt_not_le : num.