1 | /* double mpf_get_d (mpf_t src) -- Return the double approximation to SRC. |
---|
2 | |
---|
3 | Copyright 1996, 2001, 2002 Free Software Foundation, Inc. |
---|
4 | |
---|
5 | This file is part of the GNU MP Library. |
---|
6 | |
---|
7 | The GNU MP Library is free software; you can redistribute it and/or modify |
---|
8 | it under the terms of the GNU Lesser General Public License as published by |
---|
9 | the Free Software Foundation; either version 2.1 of the License, or (at your |
---|
10 | option) any later version. |
---|
11 | |
---|
12 | The GNU MP Library is distributed in the hope that it will be useful, but |
---|
13 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
14 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public |
---|
15 | License for more details. |
---|
16 | |
---|
17 | You should have received a copy of the GNU Lesser General Public License |
---|
18 | along with the GNU MP Library; see the file COPYING.LIB. If not, write to |
---|
19 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, |
---|
20 | MA 02111-1307, USA. */ |
---|
21 | |
---|
22 | #include "gmp.h" |
---|
23 | #include "gmp-impl.h" |
---|
24 | |
---|
25 | double |
---|
26 | mpf_get_d (mpf_srcptr src) |
---|
27 | { |
---|
28 | double res; |
---|
29 | mp_size_t size, i, n_limbs_to_use; |
---|
30 | int negative; |
---|
31 | mp_ptr qp; |
---|
32 | |
---|
33 | size = SIZ(src); |
---|
34 | if (size == 0) |
---|
35 | return 0.0; |
---|
36 | |
---|
37 | negative = size < 0; |
---|
38 | size = ABS (size); |
---|
39 | qp = PTR(src); |
---|
40 | |
---|
41 | res = qp[size - 1]; |
---|
42 | n_limbs_to_use = MIN (LIMBS_PER_DOUBLE, size); |
---|
43 | for (i = 2; i <= n_limbs_to_use; i++) |
---|
44 | res = res * MP_BASE_AS_DOUBLE + qp[size - i]; |
---|
45 | |
---|
46 | res = __gmp_scale2 (res, (EXP(src) - n_limbs_to_use) * GMP_NUMB_BITS); |
---|
47 | |
---|
48 | return negative ? -res : res; |
---|
49 | } |
---|