Fixed a bug in the sb_divappr_q test code.

This commit is contained in:
(no author) 2010-02-11 13:41:08 +00:00
parent f83a14a538
commit 7f77cf2505

View File

@ -55,7 +55,7 @@ check_sb_divappr_q (void)
for (i = 0; i < ITERS; i++)
{
dn = (random() % (MAX_LIMBS - 1)) + 3;
dn = (random() % (MAX_LIMBS - 2)) + 3;
nn = (random() % MAX_LIMBS) + dn;
mpn_rrandom (np, rands, nn);