Skip to content

Commit d188cf4

Browse files
Update LinearSolveRecursiveFactorizationExt.jl
1 parent 28698fb commit d188cf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/LinearSolveRecursiveFactorizationExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function SciMLBase.solve!(cache::LinearSolve.LinearCache, alg::ButterflyFactoriz
130130

131131
workspace, F = cache.cacheval
132132
(;A, b, ws, U, V, out, tmp, n) = workspace
133-
b .= cache_b
133+
b[1:M] .= cache_b
134134
mul!(tmp, U', b)
135135
TriangularSolve.ldiv!(F, tmp, thread)
136136
mul!(b, V, tmp)

0 commit comments

Comments
 (0)