diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-09-19 13:41:10 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-09-19 13:41:10 +0000 |
commit | 02e02495169515f0650973f6bb8cff30fc73219e (patch) | |
tree | f49bcc2ac30b1e2280e398f9c50df8868e67a5e7 /mpfr.texi | |
parent | 4a38d89574eb99cc8ed625ae37cc343bc1cc1148 (diff) | |
download | mpfr-02e02495169515f0650973f6bb8cff30fc73219e.tar.gz |
mpfr_round_prec is now obsolete
new function mpfr_prec_round replaces it
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2419 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr.texi')
-rw-r--r-- | mpfr.texi | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -600,7 +600,7 @@ Sets the default rounding mode to @var{rnd}. The default rounding mode is to nearest initially. @end deftypefun -@deftypefun int mpfr_round_prec (mpfr_t @var{x}, mp_rnd_t @var{rnd}, mp_prec_t @var{prec}) +@deftypefun int mpfr_prec_round (mpfr_t @var{x}, mp_prec_t @var{prec}, mp_rnd_t @var{rnd}) Rounds @var{x} according to @var{rnd} with precision @var{prec}, which may be different from that of @var{x}. If @var{prec} is greater or equal to the precision of @var{x}, then new @@ -613,6 +613,10 @@ The precision @var{prec} can be any integer between @code{MPFR_PREC_MIN} and @code{MPFR_PREC_MAX}. @end deftypefun +@deftypefun int mpfr_round_prec (mpfr_t @var{x}, mp_rnd_t @var{rnd}, mp_prec_t @var{prec}) +[This function is obsolete. Please use @code{mpfr_prec_round} instead.] +@end deftypefun + @deftypefun {char *} mpfr_print_rnd_mode (mp_rnd_t @var{rnd}) Returns the input string (GMP_RNDD, GMP_RNDU, GMP_RNDN, GMP_RNDZ) corresponding to the rounding mode @var{rnd} or a null pointer if |