aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorherbelin2008-02-27 19:36:07 +0000
committerherbelin2008-02-27 19:36:07 +0000
commit6d111b2d517e327ba9cf317556760c2c8e828310 (patch)
tree299600cee363d2a7e0bedf8661d1fe0486fce83b /theories
parent829ccbf685e1361985db093398349c52160ec349 (diff)
Application patch #1807 sur hypothèse inutile de Rpower_O
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10599 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories')
-rw-r--r--theories/Reals/Rpower.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Reals/Rpower.v b/theories/Reals/Rpower.v
index 5c1c07c736..61cd98e56b 100644
--- a/theories/Reals/Rpower.v
+++ b/theories/Reals/Rpower.v
@@ -418,9 +418,9 @@ Proof.
ring.
Qed.
-Theorem Rpower_O : forall x:R, 0 < x -> x ^R 0 = 1.
+Theorem Rpower_O : forall x:R, x ^R 0 = 1.
Proof.
- intros x H; unfold Rpower in |- *.
+ intros x; unfold Rpower in |- *.
rewrite Rmult_0_l; apply exp_0.
Qed.