diff options
| author | letouzey | 2011-06-28 23:29:59 +0000 |
|---|---|---|
| committer | letouzey | 2011-06-28 23:29:59 +0000 |
| commit | 2941378aee6586bcff9f8a117f11e5c5c2327607 (patch) | |
| tree | 9bb45db9aa55e2a63ddd7c8b700a0a99277b67eb /theories/Numbers/Integer/Abstract | |
| parent | 0f96f620f5ca1ccf02439bb868d223ae4aa9f2d2 (diff) | |
Some cleanup of Zdiv and Zquot, deletion of useless Zdiv_def
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14244 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Numbers/Integer/Abstract')
| -rw-r--r-- | theories/Numbers/Integer/Abstract/ZDivFloor.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Numbers/Integer/Abstract/ZDivFloor.v b/theories/Numbers/Integer/Abstract/ZDivFloor.v index f19baf4d16..0e54c453b7 100644 --- a/theories/Numbers/Integer/Abstract/ZDivFloor.v +++ b/theories/Numbers/Integer/Abstract/ZDivFloor.v @@ -88,7 +88,7 @@ Theorem div_unique_pos: Proof. intros; apply div_unique with r; auto. Qed. Theorem div_unique_neg: - forall a b q r, 0<=r<b -> a == b*q + r -> q == a/b. + forall a b q r, b<r<=0 -> a == b*q + r -> q == a/b. Proof. intros; apply div_unique with r; auto. Qed. Theorem mod_unique: |
