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

数学计算

开发平台:

Unix_Linux

  1. /* Test mpf_integer_p.
  2. Copyright 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. one (mpf_srcptr f, int want)
  21. {
  22.   int  got;
  23.   got = mpf_integer_p (f);
  24.   if (got != want)
  25.     {
  26.       printf ("mpf_integer_p got %d want %dn", got, want);
  27.       mpf_trace (" f", f);
  28.       abort ();
  29.     }
  30. }
  31. void
  32. all (mpf_ptr f, int want)
  33. {
  34.   one (f, want);
  35.   mpf_neg (f, f);
  36.   one (f, want);
  37. }
  38. int
  39. main (void)
  40. {
  41.   mpf_t  f;
  42.   tests_start ();
  43.   mpf_init2 (f, 200L);
  44.   mpf_set_ui (f, 0L);
  45.   one (f, 1);
  46.   mpf_set_ui (f, 1L);
  47.   all (f, 1);
  48.   mpf_set_ui (f, 1L);
  49.   mpf_div_2exp (f, f, 1L);
  50.   all (f, 0);
  51.   mpf_set_ui (f, 1L);
  52.   mpf_div_2exp (f, f, 5000L);
  53.   all (f, 0);
  54.   mpf_set_ui (f, 1L);
  55.   mpf_mul_2exp (f, f, 5000L);
  56.   all (f, 1);
  57.   mpf_set_str (f, "0.5", 10);
  58.   all (f, 0);
  59.   mpf_set_ui (f, 1L);
  60.   mpf_div_ui (f, f, 3L);
  61.   all (f, 0);
  62.   mpf_clear (f);
  63.   tests_end ();
  64.   exit (0);
  65. }