Skip to content

Commit 710fc37

Browse files
committed
Update Sparspak to 0.3.6
1 parent 37d2b1d commit 710fc37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Reexport = "1"
4646
SciMLBase = "1.68"
4747
Setfield = "0.7, 0.8, 1"
4848
SnoopPrecompile = "1"
49-
Sparspak = "0.3.4"
49+
Sparspak = "0.3.6"
5050
UnPack = "1"
5151
julia = "1.6"
5252

src/LinearSolve.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ SnoopPrecompile.@precompile_all_calls begin
8585
A = sprand(4, 4, 0.3) + I
8686
b = rand(4)
8787
prob = LinearProblem(A, b)
88-
sol = solve(prob)
89-
#sol = solve(prob, SparspakFactorization())
88+
sol = solve(prob) # in case sparspak is used as default
89+
sol = solve(prob, SparspakFactorization())
9090
end
9191

9292
export LUFactorization, SVDFactorization, QRFactorization, GenericFactorization,

0 commit comments

Comments
 (0)