We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9310628 commit 669a9edCopy full SHA for 669a9ed
src/factorization.jl
@@ -56,7 +56,7 @@ function increment!(f::Factorization{T}, e::Int, p::Integer) where T
56
end
57
f
58
59
-increment!(f::AbstractDict, e::Int, p::Integer) = (h[p] = get(h, p, 0) + 1)
+increment!(f::AbstractDict, e::Int, p::Integer) = (f[p] = get(f, p, 0) + e)
60
61
Base.length(f::Factorization) = length(f.pe)
62
0 commit comments