We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The python extension will produce a segfault if it is imported after numpy.
numpy
import numpy as np import wfes mu = 1e-8 wf = wfes.solve(50, -0.1, mu, mu, 0.0) # SEGFAULT OF DOOM
However, the reverse import order is okay:
import numpy as np import wfes # ... works
The text was updated successfully, but these errors were encountered:
Also, this only applies to linux - python 3.5.1 from conda 4.0.8 (compiled with GCC 4.4.7).
linux
Sorry, something went wrong.
No branches or pull requests
The python extension will produce a segfault if it is imported after
numpy
.However, the reverse import order is okay:
The text was updated successfully, but these errors were encountered: