minor change to avoid compiler error in visual studio.

This commit is contained in:
Davis King 2013-06-02 23:18:32 -04:00
parent 94cd335938
commit 0244fcca84

View File

@ -161,7 +161,7 @@ namespace
static double gg13(double x)
{
return sqrt(50)*pow(e,-50.0*pi*x*x);
return sqrt(50.0)*pow(e,-50.0*pi*x*x);
}
static double gg14(double x)