Macaulay2 Engine
Loading...
Searching...
No Matches

◆ operator*=() [1/11]

mpreal & mpfr::mpreal::operator*= ( const double v)
inline

Definition at line 1392 of file mpreal.h.

1393{
1394#if (MPFR_VERSION >= MPFR_VERSION_NUM(2,4,0))
1395 mpfr_mul_d(mpfr_ptr(),mpfr_srcptr(),v,mpreal::get_default_rnd());
1396#else
1397 *this *= mpreal(v);
1398#endif
1400 return *this;
1401}
::mpfr_srcptr mpfr_srcptr() const
Definition mpreal.h:1767
::mpfr_ptr mpfr_ptr()
Definition mpreal.h:1765
#define MPREAL_MSVC_DEBUGVIEW_CODE
Definition mpreal.h:146

References get_default_rnd(), mpfr_ptr(), mpfr_srcptr(), mpreal(), MPREAL_MSVC_DEBUGVIEW_CODE, and operator*=().