summaryrefslogtreecommitdiff
path: root/agm.c
diff options
context:
space:
mode:
authorhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>2000-11-21 15:21:33 +0000
committerhanrot <hanrot@280ebfd0-de03-0410-8827-d642c229c3f4>2000-11-21 15:21:33 +0000
commitebb0a24940eb551ce03eb361910c423fee7d6499 (patch)
tree46fccc5920d05d93d00ecd30aff4a012adba3d13 /agm.c
parent1cc85c4f5a5658c530891f7348c153155b6dddbb (diff)
downloadmpfr-ebb0a24940eb551ce03eb361910c423fee7d6499.tar.gz
Infinis, premiere tentative.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@793 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'agm.c')
-rw-r--r--agm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/agm.c b/agm.c
index 404089ba6..7c08a494f 100644
--- a/agm.c
+++ b/agm.c
@@ -51,6 +51,7 @@ mpfr_agm(r, a, b, rnd_mode)
TMP_DECL(marker1);
TMP_DECL(marker2);
+ /* TODO : CHECK FOR INFINITY. */
/* If a or b is NaN, the result is NaN */
if (MPFR_IS_NAN(op1) || MPFR_IS_NAN(op2))
@@ -60,8 +61,6 @@ mpfr_agm(r, a, b, rnd_mode)
/* If a or b is negative, the result is NaN */
if ((MPFR_SIGN(op1) < 0) || (MPFR_SIGN(op2) < 0))
{ MPFR_SET_NAN(r); return; }
-
-
/* If a or b is 0, the result is 0 */
if ((MPFR_NOTZERO(op1) && MPFR_NOTZERO(op2)) == 0)