mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
Use variable names which do not conflict with FLINT
This commit is contained in:
parent
7e64c5237f
commit
a4c5930721
1 changed files with 6 additions and 6 deletions
12
arf.h
12
arf.h
|
@ -870,12 +870,12 @@ void arf_randtest_special(arf_t x, flint_rand_t state, slong bits, slong mag_bit
|
|||
} \
|
||||
else if ((_xn) == 2) \
|
||||
{ \
|
||||
mp_limb_t __x1, __x0, __y1, __y0; \
|
||||
__x0 = (_x)[0]; \
|
||||
__x1 = (_x)[1]; \
|
||||
__y0 = (_y)[0]; \
|
||||
__y1 = (_y)[1]; \
|
||||
nn_mul_2x2((_z)[3], (_z)[2], (_z)[1], (_z)[0], __x1, __x0, __y1, __y0); \
|
||||
mp_limb_t __arb_x1, __arb_x0, __arb_y1, __arb_y0; \
|
||||
__arb_x0 = (_x)[0]; \
|
||||
__arb_x1 = (_x)[1]; \
|
||||
__arb_y0 = (_y)[0]; \
|
||||
__arb_y1 = (_y)[1]; \
|
||||
nn_mul_2x2((_z)[3], (_z)[2], (_z)[1], (_z)[0], __arb_x1, __arb_x0, __arb_y1, __arb_y0); \
|
||||
} \
|
||||
else if ((_x) == (_y)) \
|
||||
{ \
|
||||
|
|
Loading…
Add table
Reference in a new issue