Use full E constant again

This commit is contained in:
Guilhem Lavaux 2015-02-26 10:39:45 +01:00
parent 9629b24487
commit c8ac088c74

View File

@ -90,7 +90,7 @@ static double powC(double q, double alpha_c)
static double T_tilde_0(double q, double alpha_c, double beta_c)
{
static const double c_E = 2.718282; //M_E;
static const double c_E = M_E;
double a = log(c_E + 1.8 * beta_c * q);
return a / ( a + powC(q, alpha_c) * q * q);
}