mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
fix problematic assignment
This commit is contained in:
parent
cf3f4dbf12
commit
952ebc446a
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ acb_dirichlet_chi_vec(acb_ptr v, const acb_dirichlet_group_t G, const acb_dirich
|
|||
if (a[k] != ACB_DIRICHLET_CHI_NULL)
|
||||
acb_dirichlet_power(v + k, t, a[k], prec);
|
||||
else
|
||||
*(v + k) = *(v + 0);
|
||||
acb_zero(v + k);
|
||||
}
|
||||
|
||||
acb_dirichlet_powers_clear(t);
|
||||
|
|
Loading…
Add table
Reference in a new issue