aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Reals/Rfunctions.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-05-14 01:33:26 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-05-14 01:33:26 +0000
commit0667c8e4bfd796f6e42c97041ab9d48236791d3b (patch)
tree81c897a8b402460c9714ad92d3cae1c23e9d4908 /theories/Reals/Rfunctions.v
parent08090c64a3322ca17e6af733831b66d9ffd0756c (diff)
Amelioration affichage
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4019 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Reals/Rfunctions.v')
-rw-r--r--theories/Reals/Rfunctions.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/theories/Reals/Rfunctions.v b/theories/Reals/Rfunctions.v
index 7d8e4b02c..220e3919b 100644
--- a/theories/Reals/Rfunctions.v
+++ b/theories/Reals/Rfunctions.v
@@ -66,6 +66,8 @@ Fixpoint pow [r:R;n:nat]:R:=
|(S n) => (Rmult r (pow r n))
end.
+Arguments Scope pow [ R_scope nat_scope ].
+
Lemma pow_O: (e : R) (pow e O) == R1.
Simpl; Auto with real.
Qed.