Skip to content

Commit

Permalink
Merge pull request #74
Browse files Browse the repository at this point in the history
Add `buffer` argument to `TSVD` for compatibility
  • Loading branch information
maltezfaria authored Sep 15, 2024
2 parents 4457912 + fb34008 commit b362458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compressor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Base.@kwdef struct TSVD
rtol::Float64 = atol > 0 || rank < typemax(Int) ? 0 : sqrt(eps(Float64))
end

function (tsvd::TSVD)(K, rowtree::ClusterTree, coltree::ClusterTree)
function (tsvd::TSVD)(K, rowtree::ClusterTree, coltree::ClusterTree, bufs = nothing)
irange = index_range(rowtree)
jrange = index_range(coltree)
return tsvd(K, irange, jrange)
Expand Down

0 comments on commit b362458

Please sign in to comment.