Macaulay2 Engine
Loading...
Searching...
No Matches

◆ mpfc_is_zero()

int mpfc_is_zero ( gmp_CCmutable a)

Definition at line 43 of file complex.c.

44{
45 return mpfr_cmp_si(a->re, 0) == 0 && mpfr_cmp_si(a->im, 0) == 0;
46}