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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_mod -- The mathematical mod function.
  2. Copyright 1991, 1993, 1994, 1995, 1996, 2001, 2002, 2005 Free Software
  3. Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. void
  18. mpz_mod (mpz_ptr rem, mpz_srcptr dividend, mpz_srcptr divisor)
  19. {
  20.   mp_size_t divisor_size = divisor->_mp_size;
  21.   mpz_t temp_divisor; /* N.B.: lives until function returns! */
  22.   TMP_DECL;
  23.   TMP_MARK;
  24.   /* We need the original value of the divisor after the remainder has been
  25.      preliminary calculated.  We have to copy it to temporary space if it's
  26.      the same variable as REM.  */
  27.   if (rem == divisor)
  28.     {
  29.       MPZ_TMP_INIT (temp_divisor, ABS (divisor_size));
  30.       mpz_set (temp_divisor, divisor);
  31.       divisor = temp_divisor;
  32.     }
  33.   mpz_tdiv_r (rem, dividend, divisor);
  34.   if (rem->_mp_size != 0)
  35.     {
  36.       if (dividend->_mp_size < 0)
  37. {
  38.   if (divisor->_mp_size < 0)
  39.     mpz_sub (rem, rem, divisor);
  40.   else
  41.     mpz_add (rem, rem, divisor);
  42. }
  43.     }
  44.   TMP_FREE;
  45. }