summaryrefslogtreecommitdiff
path: root/BUGS
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-05-22 11:50:06 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-05-22 11:50:06 +0000
commitecefc3453f1d38f4f71b25ee36061e396be3f554 (patch)
tree0ae8e2152620cf6df9c571a918795838a1062b29 /BUGS
parent1524be6e95fdf4fb8d0995de59d4830899bd3fe6 (diff)
downloadmpfr-ecefc3453f1d38f4f71b25ee36061e396be3f554.tar.gz
Updated BUGS and TODO (mpfr_lgamma has been implemented, but see BUGS,
and gamma(-integer) with integer >= 1 is defined as NaN). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4460 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'BUGS')
-rw-r--r--BUGS11
1 files changed, 11 insertions, 0 deletions
diff --git a/BUGS b/BUGS
index 794d9dd16..5b34d2fb6 100644
--- a/BUGS
+++ b/BUGS
@@ -34,6 +34,17 @@ Known bugs:
bad practice and should be useless, but one never knows what other
software will do).
+* The implementation of mpfr_lgamma is incomplete (case x negative with
+ small exponent).
+
+* Incorrect behavior (possible infinite loop, e.g. in mpfr_exp2) in some
+ functions on tiny arguments, e.g. +/- 2^(emin-1), due to an integer
+ overflow in MPFR_FAST_COMPUTE_IF_SMALL_INPUT.
+
+* The mpfr_fma function behaves incorrectly if the multiplication overflows
+ or underflows. The overflow case has been fixed except in some corner
+ cases.
+
Potential bugs:
* Possible integer overflows on some machines.