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

数学计算

开发平台:

Unix_Linux

  1. /* Test gmp_urandomb_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 number of bits requested.
  20.    No point testing bits==BITS_PER_ULONG, since any return is acceptable in
  21.    that case.  */
  22. void
  23. check_one (const char *name, gmp_randstate_ptr rstate)
  24. {
  25.   unsigned long  bits, limit, got;
  26.   int    i;
  27.   for (bits = 0; bits < BITS_PER_ULONG; bits++)
  28.     {
  29.       /* will demand got < limit */
  30.       limit = (1L << bits);
  31.       for (i = 0; i < 5; i++)
  32.         {
  33.           got = gmp_urandomb_ui (rstate, bits);
  34.           if (got >= limit)
  35.             {
  36.               printf ("Return value out of range:n");
  37.               printf ("  algorithm: %sn", name);
  38.               printf ("  bits:  %lun", bits);
  39.               printf ("  limit: %#lxn", limit);
  40.               printf ("  got:   %#lxn", got);
  41.               abort ();
  42.             }
  43.         }
  44.     }
  45. }
  46. int
  47. main (int argc, char *argv[])
  48. {
  49.   tests_start ();
  50.   call_rand_algs (check_one);
  51.   tests_end ();
  52.   exit (0);
  53. }