Skip to content

Commit e622fa4

Browse files
Hotfix printing
1 parent 2e449cb commit e622fa4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LinearSolve"
22
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
33
authors = ["SciML"]
4-
version = "2.4.0"
4+
version = "2.4.1"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/default.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ end
7979
function defaultalg(A::AbstractSparseMatrixCSC{<:Union{Float64, ComplexF64}, Ti}, b,
8080
assump::OperatorAssumptions) where {Ti}
8181
if assump.issq
82-
@show length(b) <= 10_000
83-
@show length(nonzeros(A)) / length(A)
8482
if length(b) <= 10_000 && length(nonzeros(A)) / length(A) < 2e-4
8583
DefaultLinearSolver(DefaultAlgorithmChoice.KLUFactorization)
8684
else

0 commit comments

Comments
 (0)