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

数学计算

开发平台:

Unix_Linux

  1. /* Test the Mersenne Twister random number generator.
  2. Copyright 2002 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 "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "tests.h"
  18. #ifndef TRUE
  19. #define TRUE (1)
  20. #endif
  21. #ifndef FALSE
  22. #define FALSE (0)
  23. #endif
  24. /* Test that the sequence without seeding equals the sequence with the
  25.    default seed.  */
  26. int
  27. chk_default_seed (void)
  28. {
  29.   gmp_randstate_t r1, r2;
  30.   mpz_t a, b;
  31.   int i;
  32.   int ok = TRUE;
  33.   mpz_init2 (a, 19936L);
  34.   mpz_init2 (b, 19936L);
  35.   gmp_randinit_mt (r1);
  36.   gmp_randinit_mt (r2);
  37.   gmp_randseed_ui (r2, 5489L); /* Must match DEFAULT_SEED in randmt.c */
  38.   for (i = 0; i < 3; i++)
  39.     {
  40.       /* Extract one whole buffer per iteration.  */
  41.       mpz_urandomb (a, r1, 19936L);
  42.       mpz_urandomb (b, r2, 19936L);
  43.       if (mpz_cmp (a, b) != 0)
  44. {
  45.   ok = FALSE;
  46.   printf ("Default seed fails in iteration %dn", i);
  47.   break;
  48. }
  49.     }
  50.   gmp_randclear (r1);
  51.   gmp_randclear (r2);
  52.   mpz_clear (a);
  53.   mpz_clear (b);
  54.   return ok;
  55. }
  56. int
  57. main (int argc, char *argv[])
  58. {
  59.   int ok;
  60.   tests_start ();
  61.   ok = chk_default_seed ();
  62.   tests_end ();
  63.   if (ok)
  64.     return 0; /* pass */
  65.   else
  66.     return 1; /* fail */
  67. }