Blame mpc-0.9/src/fr_div.c

Packit Service 2e9770
/* mpc_fr_div -- Divide a floating-point number by a complex number.
Packit Service 2e9770
Packit Service 2e9770
Copyright (C) INRIA, 2008, 2009
Packit Service 2e9770
Packit Service 2e9770
This file is part of the MPC Library.
Packit Service 2e9770
Packit Service 2e9770
The MPC Library is free software; you can redistribute it and/or modify
Packit Service 2e9770
it under the terms of the GNU Lesser General Public License as published by
Packit Service 2e9770
the Free Software Foundation; either version 2.1 of the License, or (at your
Packit Service 2e9770
option) any later version.
Packit Service 2e9770
Packit Service 2e9770
The MPC Library is distributed in the hope that it will be useful, but
Packit Service 2e9770
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit Service 2e9770
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
Packit Service 2e9770
License for more details.
Packit Service 2e9770
Packit Service 2e9770
You should have received a copy of the GNU Lesser General Public License
Packit Service 2e9770
along with the MPC Library; see the file COPYING.LIB.  If not, write to
Packit Service 2e9770
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
Packit Service 2e9770
MA 02111-1307, USA. */
Packit Service 2e9770
Packit Service 2e9770
#include "mpc-impl.h"
Packit Service 2e9770
Packit Service 2e9770
int
Packit Service 2e9770
mpc_fr_div (mpc_ptr a, mpfr_srcptr b, mpc_srcptr c, mpc_rnd_t rnd)
Packit Service 2e9770
{
Packit Service 2e9770
   mpc_t bc;
Packit Service 2e9770
   int inexact;
Packit Service 2e9770
Packit Service 2e9770
   MPC_RE (bc)[0] = b [0];
Packit Service 2e9770
   mpfr_init (MPC_IM (bc));
Packit Service 2e9770
   /* we consider the operand b to have imaginary part +0 */
Packit Service 2e9770
   mpfr_set_ui (MPC_IM (bc), 0, GMP_RNDN);
Packit Service 2e9770
Packit Service 2e9770
   inexact = mpc_div (a, bc, c, rnd);
Packit Service 2e9770
Packit Service 2e9770
   mpfr_clear (MPC_IM (bc));
Packit Service 2e9770
Packit Service 2e9770
   return inexact;
Packit Service 2e9770
}