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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_sqrt(root, u) --  Set ROOT to floor(sqrt(U)).
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005 Free Software Foundation,
  3. 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 <stdio.h> /* for NULL */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. void
  19. mpz_sqrt (mpz_ptr root, mpz_srcptr op)
  20. {
  21.   mp_size_t op_size, root_size;
  22.   mp_ptr root_ptr, op_ptr;
  23.   mp_ptr free_me = NULL;
  24.   mp_size_t free_me_size;
  25.   TMP_DECL;
  26.   TMP_MARK;
  27.   op_size = op->_mp_size;
  28.   if (op_size <= 0)
  29.     {
  30.       if (op_size < 0)
  31.         SQRT_OF_NEGATIVE;
  32.       SIZ(root) = 0;
  33.       return;
  34.     }
  35.   /* The size of the root is accurate after this simple calculation.  */
  36.   root_size = (op_size + 1) / 2;
  37.   root_ptr = root->_mp_d;
  38.   op_ptr = op->_mp_d;
  39.   if (root->_mp_alloc < root_size)
  40.     {
  41.       if (root_ptr == op_ptr)
  42. {
  43.   free_me = root_ptr;
  44.   free_me_size = root->_mp_alloc;
  45. }
  46.       else
  47. (*__gmp_free_func) (root_ptr, root->_mp_alloc * BYTES_PER_MP_LIMB);
  48.       root->_mp_alloc = root_size;
  49.       root_ptr = (mp_ptr) (*__gmp_allocate_func) (root_size * BYTES_PER_MP_LIMB);
  50.       root->_mp_d = root_ptr;
  51.     }
  52.   else
  53.     {
  54.       /* Make OP not overlap with ROOT.  */
  55.       if (root_ptr == op_ptr)
  56. {
  57.   /* ROOT and OP are identical.  Allocate temporary space for OP.  */
  58.   op_ptr = TMP_ALLOC_LIMBS (op_size);
  59.   /* Copy to the temporary space.  Hack: Avoid temporary variable
  60.      by using ROOT_PTR.  */
  61.   MPN_COPY (op_ptr, root_ptr, op_size);
  62. }
  63.     }
  64.   mpn_sqrtrem (root_ptr, NULL, op_ptr, op_size);
  65.   root->_mp_size = root_size;
  66.   if (free_me != NULL)
  67.     (*__gmp_free_func) (free_me, free_me_size * BYTES_PER_MP_LIMB);
  68.   TMP_FREE;
  69. }