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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_set_f -- set an mpq from an mpf.
  2. Copyright 2000, 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 "gmp.h"
  15. #include "gmp-impl.h"
  16. #include "longlong.h"
  17. void
  18. mpq_set_f (mpq_ptr q, mpf_srcptr f)
  19. {
  20.   mp_size_t  fexp = EXP(f);
  21.   mp_ptr     fptr = PTR(f);
  22.   mp_size_t  fsize = SIZ(f);
  23.   mp_size_t  abs_fsize = ABS(fsize);
  24.   mp_limb_t  flow;
  25.   if (fsize == 0)
  26.     {
  27.       /* set q=0 */
  28.       q->_mp_num._mp_size = 0;
  29.       q->_mp_den._mp_size = 1;
  30.       q->_mp_den._mp_d[0] = 1;
  31.       return;
  32.     }
  33.   /* strip low zero limbs from f */
  34.   flow = *fptr;
  35.   MPN_STRIP_LOW_ZEROS_NOT_ZERO (fptr, abs_fsize, flow);
  36.   if (fexp >= abs_fsize)
  37.     {
  38.       /* radix point is to the right of the limbs, no denominator */
  39.       mp_ptr  num_ptr;
  40.       MPZ_REALLOC (mpq_numref (q), fexp);
  41.       num_ptr = q->_mp_num._mp_d;
  42.       MPN_ZERO (num_ptr, fexp - abs_fsize);
  43.       MPN_COPY (num_ptr + fexp - abs_fsize, fptr, abs_fsize);
  44.       q->_mp_num._mp_size = fsize >= 0 ? fexp : -fexp;
  45.       q->_mp_den._mp_size = 1;
  46.       q->_mp_den._mp_d[0] = 1;
  47.     }
  48.   else
  49.     {
  50.       /* radix point is within or to the left of the limbs, use denominator */
  51.       mp_ptr     num_ptr, den_ptr;
  52.       mp_size_t  den_size;
  53.       den_size = abs_fsize - fexp;
  54.       MPZ_REALLOC (mpq_numref (q), abs_fsize);
  55.       MPZ_REALLOC (mpq_denref (q), den_size+1);
  56.       num_ptr = q->_mp_num._mp_d;
  57.       den_ptr = q->_mp_den._mp_d;
  58.       if (flow & 1)
  59.         {
  60.           /* no powers of two to strip from numerator */
  61.           MPN_COPY (num_ptr, fptr, abs_fsize);
  62.           MPN_ZERO (den_ptr, den_size);
  63.           den_ptr[den_size] = 1;
  64.         }
  65.       else
  66.         {
  67.           /* right shift numerator, adjust denominator accordingly */
  68.           int  shift;
  69.           den_size--;
  70.           count_trailing_zeros (shift, flow);
  71.           mpn_rshift (num_ptr, fptr, abs_fsize, shift);
  72.           abs_fsize -= (num_ptr[abs_fsize-1] == 0);
  73.           MPN_ZERO (den_ptr, den_size);
  74.           den_ptr[den_size] = GMP_LIMB_HIGHBIT >> (shift-1);
  75.         }
  76.       q->_mp_num._mp_size = fsize >= 0 ? abs_fsize : -abs_fsize;
  77.       q->_mp_den._mp_size = den_size + 1;
  78.     }
  79. }