mirror of
https://github.com/vale981/arb
synced 2025-03-04 17:01:40 -05:00
missing parentheses
This commit is contained in:
parent
3c849fe94a
commit
e189290d34
1 changed files with 2 additions and 2 deletions
|
@ -100,8 +100,8 @@ arb_mul(arb_t z, const arb_t x, const arb_t y, slong prec)
|
||||||
|
|
||||||
*arb_radref(z) = *zr;
|
*arb_radref(z) = *zr;
|
||||||
}
|
}
|
||||||
else if (arf_is_inf(arb_midref(x)) && mag_is_finite(arb_radref(x)) && arb_is_nonzero(y) ||
|
else if ((arf_is_inf(arb_midref(x)) && mag_is_finite(arb_radref(x)) && arb_is_nonzero(y)) ||
|
||||||
arf_is_inf(arb_midref(y)) && mag_is_finite(arb_radref(y)) && arb_is_nonzero(x))
|
(arf_is_inf(arb_midref(y)) && mag_is_finite(arb_radref(y)) && arb_is_nonzero(x)))
|
||||||
{
|
{
|
||||||
mag_zero(arb_radref(z));
|
mag_zero(arb_radref(z));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue