mirror of
https://github.com/vale981/arb
synced 2025-03-05 17:31:38 -05:00
fix an off-by-one error
This commit is contained in:
parent
147297748f
commit
e680993c60
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ fmpcb_zeta_series_em_sum(fmpcb_struct * z, const fmpcb_t s, const fmpcb_t a, int
|
|||
long i;
|
||||
ulong r, n;
|
||||
|
||||
bernoulli_cache_compute(2 * M);
|
||||
bernoulli_cache_compute(2 * M + 1);
|
||||
|
||||
t = _fmpcb_vec_init(d + 1);
|
||||
u = _fmpcb_vec_init(d);
|
||||
|
|
Loading…
Add table
Reference in a new issue