mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
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:
parent
9ef9f79145
commit
2c122bcc49
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue