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

◆ pow() [38/50]

const mpreal mpfr::pow ( const unsigned int a,
const int b,
mp_rnd_t rnd_mode = mpreal::get_default_rnd() )
inline

Definition at line 3075 of file mpreal.h.

3076{
3077 if(b>0) return pow(static_cast<unsigned long int>(a),static_cast<unsigned long int>(b),rnd_mode); //mpfr_ui_pow_ui
3078 else return pow(static_cast<unsigned long int>(a),mpreal(b),rnd_mode); //mpfr_ui_pow
3079}
const mpreal pow(const mpreal &a, const unsigned int b, mp_rnd_t rnd_mode=mpreal::get_default_rnd())
Definition mpreal.h:2962

References pow().