You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an error in utilities.cpp in line 63:
instead of
result = exp(-pow(tmp,2) / (2.0paramparam));
it should be
result = exp(-tmp / (2.0paramparam));
The text was updated successfully, but these errors were encountered:
Hi, thanks a lot for your nice implementation!
I found an error in utilities.cpp in line 63:
instead of
result = exp(-pow(tmp,2) / (2.0paramparam));
it should be
result = exp(-tmp / (2.0paramparam));
The text was updated successfully, but these errors were encountered: