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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_odd_p and mpz_even_p.
  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. void
  20. check_data (void)
  21. {
  22.   static const struct {
  23.     const char  *n;
  24.     int          odd, even;
  25.   } data[] = {
  26.     {   "0", 0, 1 },
  27.     {   "1", 1, 0 },
  28.     {   "2", 0, 1 },
  29.     {   "3", 1, 0 },
  30.     {   "4", 0, 1 },
  31.     {  "-4", 0, 1 },
  32.     {  "-3", 1, 0 },
  33.     {  "-2", 0, 1 },
  34.     {  "-1", 1, 0 },
  35.     {  "0x1000000000000000000000000000000000000000000000000000", 0, 1 },
  36.     {  "0x1000000000000000000000000000000000000000000000000001", 1, 0 },
  37.     {  "0x1000000000000000000000000000000000000000000000000002", 0, 1 },
  38.     {  "0x1000000000000000000000000000000000000000000000000003", 1, 0 },
  39.     { "-0x1000000000000000000000000000000000000000000000000004", 0, 1 },
  40.     { "-0x1000000000000000000000000000000000000000000000000003", 1, 0 },
  41.     { "-0x1000000000000000000000000000000000000000000000000002", 0, 1 },
  42.     { "-0x1000000000000000000000000000000000000000000000000001", 1, 0 },
  43.   };
  44.   mpz_t  n;
  45.   int    i;
  46.   mpz_init (n);
  47.   for (i = 0; i < numberof (data); i++)
  48.     {
  49.       mpz_set_str_or_abort (n, data[i].n, 0);
  50.       if ((mpz_odd_p (n) != 0) != data[i].odd)
  51. {
  52.   printf ("mpz_odd_p wrong on data[%d]n", i);
  53.   abort();
  54. }
  55.       if ((mpz_even_p (n) != 0) != data[i].even)
  56. {
  57.   printf ("mpz_even_p wrong on data[%d]n", i);
  58.   abort();
  59. }
  60.     }
  61.   mpz_clear (n);
  62. }
  63. int
  64. main (void)
  65. {
  66.   tests_start ();
  67.   check_data ();
  68.   tests_end ();
  69.   exit (0);
  70. }