aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/GtAxioms.v
diff options
context:
space:
mode:
authorGravatar mohring <mohring@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-01-15 16:51:34 +0000
committerGravatar mohring <mohring@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-01-15 16:51:34 +0000
commitd3b2888ef26cf26963d2489532d01a716ad2f0ff (patch)
treee680d86a922f371d4dbddaaa7a6760e421ad9e38 /theories/Num/GtAxioms.v
parentb5a56173d812ebd14943d480cb3e2a7c80146537 (diff)
Essai d'axiomatisation des numeral
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1253 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Num/GtAxioms.v')
-rw-r--r--theories/Num/GtAxioms.v13
1 files changed, 13 insertions, 0 deletions
diff --git a/theories/Num/GtAxioms.v b/theories/Num/GtAxioms.v
new file mode 100644
index 000000000..9a54a0988
--- /dev/null
+++ b/theories/Num/GtAxioms.v
@@ -0,0 +1,13 @@
+(*i $Id: i*)
+Require Export Axioms.
+Require Export LeProps.
+
+(*s 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.