Skip to content

Commit 5e1a35f

Browse files
typo
1 parent 4285acd commit 5e1a35f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.1.5"
4+
version = "2.1.6"
55

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

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ function SciMLBase.solve!(cache::LinearCache, alg::KLUFactorization; kwargs...)
809809
# If we have a cacheval already, run umfpack_symbolic to ensure the symbolic factorization exists
810810
# This won't recompute if it does.
811811
KLU.klu_analyze!(cacheval)
812-
copyto!(cache.cacheval.nzval, nonzeros(A))
812+
copyto!(cacheval.nzval, nonzeros(A))
813813
if cache.cacheval._numeric === C_NULL # We MUST have a numeric factorization for reuse, unlike UMFPACK.
814814
KLU.klu_factor!(cacheval)
815815
end

0 commit comments

Comments
 (0)