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

数学计算

开发平台:

Unix_Linux

  1. /* Test mtox.
  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 <string.h> /* for strcmp, strlen */
  15. #include <stdlib.h> /* for abort */
  16. #include <stdio.h>
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "mp.h"
  20. #include "tests.h"
  21. void
  22. check_random (void)
  23. {
  24.   mpz_t  z;
  25.   int    i;
  26.   char   *got, *want;
  27.   gmp_randstate_ptr  rands = RANDS;
  28.   mpz_init (z);
  29.   for (i = 0; i < 1000; i++)
  30.     {
  31.       mpz_erandomb (z, rands, 6 * GMP_LIMB_BITS);
  32.       got = mtox (z);
  33.       want = mpz_get_str (NULL, 16, z);
  34.       if (strcmp (got, want) != 0)
  35.         {
  36.           printf ("mtox wrong resultn");
  37.           printf ("  got  "%s"n", got);
  38.           printf ("  want "%s"n", want);
  39.           abort ();
  40.         }
  41.       (*__gmp_free_func) (got, strlen (got) + 1);
  42.       (*__gmp_free_func) (want, strlen (want) + 1);
  43.     }
  44.   mpz_clear (z);
  45. }
  46. void
  47. check_mem (void)
  48. {
  49.   MINT  *m;
  50.   char  *s;
  51.   m = itom (0);
  52.   s = mtox (m);
  53.   if (! tests_memory_valid (s))
  54.     {
  55.       printf ("Skipping t-mtox, cannot test libgmp and libmp memory togethern");
  56.       exit (0);
  57.     }
  58.   mfree (m);
  59.   (*__gmp_free_func) (s, strlen (s) + 1);
  60. }
  61. int
  62. main (void)
  63. {
  64.   tests_start ();
  65.   check_mem ();
  66.   check_random ();
  67.   tests_end ();
  68.   exit (0);
  69. }