mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
83 lines
1.8 KiB
C
83 lines
1.8 KiB
C
/*
|
|
Copyright (C) 2014 Fredrik Johansson
|
|
|
|
This file is part of Arb.
|
|
|
|
Arb is free software: you can redistribute it and/or modify it under
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
by the Free Software Foundation; either version 2.1 of the License, or
|
|
(at your option) any later version. See <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "arf.h"
|
|
|
|
int
|
|
arf_cmp(const arf_t x, const arf_t y)
|
|
{
|
|
int xs, ys, ec, mc;
|
|
mp_size_t xn, yn;
|
|
mp_srcptr xp, yp;
|
|
|
|
if (arf_is_special(x) || arf_is_special(y))
|
|
{
|
|
if (arf_equal(x, y))
|
|
return 0;
|
|
if (arf_is_nan(x) || arf_is_nan(y))
|
|
return 0;
|
|
if (arf_is_zero(y)) return arf_sgn(x);
|
|
if (arf_is_zero(x)) return -arf_sgn(y);
|
|
if (arf_is_pos_inf(x)) return 1;
|
|
if (arf_is_neg_inf(y)) return 1;
|
|
return -1;
|
|
}
|
|
|
|
xs = ARF_SGNBIT(x);
|
|
ys = ARF_SGNBIT(y);
|
|
|
|
if (xs != ys)
|
|
return xs ? -1 : 1;
|
|
|
|
ec = fmpz_cmp(ARF_EXPREF(x), ARF_EXPREF(y));
|
|
|
|
if (ec != 0)
|
|
return ((ec < 0) ^ xs) ? -1 : 1;
|
|
|
|
ARF_GET_MPN_READONLY(xp, xn, x);
|
|
ARF_GET_MPN_READONLY(yp, yn, y);
|
|
|
|
if (xn >= yn)
|
|
mc = mpn_cmp(xp + xn - yn, yp, yn);
|
|
else
|
|
mc = mpn_cmp(xp, yp + yn - xn, xn);
|
|
|
|
if (mc != 0)
|
|
return ((mc < 0) ^ xs) ? -1 : 1;
|
|
|
|
if (xn != yn)
|
|
return ((xn < yn) ^ xs) ? -1 : 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int arf_cmp_si(const arf_t x, slong y)
|
|
{
|
|
arf_t t;
|
|
arf_init_set_si(t, y); /* no need to free */
|
|
return arf_cmp(x, t);
|
|
}
|
|
|
|
int arf_cmp_ui(const arf_t x, ulong y)
|
|
{
|
|
arf_t t;
|
|
arf_init_set_ui(t, y); /* no need to free */
|
|
return arf_cmp(x, t);
|
|
}
|
|
|
|
int arf_cmp_d(const arf_t x, double y)
|
|
{
|
|
arf_t t;
|
|
arf_init(t); /* no need to free */
|
|
arf_set_d(t, y);
|
|
return arf_cmp(x, t);
|
|
}
|
|
|