diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-03-02 08:07:31 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2014-03-02 08:07:31 +0000 |
commit | edaa2951fcf845975d1c3ef7a58b905579ef1941 (patch) | |
tree | c0e2318f45b6a62dec50c66f3b153c297b61ec36 /src | |
parent | 551f199ec0901c40fae7a8b94d641b1e8b304fe9 (diff) | |
download | mpfr-edaa2951fcf845975d1c3ef7a58b905579ef1941.tar.gz |
[src/lngamma.c] Temporarily disabled fast argument reconstruction
because it doesn't compile with g++.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8995 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/lngamma.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lngamma.c b/src/lngamma.c index 231b2d69a..87931e44f 100644 --- a/src/lngamma.c +++ b/src/lngamma.c @@ -542,7 +542,8 @@ GAMMA_FUNC (mpfr_ptr y, mpfr_srcptr z0, mpfr_rnd_t rnd) l = 1; /* replace #if 1 by #if 0 for the naive argument reconstruction */ -#if 1 +/* FIXME: the code below currently fails to compile with g++ */ +#if 0 /* We multiply by (z0+1)*(z0+2)*...*(z0+k-1) by blocks of j consecutive terms where j ~ sqrt(k). |