Skip to content

Commit

Permalink
fix PI -> M_PI
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Feb 17, 2012
1 parent 32bfe20 commit d7d10b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/mathematics/Math.cpp
Expand Up @@ -41,7 +41,7 @@ int32_t CMath::LOGRANGE = 0; // range for logtable: log(1+exp(x)) -2
const float64_t CMath::INFTY = -log(0.0); // infinity
const float64_t CMath::ALMOST_INFTY = +1e+20; //a large number
const float64_t CMath::ALMOST_NEG_INFTY = -1000;
const float64_t CMath::PI=PI;
const float64_t CMath::PI=M_PI;
const float64_t CMath::MACHINE_EPSILON=5E-16;
const float64_t CMath::MAX_REAL_NUMBER=1E300;
const float64_t CMath::MIN_REAL_NUMBER=1E-300;
Expand Down

0 comments on commit d7d10b9

Please sign in to comment.