Skip to content

Commit 584adab

Browse files
Fix UMFPACK no symbolic factorization branch
Needs tests
1 parent 1e8f185 commit 584adab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function SciMLBase.solve(cache::LinearCache, alg::UMFPACKFactorization; kwargs..
292292
# Caches the symbolic factorization: https://github.com/JuliaLang/julia/pull/33738
293293
fact = lu!(cache.cacheval, A)
294294
else
295-
fact = do_factorization(alg, A, cache.b, cache.u)
295+
fact = lu!(A)
296296
end
297297
cache = set_cacheval(cache, fact)
298298
end

0 commit comments

Comments
 (0)