File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ - in `RIneq.v `
2+
3+ + Changed the statement of `Rmult_gt_reg_l `.
4+ Use the convertible `Rmult_lt_reg_l `
5+ if you need a backward compatible solution
6+ (`#213 <https://github.com/coq/stdlib/pull/213 >`_,
7+ fixes `#212 <https://github.com/coq/stdlib/issues/212 >`_,
8+ by Damien Doligez).
Original file line number Diff line number Diff line change @@ -1662,7 +1662,7 @@ Proof.
16621662 now rewrite 2(Rmult_comm r).
16631663Qed .
16641664
1665- Lemma Rmult_gt_reg_l : forall r r1 r2, 0 < r -> r * r1 < r * r2 -> r1 < r2.
1665+ Lemma Rmult_gt_reg_l : forall r r1 r2, r > 0 -> r * r1 > r * r2 -> r1 > r2.
16661666Proof . now intros r r1 r2; apply Rmult_lt_reg_l. Qed .
16671667
16681668Lemma Rmult_gt_reg_r : forall r r1 r2, r > 0 -> r1 * r > r2 * r -> r1 > r2.
You can’t perform that action at this time.
0 commit comments