aboutsummaryrefslogtreecommitdiff
path: root/theories/Ints/Z
diff options
context:
space:
mode:
authorglondu2007-09-28 22:36:35 +0000
committerglondu2007-09-28 22:36:35 +0000
commit83015147aac453effee4d5b1b6363b31c56edd84 (patch)
tree9790716a80165743ebe63ef3e43a8f2df8640ca1 /theories/Ints/Z
parent38a70c48e843dd5da4120ed14148663cba094851 (diff)
Creation of a new token PATTERNIDENT (?ident) for intro patterns, so
that "intros ? a ? b" behaves as expected. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10155 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Ints/Z')
-rw-r--r--theories/Ints/Z/ZDivModAux.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Ints/Z/ZDivModAux.v b/theories/Ints/Z/ZDivModAux.v
index be7955aadd..cb6a01fcd3 100644
--- a/theories/Ints/Z/ZDivModAux.v
+++ b/theories/Ints/Z/ZDivModAux.v
@@ -142,7 +142,7 @@ Hint Resolve Zlt_gt Zle_ge: zarith.
replace (c * a / b * b) with (c * a - (c * a) mod b).
rewrite Zmult_minus_distr_l.
unfold Zminus; apply Zplus_le_compat_l.
- match goal with |- - ? X <= -?Y => assert (Y <= X); auto with zarith end.
+ match goal with |- - ?X <= -?Y => assert (Y <= X); auto with zarith end.
apply Zle_trans with ((c mod b) * (a mod b)); auto with zarith.
rewrite Zmod_mult; case (Zmod_le_first ((c mod b) * (a mod b)) b);
auto with zarith.