summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2017-09-13 13:59:20 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2017-09-13 13:59:20 +0000
commita530ebc2df8bcbf1e3397092d06525a141511329 (patch)
treefc1c1fbc5cd010d2dc73e498cbf9d3010a05fc4e /TODO
parente3f9fb9f689f7556bfcfa90a78ccd5c4f797a360 (diff)
downloadmpfr-a530ebc2df8bcbf1e3397092d06525a141511329.tar.gz
New mpfr_rootn_ui function; mpfr_root deprecated.
* src/root.c: mpfr_rootn_ui is now the main code, and mpfr_root calls mpfr_rootn_ui. * src/mpfr.h: added mpfr_rootn_ui prototype; marked mpfr_root as deprecated. * Added tests/trootn_ui.c (includes troot.c). * tests/troot.c: made it usable (via #include) by the new trootn_ui.c test. * tests/Makefile.am: added trootn_ui; at the same time, corrected the order of the test programs (lexicographic, with exceptions). * NEWS, TODO, doc/mpfr.texi: update. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@11741 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'TODO')
-rw-r--r--TODO5
1 files changed, 2 insertions, 3 deletions
diff --git a/TODO b/TODO
index d2ce854ee..066282a60 100644
--- a/TODO
+++ b/TODO
@@ -155,9 +155,8 @@ Table of contents:
C binding draft TS 18661-4:
http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1946.pdf
Some propositions about rootn: mpfr_rootn_si, mpfr_rootn_sj, mpfr_rootn_z,
- and perhaps versions with an unsigned integer: mpfr_rootn_ui (in which
- case mpfr_root could be declared as deprecated) and mpfr_rootn_uj.
- Warning! rootn(-0,positive even) is +0, not -0 like in mpfr_root.
+ and versions with an unsigned integer: mpfr_rootn_ui (now implemented, as
+ similar to mpfr_root) and mpfr_rootn_uj.
- functions defined in the LIA-2 standard
+ minimum and maximum (5.2.2): max, min, max_seq, min_seq, mmax_seq
and mmin_seq (mpfr_min and mpfr_max correspond to mmin and mmax);