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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpq_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 (mpq_srcptr want, int base, const char *str)
  21. {
  22.   mpq_t   got;
  23.   MPQ_CHECK_FORMAT (want);
  24.   mp_trace_base = base;
  25.   mpq_init (got);
  26.   if (mpq_set_str (got, str, base) != 0)
  27.     {
  28.       printf ("mpq_set_str unexpectedly failedn");
  29.       printf ("  base %dn", base);
  30.       printf ("  str  "%s"n", str);
  31.       abort ();
  32.     }
  33.   MPQ_CHECK_FORMAT (got);
  34.   if (! mpq_equal (got, want))
  35.     {
  36.       printf ("mpq_set_str wrongn");
  37.       printf ("  base %dn", base);
  38.       printf ("  str  "%s"n", str);
  39.       mpq_trace ("got ", got);
  40.       mpq_trace ("want", want);
  41.       abort ();
  42.     }
  43.   mpq_clear (got);
  44. }
  45. void
  46. check_samples (void)
  47. {
  48.   mpq_t  q;
  49.   mpq_init (q);
  50.   mpq_set_ui (q, 0L, 1L);
  51.   check_one (q, 10, "0");
  52.   check_one (q, 10, "0/1");
  53.   check_one (q, 10, "0  / 1");
  54.   check_one (q, 0, "0x0/ 1");
  55.   check_one (q, 0, "0x0/ 0x1");
  56.   check_one (q, 0, "0 / 0x1");
  57.   check_one (q, 10, "-0");
  58.   check_one (q, 10, "-0/1");
  59.   check_one (q, 10, "-0  / 1");
  60.   check_one (q, 0, "-0x0/ 1");
  61.   check_one (q, 0, "-0x0/ 0x1");
  62.   check_one (q, 0, "-0 / 0x1");
  63.   mpq_set_ui (q, 255L, 256L);
  64.   check_one (q, 10, "255/256");
  65.   check_one (q, 0,  "0xFF/0x100");
  66.   check_one (q, 16, "FF/100");
  67.   mpq_neg (q, q);
  68.   check_one (q, 10, "-255/256");
  69.   check_one (q, 0,  "-0xFF/0x100");
  70.   check_one (q, 16, "-FF/100");
  71.   mpq_clear (q);
  72. }
  73. int
  74. main (void)
  75. {
  76.   tests_start ();
  77.   check_samples ();
  78.   tests_end ();
  79.   exit (0);
  80. }