Skip to content

Commit 6d8988b

Browse files
authored
Update factorization.jl
1 parent 3a38e26 commit 6d8988b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/factorization.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ end
267267

268268
Base.@kwdef struct UMFPACKFactorization <: AbstractFactorization
269269
reuse_symbolic::Bool = true
270-
check::Bool = true # Check factorization re-use
270+
check_pattern::Bool = true # Check factorization re-use
271271
end
272272

273273
function init_cacheval(alg::UMFPACKFactorization, A, b, u, Pl, Pr, maxiters::Int, abstol,
@@ -310,7 +310,7 @@ end
310310

311311
Base.@kwdef struct KLUFactorization <: AbstractFactorization
312312
reuse_symbolic::Bool = true
313-
check::Bool = true
313+
check_pattern::Bool = true
314314
end
315315

316316
function init_cacheval(alg::KLUFactorization, A, b, u, Pl, Pr, maxiters::Int, abstol,

0 commit comments

Comments
 (0)