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

数学计算

开发平台:

Unix_Linux

  1. /* Test itom.
  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 "mp.h"
  19. #include "tests.h"
  20. #define SGN(x)       ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)
  21. void
  22. check_data (void)
  23. {
  24.   static const struct {
  25.     short      m;
  26.     mp_size_t  want_size;
  27.     mp_limb_t  want_limb;
  28.   } data[] = {
  29.     {  0L,  0 },
  30.     {  1L,  1, 1 },
  31.     { -1L, -1, 1 },
  32.     {  SHRT_MAX,  1,  SHRT_MAX },
  33.     { -SHRT_MAX, -1,  SHRT_MAX },
  34.     {  SHRT_MIN, -1, -SHRT_MIN },
  35.   };
  36.   MINT  *m;
  37.   int   i;
  38.   for (i = 0; i < numberof (data); i++)
  39.     {
  40.       m = itom (data[i].m);
  41.       if (m->_mp_size != data[i].want_size
  42.   || (m->_mp_size != 0 && m->_mp_d[0] != data[i].want_limb))
  43. {
  44.   printf ("itom wrong on data[%d]n", i);
  45.   abort();
  46. }
  47.       mfree (m);
  48.     }
  49. }
  50. int
  51. main (void)
  52. {
  53.   tests_start ();
  54.   check_data ();
  55.   tests_end ();
  56.   exit (0);
  57. }