aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Reals/Rminmax.v
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-12-17 16:46:56 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-12-17 16:46:56 +0000
commitd1f2e143ff56e53d6feee4158bc9f69b8d3e9ee1 (patch)
tree76231fd20cb4cfced7872e6f7f2f428203a9b4d5 /theories/Reals/Rminmax.v
parent35e84a95326c95f9399084c843e244de6ae25753 (diff)
Reverse order of arguments in min_case_strong for better uniformity (and compatibility...)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12595 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Reals/Rminmax.v')
-rw-r--r--theories/Reals/Rminmax.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Reals/Rminmax.v b/theories/Reals/Rminmax.v
index 70bc00c9f..e78e89542 100644
--- a/theories/Reals/Rminmax.v
+++ b/theories/Reals/Rminmax.v
@@ -59,7 +59,7 @@ Lemma Rmax_monotone: forall f,
Proof. intros; apply max_monotone; auto. congruence. Qed.
Lemma Rmin_case_strong : forall n m (P:R -> Type),
- (m<=n -> P m) -> (n<=m -> P n) -> P (Rmin n m).
+ (n<=m -> P n) -> (m<=n -> P m) -> P (Rmin n m).
Proof. intros; apply min_case_strong; auto. congruence. Defined.
Lemma Rmin_case : forall n m (P:R -> Type),