Skip to content

Commit

Permalink
Hotfix printing
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jul 16, 2023
1 parent 2e449cb commit e622fa4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LinearSolve"
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
authors = ["SciML"]
version = "2.4.0"
version = "2.4.1"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
2 changes: 0 additions & 2 deletions src/default.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ end
function defaultalg(A::AbstractSparseMatrixCSC{<:Union{Float64, ComplexF64}, Ti}, b,
assump::OperatorAssumptions) where {Ti}
if assump.issq
@show length(b) <= 10_000
@show length(nonzeros(A)) / length(A)
if length(b) <= 10_000 && length(nonzeros(A)) / length(A) < 2e-4
DefaultLinearSolver(DefaultAlgorithmChoice.KLUFactorization)
else
Expand Down

0 comments on commit e622fa4

Please sign in to comment.