-
Notifications
You must be signed in to change notification settings - Fork 1
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
Surprising behavior of deletecolumn!
and show
#48
Comments
Hi thanks for the report, Can you send me your example please? The order is indeed not correct. |
Ah, sorry, I just c&p the example from the github page:
|
Thanks for the report. That was a bug in show. I release a new version when the fix is merged into master. You can find a brief description of the project here: https://atoptima.github.io/Coluna.jl/stable/dynamic_sparse_arrays/ |
Cool, that was quick :) |
Hi & thanks for your package,
I was just trying out the example, and was a bit surprised that the final matrix
show
sIt appears that either
deletecolumn!
needs to delete the corresponding element ofcol_keys
, or thetmp
counter inshow
does not work correctly?Slightly related: It was a bit confusing to me that
show
seems to exchange the order of indices. I.e.,matrix[4,1] = 1
added an entry[1, 4] = 1
…Lastly an easy fix, there's an
s
too much afterthrow
:DynamicSparseArrays.jl/src/pcsr.jl
Line 207 in ef66de4
The text was updated successfully, but these errors were encountered: