t-iset.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Test gmp_randinit_set.
  2. Copyright 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "tests.h"
  19. /* expect after a gmp_randinit_set that the new and old generators will
  20.    produce the same sequence of numbers */
  21. void
  22. check_one (const char *name, gmp_randstate_ptr src)
  23. {
  24.   gmp_randstate_t dst;
  25.   mpz_t  sz, dz;
  26.   int    i;
  27.   gmp_randinit_set (dst, src);
  28.   mpz_init (sz);
  29.   mpz_init (dz);
  30.   for (i = 0; i < 20; i++)
  31.     {
  32.       mpz_urandomb (sz, src, 123);
  33.       mpz_urandomb (dz, dst, 123);
  34.       if (mpz_cmp (sz, dz) != 0)
  35.         {
  36.           printf     ("gmp_randinit_set didn't duplicate randstaten");
  37.           printf     ("  algorithm: %sn", name);
  38.           gmp_printf ("  from src:  %#Zxn", sz);
  39.           gmp_printf ("  from dst:  %#Zxn", dz);
  40.           abort ();
  41.         }
  42.     }
  43.   mpz_clear (sz);
  44.   mpz_clear (dz);
  45.   gmp_randclear (dst);
  46. }
  47. int
  48. main (int argc, char *argv[])
  49. {
  50.   tests_start ();
  51.   call_rand_algs (check_one);
  52.   tests_end ();
  53.   exit (0);
  54. }