mirror of
https://github.com/vale981/arb
synced 2025-03-06 01:41:39 -05:00
bugfix
This commit is contained in:
parent
6050e07c83
commit
3bc81e2838
1 changed files with 2 additions and 2 deletions
|
@ -141,8 +141,8 @@ gamma_stirling_eval_fmprb_series(fmprb_ptr res, const fmprb_t z, long n, long nu
|
|||
}
|
||||
else
|
||||
{
|
||||
tlen = FLINT_MIN(2 * (n - 1) + 1, num);
|
||||
qlen = FLINT_MIN(2 * (n - 1) - 1, num);
|
||||
qlen = FLINT_MIN(2 * (n - 1) + 1, num);
|
||||
tlen = FLINT_MIN(2 * (n - 1) - 1, num);
|
||||
bsplit(Q, T, z, 1, n, num, prec);
|
||||
_fmprb_poly_div_series(res, T, tlen, Q, qlen, num, prec);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue