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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_gcd_ui.
  2. Copyright 2003 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. /* Check mpz_gcd_ui doesn't try to return a value out of range.
  20.    This was wrong in gmp 4.1.2 with a long long limb.  */
  21. static void
  22. check_ui_range (void)
  23. {
  24.   unsigned long  got;
  25.   mpz_t  x;
  26.   int  i;
  27.   mpz_init_set_ui (x, ULONG_MAX);
  28.   for (i = 0; i < 20; i++)
  29.     {
  30.       mpz_mul_2exp (x, x, 1L);
  31.       got = mpz_gcd_ui (NULL, x, 0L);
  32.       if (got != 0)
  33.         {
  34.           printf ("mpz_gcd_ui (ULONG_MAX*2^%d, 0)n", i);
  35.           printf ("   return %#lxn", got);
  36.           printf ("   should be 0n");
  37.           abort ();
  38.         }
  39.     }
  40.   mpz_clear (x);
  41. }
  42. int
  43. main (void)
  44. {
  45.   tests_start ();
  46.   check_ui_range ();
  47.   tests_end ();
  48.   exit (0);
  49. }