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

数学计算

开发平台:

Unix_Linux

  1. /* Test ULONG_PARITY.
  2. Copyright 2002 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 (int want, unsigned long n)
  21. {
  22.   int  got;
  23.   ULONG_PARITY (got, n);
  24.   if (got != want)
  25.     {
  26.       printf ("ULONG_PARITY wrongn");
  27.       printf ("  n    %lXn", n);
  28.       printf ("  want %dn", want);
  29.       printf ("  got  %dn", got);
  30.       abort ();
  31.     }
  32. }
  33. void
  34. check_various (void)
  35. {
  36.   int  i;
  37.   check_one (0, 0L);
  38.   check_one (BITS_PER_ULONG & 1, ULONG_MAX);
  39.   check_one (0, 0x11L);
  40.   check_one (1, 0x111L);
  41.   check_one (1, 0x3111L);
  42.   for (i = 0; i < BITS_PER_ULONG; i++)
  43.     check_one (1, 1L << i);
  44. }
  45. int
  46. main (int argc, char *argv[])
  47. {
  48.   tests_start ();
  49.   mp_trace_base = 16;
  50.   check_various ();
  51.   tests_end ();
  52.   exit (0);
  53. }