-
Notifications
You must be signed in to change notification settings - Fork 67
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
segfault when creating empty DenseMatrix #315
Comments
I think that the constructor with just the rows and cols should be made private. I assume that you want a zero matrix right? There's a |
I think it's useful to be able to create an empty matrix also, like NumPy's |
You can create an empty matrix, but you can't print it. |
Adding a check to all function calls to check if it's empty can be done in the python wrapper. Doing it in C++ to each function might be too costly. |
Yes, we should not be doing it in C++. |
The constructor for the empty
It creates the vector and the RCPs, but they don't point to anything. We can assign to them in python with:
but we cannot print the entire matrix until all elements have been assigned. I assume RCP will default to |
The following python code segfaults in ipython using the latest version of symengine from PyPI.
Please let me know if I should have filed this issue to the python bindings instead.
The text was updated successfully, but these errors were encountered: