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

数学计算

开发平台:

Unix_Linux

  1. /* Test gmp_urandomm_ui.
  2. Copyright 2003, 2005 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 numbers generated by rstate to obey the limit requested. */
  20. void
  21. check_one (const char *name, gmp_randstate_ptr rstate)
  22. {
  23.   static const unsigned long  n_table[] = {
  24.     1, 2, 3, 4, 5, 6, 7, 8,
  25.     123, 456, 789,
  26.     255, 256, 257,
  27.     1023, 1024, 1025,
  28.     32767, 32768, 32769,
  29.     ULONG_MAX/2-2, ULONG_MAX/2-1, ULONG_MAX/2, ULONG_MAX/2+1, ULONG_MAX/2+2,
  30.     ULONG_MAX-2, ULONG_MAX-1, ULONG_MAX,
  31.   };
  32.   unsigned long  got, n;
  33.   int    i, j;
  34.   for (i = 0; i < numberof (n_table); i++)
  35.     {
  36.       n = n_table[i];
  37.       for (j = 0; j < 5; j++)
  38.         {
  39.           got = gmp_urandomm_ui (rstate, n);
  40.           if (got >= n)
  41.             {
  42.               printf ("Return value out of range:n");
  43.               printf ("  algorithm: %sn", name);
  44.               printf ("  n:     %#lxn", n);
  45.               printf ("  got:   %#lxn", got);
  46.               abort ();
  47.             }
  48.         }
  49.     }
  50. }
  51. int
  52. main (int argc, char *argv[])
  53. {
  54.   tests_start ();
  55.   call_rand_algs (check_one);
  56.   tests_end ();
  57.   exit (0);
  58. }