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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpf_cmp_si.
  2. Copyright 2000, 2001, 2004 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.     int         a_base;
  25.     const char  *a;
  26.     const char  *b;
  27.     int         want;
  28.   } data[] = {
  29.     { 10, "0",  "1", -1 },
  30.     { 10, "0",  "0",  0 },
  31.     { 10, "0", "-1",  1 },
  32.     { 10, "1",  "1", 0 },
  33.     { 10, "1",  "0", 1 },
  34.     { 10, "1", "-1", 1 },
  35.     { 10, "-1",  "1", -1 },
  36.     { 10, "-1",  "0", -1 },
  37.     { 10, "-1", "-1", 0 },
  38.     { 16,         "0", "-0x80000000",  1 },
  39.     { 16,  "80000000", "-0x80000000",  1 },
  40.     { 16,  "80000001", "-0x80000000",  1 },
  41.     { 16, "-80000000", "-0x80000000",  0 },
  42.     { 16, "-80000001", "-0x80000000", -1 },
  43.     { 16, "-FF0080000001", "-0x80000000", -1 },
  44.     { 16,                 "0", "-0x8000000000000000",  1 },
  45.     { 16,  "8000000000000000", "-0x8000000000000000",  1 },
  46.     { 16,  "8000000000000001", "-0x8000000000000000",  1 },
  47.     { 16, "-8000000000000000", "-0x8000000000000000",  0 },
  48.     { 16, "-8000000000000001", "-0x8000000000000000", -1 },
  49.     { 16, "-FF008000000000000001", "-0x8000000000000000", -1 },
  50.   };
  51.   mpf_t  a;
  52.   mpz_t  bz;
  53.   long   b;
  54.   int    got;
  55.   int    i;
  56.   mpf_init (a);
  57.   mpz_init (bz);
  58.   for (i = 0; i < numberof (data); i++)
  59.     {
  60.       mpf_set_str_or_abort (a, data[i].a, data[i].a_base);
  61.       mpz_set_str_or_abort (bz, data[i].b, 0);
  62.       if (mpz_fits_slong_p (bz))
  63.         {
  64.           b = mpz_get_si (bz);
  65.           got = mpf_cmp_si (a, b);
  66.           if (SGN (got) != data[i].want)
  67.             {
  68.               printf ("mpf_cmp_si wrong on data[%d]n", i);
  69.               printf ("  a="); mpf_out_str (stdout, 10, 0, a);
  70.               printf (" (%s)n", data[i].a);
  71.               printf ("  b=%ld (%s)n", b, data[i].b);
  72.               printf ("  got=%dn", got);
  73.               printf ("  want=%dn", data[i].want);
  74.               abort();
  75.             }
  76.         }
  77.     }
  78.   mpf_clear (a);
  79.   mpz_clear (bz);
  80. }
  81. int
  82. main (void)
  83. {
  84.   tests_start ();
  85.   check_data ();
  86.   tests_end ();
  87.   exit (0);
  88. }