fix a very silly bug in pfq_choose_n resulting in near-integers not being properly skipped in some cases

This commit is contained in:
Fredrik Johansson 2016-05-11 20:12:27 +02:00
parent 9ef9f79145
commit 2c122bcc49

View file

@ -13,7 +13,7 @@
double mag_get_log2_d_approx(const mag_t x);
#define D_ABS(x) ((x) < 0.0 ? (-x) : (x))
#define D_ABS(x) ((x) < 0.0 ? (-(x)) : (x))
int
acb_hypgeom_pfq_choose_n_double(slong * nn,