2009-07-24 17:56:38 -04:00
|
|
|
/* Test mpn_mullow_n mpn_mulhigh_n
|
|
|
|
|
|
|
|
Copyright 2009 Jason Moxham
|
|
|
|
|
|
|
|
This file is part of the MPIR Library.
|
|
|
|
|
|
|
|
The MPIR Library is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License, or (at
|
|
|
|
your option) any later version.
|
|
|
|
|
|
|
|
The MPIR Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with the MPIR Library; see the file COPYING.LIB. If not, write
|
|
|
|
to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "mpir.h"
|
|
|
|
#include "gmp-impl.h"
|
|
|
|
#include "tests.h"
|
|
|
|
|
|
|
|
#define DISP(xp,xn) do{int __t;printf("%s=",#xp);for(__t=(xn)-1;__t>=0;__t--)printf("%lX ",(xp)[__t]);printf("\n");}while(0)
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
unsigned long bp, xn, n, b, zn, c;
|
2009-07-26 14:06:59 -04:00
|
|
|
mp_limb_t xp[1000], yp[1000], mp[1000], lp[1000], hp[1000];
|
2009-09-14 10:17:11 -04:00
|
|
|
gmp_randstate_t rands;
|
2009-07-24 17:56:38 -04:00
|
|
|
int qpn, j, k, i, l, i1, k1, j1, i2, k2, j2;
|
|
|
|
tests_start ();
|
2009-09-14 10:17:11 -04:00
|
|
|
gmp_randinit_default(rands);
|
2009-07-24 17:56:38 -04:00
|
|
|
|
|
|
|
for (n = 1; n < 100; n++)
|
|
|
|
{
|
|
|
|
for (c = 0; c < 10; c++)
|
|
|
|
{
|
2009-09-14 08:19:07 -04:00
|
|
|
mpn_randomb (xp, rands, n);
|
|
|
|
mpn_randomb (yp, rands, n);
|
2009-07-24 17:56:38 -04:00
|
|
|
mpn_mul_n (mp, xp, yp, n);
|
|
|
|
mpn_mullow_n (lp, xp, yp, n);
|
|
|
|
mpn_mulhigh_n (hp, xp, yp, n);
|
|
|
|
if (mpn_cmp (mp, lp, n) != 0)
|
|
|
|
{
|
|
|
|
printf ("mpn_mullow_n error %ld\n", n);
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
if (mpn_cmp (mp + n, hp + n, n) != 0)
|
|
|
|
{
|
|
|
|
printf ("mpn_mulhigh_n error %ld\n", n);
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-14 10:17:11 -04:00
|
|
|
gmp_randclear(rands);
|
2009-07-24 17:56:38 -04:00
|
|
|
tests_end ();
|
|
|
|
exit (0);
|
|
|
|
}
|