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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_cmp_si.
  2. Copyright 2000, 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. #define SGN(x)       ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)
  20. void
  21. check_data (void)
  22. {
  23.   static const struct {
  24.     const char  *a, *b;
  25.     int         want;
  26.   } data[] = {
  27.     { "0",  "1", -1 },
  28.     { "0",  "0",  0 },
  29.     { "0", "-1",  1 },
  30.     { "1",  "1", 0 },
  31.     { "1",  "0", 1 },
  32.     { "1", "-1", 1 },
  33.     { "-1",  "1", -1 },
  34.     { "-1",  "0", -1 },
  35.     { "-1", "-1", 0 },
  36.     {           "0", "-0x80000000",  1 },
  37.     {  "0x80000000", "-0x80000000",  1 },
  38.     {  "0x80000001", "-0x80000000",  1 },
  39.     { "-0x80000000", "-0x80000000",  0 },
  40.     { "-0x80000001", "-0x80000000", -1 },
  41.     {                   "0", "-0x8000000000000000",  1 },
  42.     {  "0x8000000000000000", "-0x8000000000000000",  1 },
  43.     {  "0x8000000000000001", "-0x8000000000000000",  1 },
  44.     { "-0x8000000000000000", "-0x8000000000000000",  0 },
  45.     { "-0x8000000000000001", "-0x8000000000000000", -1 },
  46.   };
  47.   mpz_t  a, bz;
  48.   long   b;
  49.   int    got;
  50.   int    i;
  51.   mpz_init (a);
  52.   mpz_init (bz);
  53.   for (i = 0; i < numberof (data); i++)
  54.     {
  55.       mpz_set_str_or_abort (a, data[i].a, 0);
  56.       mpz_set_str_or_abort (bz, data[i].b, 0);
  57.       if (mpz_fits_slong_p (bz))
  58. {
  59.   b = mpz_get_si (bz);
  60.   got = mpz_cmp_si (a, b);
  61.   if (SGN (got) != data[i].want)
  62.     {
  63.       printf ("mpz_cmp_si wrong on data[%d]n", i);
  64.       printf ("  a="); mpz_out_str (stdout, 10, a); printf ("n");
  65.       printf ("  b=%ldn", b);
  66.       printf ("  got=%dn", got);
  67.       printf ("  want=%dn", data[i].want);
  68.       abort();
  69.     }
  70. }
  71.     }
  72.   mpz_clear (a);
  73.   mpz_clear (bz);
  74. }
  75. int
  76. main (void)
  77. {
  78.   tests_start ();
  79.   check_data ();
  80.   tests_end ();
  81.   exit (0);
  82. }