Blame TODO

Packit 80c72f
From Andreas Enge 31 August 2011:
Packit 80c72f
implement mul_karatsuba with three multiplications at precision around p,
Packit 80c72f
instead of two at precision 2*p and one at precision p
Packit 80c72f
requires analysis of error propagation
Packit 80c72f
Packit 80c72f
From Andreas Enge 30 August 2011:
Packit 80c72f
As soon as dependent on mpfr>=3, remove auxiliary functions from
Packit 80c72f
get_version.c and update mpc.h.
Packit 80c72f
Use MPFR_RND? instead of GMP_RND?, and remove workarounds for MPFR_RNDA from
Packit 80c72f
mpc-impl.h.
Packit 80c72f
Packit 80c72f
From Andreas Enge 05 July 2012:
Packit 80c72f
Add support for rounding mode MPFR_RNDA.
Packit 80c72f
Packit 80c72f
From Andreas Enge and Paul Zimmermann 6 July 2012:
Packit 80c72f
Improve speed of Im (atan) for x+i*y with small y, for instance by using
Packit 80c72f
the Taylor series directly.
Packit 80c72f
Packit 80c72f
Bench:
Packit 80c72f
- from Andreas Enge 9 June 2009:
Packit 80c72f
  Scripts and web page comparing timings with different systems,
Packit 80c72f
  as done for mpfr at http://www.mpfr.org/mpfr-2.4.0/timings.html
Packit 80c72f
Packit 80c72f
New functions to implement:
Packit 80c72f
- from Joseph S. Myers <joseph at codesourcery dot com> 19 Mar 2012: mpc_erf,
Packit 80c72f
  mpc_erfc, mpc_exp2, mpc_expm1, mpc_log1p, mpc_log2, mpc_lgamma, mpc_tgamma
Packit 80c72f
  http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-March/001090.html
Packit 80c72f
- from Andreas Enge and Philippe Théveny 17 July 2008
Packit 80c72f
  agm (and complex logarithm with agm ?)
Packit 80c72f
- from Andreas Enge 25 June 2009:
Packit 80c72f
  correctly rounded roots of unity zeta_n^i
Packit 80c72f
- implement a root-finding algorithm using the Durand-Kerner method
Packit 80c72f
  (cf http://en.wikipedia.org/wiki/Durand%E2%80%93Kerner_method)
Packit 80c72f
  See also the CEVAL algorithm from Yap and Sagraloff:
Packit 80c72f
  http://www.mpi-inf.mpg.de/~msagralo/ceval.pdf
Packit 80c72f
Packit 80c72f
New tests to add:
Packit 80c72f
- from Andreas Enge and Philippe Théveny 9 April 2008
Packit 80c72f
  correct handling of Nan and infinities in the case of
Packit 80c72f
  intermediate overflows while the result may fit (we need special code)