aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/GtAxioms.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-07-13 14:55:03 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-07-13 14:55:03 +0000
commit246909f2c587ed798bc42b65fb90c7b77dfa52b7 (patch)
tree0ea9ba42784b09b9478b32d4dafc01c3b81124d1 /theories/Num/GtAxioms.v
parenta2b33be15a16de033506da6a4e8b407eaf951054 (diff)
Répertoire Numbers poursuit l'objectif entamé en syntaxe V7 dans le
répertoire Num. Suppression de ce dernier de l'archive courante. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9995 85f007b7-540e-0410-9357-904b9bb8a0f7
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.