-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install Problem #88
Comments
Hello, Organicwrq Currently, SIMPLE-NN supports only the Linux operation systems. Best regards, |
@Phorbol, it seems that you are running the code in windows, which does not "sincos" function. // sincos(M_PI*frac, &sin, &cos);
// f = 0.5 * (1 + cos);
// df = -0.5 * M_PI * sin / cutd;
sin_val = sin(M_PI*frac);
cos_val = cos(M_pi*frac);
f = 0.5 * (1 + cos_val);
df = -0.5 * M_PI * sin_val / cutd; |
I can't install it by setup.py because of simple_nn\features\symmetry_function\symmetry_functions.h(76): error C3861: “sincos”: Could not find the identifier.I want know what is 'sincos' and how to slove the problem.Thank you.
And this is the relevant part of symmetry_functions.h.
The text was updated successfully, but these errors were encountered: