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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpz_mul_ui and mpz_mul_si.
  2. Copyright 2001, 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. mpz_t got, want, x;
  20. void
  21. compare_si (long y)
  22. {
  23.   if (mpz_cmp (got, want) != 0)
  24.     {
  25.       printf    ("mpz_mul_si wrongn");
  26.       mpz_trace ("  x", x);
  27.       printf    ("  y=%ld (0x%lX)n", y, y);
  28.       mpz_trace ("  got ", got);
  29.       mpz_trace ("  want", want);
  30.       abort ();
  31.     }
  32. }
  33. void
  34. compare_ui (unsigned long y)
  35. {
  36.   if (mpz_cmp (got, want) != 0)
  37.     {
  38.       printf    ("mpz_mul_ui wrongn");
  39.       mpz_trace ("  x", x);
  40.       printf    ("  y=%lu (0x%lX)n", y, y);
  41.       mpz_trace ("  got ", got);
  42.       mpz_trace ("  want", want);
  43.       abort ();
  44.     }
  45. }
  46. void
  47. check_samples (void)
  48. {
  49.   {
  50.     long  y;
  51.     mpz_set_ui (x, 1L);
  52.     y = 0;
  53.     mpz_mul_si (got, x, y);
  54.     mpz_set_si (want, y);
  55.     compare_si (y);
  56.     mpz_set_ui (x, 1L);
  57.     y = 1;
  58.     mpz_mul_si (got, x, y);
  59.     mpz_set_si (want, y);
  60.     compare_si (y);
  61.     mpz_set_ui (x, 1L);
  62.     y = -1;
  63.     mpz_mul_si (got, x, y);
  64.     mpz_set_si (want, y);
  65.     compare_si (y);
  66.     mpz_set_ui (x, 1L);
  67.     y = LONG_MIN;
  68.     mpz_mul_si (got, x, y);
  69.     mpz_set_si (want, y);
  70.     compare_si (y);
  71.     mpz_set_ui (x, 1L);
  72.     y = LONG_MAX;
  73.     mpz_mul_si (got, x, y);
  74.     mpz_set_si (want, y);
  75.     compare_si (y);
  76.   }
  77.   {
  78.     unsigned long y;
  79.     mpz_set_ui (x, 1L);
  80.     y = 0;
  81.     mpz_mul_ui (got, x, y);
  82.     mpz_set_ui (want, y);
  83.     compare_ui (y);
  84.     mpz_set_ui (x, 1L);
  85.     y = 1;
  86.     mpz_mul_ui (got, x, y);
  87.     mpz_set_ui (want, y);
  88.     compare_ui (y);
  89.     mpz_set_ui (x, 1L);
  90.     y = ULONG_MAX;
  91.     mpz_mul_ui (got, x, y);
  92.     mpz_set_ui (want, y);
  93.     compare_ui (y);
  94.   }
  95. }
  96. int
  97. main (int argc, char **argv)
  98. {
  99.   tests_start ();
  100.   mpz_init (x);
  101.   mpz_init (got);
  102.   mpz_init (want);
  103.   check_samples ();
  104.   mpz_clear (x);
  105.   mpz_clear (got);
  106.   mpz_clear (want);
  107.   tests_end ();
  108.   exit (0);
  109. }