From 02e02495169515f0650973f6bb8cff30fc73219e Mon Sep 17 00:00:00 2001 From: zimmerma Date: Fri, 19 Sep 2003 13:41:10 +0000 Subject: 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 --- mpfr.texi | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mpfr.texi') diff --git a/mpfr.texi b/mpfr.texi index 70081c63e..6e713d655 100644 --- a/mpfr.texi +++ b/mpfr.texi @@ -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 -- cgit v1.2.1