Matt Fishman
Matt Fishman
Note that when I run the tests locally using Julia 1.7, there are other tests that fail, so it looks like the package needs some other updates for Julia 1.7.
Related to https://github.com/JuliaGraphs/NetworkLayout.jl/issues/41.
Also works fine with Julia 1.6: ```julia julia> versioninfo() Julia Version 1.6.2 Commit 1b93d53fc4 (2021-07-14 15:36 UTC) Platform Info: OS: Linux (x86_64-pc-linux-gnu) CPU: Intel(R) Xeon(R) E-2176M CPU @ 2.70GHz WORD_SIZE:...
It looks like the error in Julia 1.7 is caused by stricter checks in the `SparseMatrixCSC` constructor introduced in this PR: https://github.com/JuliaLang/julia/pull/40523 However, my guess is that it is more...
Adding a line like: ```julia if !(T
I also see: ```julia julia> x = 3 3 julia> f1(x) = sum(Int[x^2 for i in 1:2]) f1 (generic function with 1 method) julia> f1'(x) ERROR: Mutating arrays is not...
Thanks for looking into it! Interesting to see that adding any operation to that line circumvents the bug.
I was interested in this as well. My use case is making a Julia tutorial where I want to display some exercises and hide the solutions at first. Following the...
Hi Mingru, Sorry for the slow response. Have you seen that this change makes a difference in calculations you are doing (not doubting that it is the correct thing to...
Hi Mingru, We can't make `.position` preserve the link indices, since it performs a gauge transformation that can change the structure of the QNs. Can't you still perform the measurement...