Merge pull request #19 from gh2k/interference2-pow

Fix ambiguous call to 'pow' in 'Interface2' variation
This commit is contained in:
Matt Feemster 2015-07-02 08:18:54 -07:00
commit 957779639f

View File

@ -3089,7 +3089,7 @@ public:
"\n"
"real_t Interference2Tri(real_t a, real_t b, real_t c, real_t p, real_t x)\n"
"{\n"
" return a * 2 * pow(fabs(asin(cos(b * x + c - M_PI_2))) * M_1_PI, p);\n"
" return a * 2 * pow(fabs(asin(cos(b * x + c - (real_t)M_PI_2))) * (real_t)M_1_PI, p);\n"
"}\n"
"\n"
"real_t Interference2Squ(real_t a, real_t b, real_t c, real_t p, real_t x)\n"