summaryrefslogtreecommitdiff
path: root/eq.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 /eq.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 'eq.c')
-rw-r--r--eq.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/eq.c b/eq.c
index e38b4a709..f7eceb02a 100644
--- a/eq.c
+++ b/eq.c
@@ -47,8 +47,10 @@ mpfr_eq (u, v, n_bits)
usize = (MPFR_PREC(u)-1)/BITS_PER_MP_LIMB + 1;
vsize = (MPFR_PREC(v)-1)/BITS_PER_MP_LIMB + 1;
+ usign = MPFR_SIGN(u);
+
/* 1. Are the signs different? */
- if (MPFR_SIGN(u) == MPFR_SIGN(v))
+ if (usign == MPFR_SIGN(v))
{
/* U and V are both non-negative or both negative. */
if (!MPFR_NOTZERO(u))
@@ -61,12 +63,15 @@ mpfr_eq (u, v, n_bits)
else
{
/* Either U or V is negative, but not both. */
- return 0;
+ if (MPFR_NOTZERO(u) || MPFR_NOTZERO(v))
+ return 0;
+ else return 1; /* particular case -0 = +0 */
}
/* U and V have the same sign and are both non-zero. */
-
- usign = MPFR_SIGN(u);
+ if (MPFR_IS_INF(u))
+ return (MPFR_IS_INF(v) && (usign == MPFR_SIGN(v)));
+ else if (MPFR_IS_INF(v)) return 0;
/* 2. Are the exponents different? */
if (uexp > vexp)