-
Notifications
You must be signed in to change notification settings - Fork 58
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
Bug when comparing and affecting SparseMatrixCSC #34
Comments
Would you mind preparing a PR? The function for the second issue is |
I think this is (at least partially) fixed in master, see JuliaLang/julia#30580 |
Nice, and I see it's actually included in the v1.3 release candidate. |
Yes I can create a PR and I'll check with version 1.3 |
@abraunst @dkarrasch when I opened this ticket I only tested on Julia 1.0 and 1.2 and the setindex! was effectively fixed on the master. I've created a PR for the operator== |
I up this ticket since this bug is old and still present in Julia 1.6 and could be quickly fixed. There is confusion in sparse matrix between stored literal 0 and stored zero() so At this time I made a PR https://github.com/Lecrapouille/julia/commit/af7430fd45393cc3051b5dc53ca95dde635b7201 but now the function is in |
I did not program with Julia for a long time. I did not check back, but it seems to me the current the code is now correct by this commit #227 So I close this ticket. |
First bug
in
sparsematrix.jl
concerningplease replace all
valsX[jY]!=0
by!iszero
Indeed when redefiningzero()
the wrong zero is not correctly take into account.Here the fix:
Here some checks (only made on Julia 1.0.3):
Second bug
The
=
of Sparse is also impacted (but I could not locate the function).The text was updated successfully, but these errors were encountered: