aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/ZArith/Zdiv.v
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-11-06 22:46:21 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-11-06 22:46:21 +0000
commit81b999ef75c38799b056de9b5dd93b3b6c6ea6d4 (patch)
treed04dd3d48c59206b0c3b52448c437519ced8d1d0 /theories/ZArith/Zdiv.v
parent556df3bfae8a80563f9415199fa8651666eb1932 (diff)
small tactics "swap" and "absurd_hyp" are now obsolete: "contradict" is
more general. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10295 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/ZArith/Zdiv.v')
-rw-r--r--theories/ZArith/Zdiv.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/theories/ZArith/Zdiv.v b/theories/ZArith/Zdiv.v
index 258ae1d13..187e182ea 100644
--- a/theories/ZArith/Zdiv.v
+++ b/theories/ZArith/Zdiv.v
@@ -666,7 +666,7 @@ Lemma Z_mod_nz_opp_full : forall a b:Z, a mod b <> 0 ->
(-a) mod b = b - (a mod b).
Proof.
intros.
- assert (b<>0) by (swap H; subst; rewrite Zmod_0_r; auto).
+ assert (b<>0) by (contradict H; subst; rewrite Zmod_0_r; auto).
symmetry; apply Zmod_unique_full with (-1-a/b); auto.
generalize (Z_mod_remainder a b H0); destruct 1; [left|right]; omega.
rewrite Zmult_minus_distr_l.
@@ -704,7 +704,7 @@ Lemma Z_div_nz_opp_full : forall a b:Z, a mod b <> 0 ->
(-a)/b = -(a/b)-1.
Proof.
intros.
- assert (b<>0) by (swap H; subst; rewrite Zmod_0_r; auto).
+ assert (b<>0) by (contradict H; subst; rewrite Zmod_0_r; auto).
symmetry; apply Zdiv_unique_full with (b-a mod b); auto.
generalize (Z_mod_remainder a b H0); destruct 1; [left|right]; omega.
pattern a at 1; rewrite (Z_div_mod_eq_full a b H0); ring.
@@ -1122,8 +1122,8 @@ Lemma Odiv_Omod_eq : forall a b, b<>0 ->
Proof.
intros.
assert (Zabs b <> 0).
- swap H.
- destruct b; simpl in *; auto with zarith; inversion H0.
+ contradict H.
+ destruct b; simpl in *; auto with zarith; inversion H.
pattern a at 1; rewrite <- (Zabs_Zsgn a).
rewrite (Z_div_mod_eq_full (Zabs a) (Zabs b) H0).
unfold Odiv, Omod.