aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/ZArith/Zorder.v
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-05-05 15:12:59 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-05-05 15:12:59 +0000
commitd2bd5d87d23d443f6e41496bdfe5f8e82d675634 (patch)
treed9cb49b25b4e49ccda4dd424ef2595f53d9e61c0 /theories/ZArith/Zorder.v
parentf1c9bb9d37e3bcefb5838c57e7ae45923d99c4ff (diff)
Modularization of BinInt, related fixes in the stdlib
All the functions about Z is now in a separated file BinIntDef, which is Included in BinInt.Z. This BinInt.Z directly implements ZAxiomsSig, and instantiates derived properties ZProp. Note that we refer to Z instead of t inside BinInt.Z, otherwise ring breaks later on @eq Z.t git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14106 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/ZArith/Zorder.v')
-rw-r--r--theories/ZArith/Zorder.v5
1 files changed, 1 insertions, 4 deletions
diff --git a/theories/ZArith/Zorder.v b/theories/ZArith/Zorder.v
index 1bd833d6f..fcac8c33a 100644
--- a/theories/ZArith/Zorder.v
+++ b/theories/ZArith/Zorder.v
@@ -444,10 +444,7 @@ Proof.
[ assumption | apply Zgt_succ ].
Qed.
-Lemma Zlt_succ_r : forall n m, n < Zsucc m <-> n <= m.
-Proof.
- split; [apply Zlt_succ_le | apply Zle_lt_succ].
-Qed.
+Notation Zlt_succ_r := Z.lt_succ_r (only parsing).
Lemma Zle_succ_l : forall n m, Zsucc n <= m <-> n < m.
Proof.