summaryrefslogtreecommitdiff
path: root/src/atan.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-06-26 15:09:15 +0000
committerzimmerma <zimmerma@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2012-06-26 15:09:15 +0000
commit27e679c97fe25163ca1a21e5443916636b8ea729 (patch)
treec4fcff99f54c25d657345723c2a5a85a2fc2bdde /src/atan.c
parentfcc0f3529b397cddd67eda85c751085e79dc3922 (diff)
downloadmpc-27e679c97fe25163ca1a21e5443916636b8ea729.tar.gz
[tatan.c] added one test to improve the code coverage, which produces an
infinite loop in mpc_atan... [atan.c] added a check to detect potential infinite loops git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1167 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'src/atan.c')
-rw-r--r--src/atan.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/atan.c b/src/atan.c
index fb0f067..3177a45 100644
--- a/src/atan.c
+++ b/src/atan.c
@@ -1,6 +1,6 @@
/* mpc_atan -- arctangent of a complex number.
-Copyright (C) 2009, 2010, 2011 INRIA
+Copyright (C) 2009, 2010, 2011, 2012 INRIA
This file is part of GNU MPC.
@@ -18,6 +18,7 @@ You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see http://www.gnu.org/licenses/ .
*/
+#include <stdio.h>
#include "mpc-impl.h"
/* set rop to
@@ -195,6 +196,7 @@ mpc_atan (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd)
mpfr_t minus_op_re;
mpfr_exp_t op_re_exp, op_im_exp;
mpfr_rnd_t rnd1, rnd2;
+ int loops = 0;
mpfr_inits2 (MPFR_PREC_MIN, a, b, x, y, (mpfr_ptr) 0);
@@ -230,6 +232,8 @@ mpc_atan (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd)
do
{
+ MPC_ASSERT (++loops < 100);
+
p += mpc_ceil_log2 (p) + 2;
mpfr_set_prec (a, p);
mpfr_set_prec (b, p);