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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_set_str.
  2. Copyright 2001 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. void
  20. check_one (mpz_srcptr want, int base, const char *str)
  21. {
  22.   mpz_t   got;
  23.   MPZ_CHECK_FORMAT (want);
  24.   mp_trace_base = (base == 0 ? 16 : base);
  25.   mpz_init (got);
  26.   if (mpz_set_str (got, str, base) != 0)
  27.     {
  28.       printf ("mpz_set_str unexpectedly failedn");
  29.       printf ("  base %dn", base);
  30.       printf ("  str  "%s"n", str);
  31.       abort ();
  32.     }
  33.   MPZ_CHECK_FORMAT (got);
  34.   if (mpz_cmp (got, want) != 0)
  35.     {
  36.       printf ("mpz_set_str wrongn");
  37.       printf ("  base %dn", base);
  38.       printf ("  str  "%s"n", str);
  39.       mpz_trace ("got ", got);
  40.       mpz_trace ("want", want);
  41.       abort ();
  42.     }
  43.   mpz_clear (got);
  44. }
  45. void
  46. check_samples (void)
  47. {
  48.   mpz_t  z;
  49.   mpz_init (z);
  50.   mpz_set_ui (z, 0L);
  51.   check_one (z, 0, "0 ");
  52.   check_one (z, 0, "0    ");
  53.   check_one (z, 10, "0 ");
  54.   check_one (z, 10, "0    ");
  55.   check_one (z, 10, "0000000    ");
  56.   mpz_set_ui (z, 123L);
  57.   check_one (z, 0, "123 ");
  58.   check_one (z, 0, "123    ");
  59.   check_one (z, 10, "123 ");
  60.   check_one (z, 10, "123    ");
  61.   check_one (z, 0, " 123 ");
  62.   check_one (z, 0, "  123    ");
  63.   check_one (z, 10, "  0000123 ");
  64.   check_one (z, 10, "  123    ");
  65.   mpz_clear (z);
  66. }
  67. int
  68. main (void)
  69. {
  70.   tests_start ();
  71.   check_samples ();
  72.   tests_end ();
  73.   exit (0);
  74. }