Skip to content
Snippets Groups Projects
Commit 44784f2b authored by Frank Gaede's avatar Frank Gaede
Browse files

replace exp10(a) with pow(10,a)

parent d92e3a5e
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,8 @@ static double eval_cosh (double a) { return std::cosh(a); } ...@@ -29,7 +29,8 @@ static double eval_cosh (double a) { return std::cosh(a); }
static double eval_tanh (double a) { return std::tanh(a); } static double eval_tanh (double a) { return std::tanh(a); }
static double eval_exp (double a) { return std::exp(a); } static double eval_exp (double a) { return std::exp(a); }
static double eval_exp2 (double a) { return std::exp2(a); } static double eval_exp2 (double a) { return std::exp2(a); }
static double eval_exp10(double a) { return ::exp10(a); } //static double eval_exp10(double a) { return ::exp10(a); }
static double eval_exp10(double a) { return ::pow(10.,a) ; }
static double eval_expm1(double a) { return std::expm1(a); } static double eval_expm1(double a) { return std::expm1(a); }
static double eval_log (double a) { return std::log(a); } static double eval_log (double a) { return std::log(a); }
static double eval_logb (double a) { return std::logb(a); } static double eval_logb (double a) { return std::logb(a); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment