Skip to content

Commit 9d3c27b

Browse files
format
1 parent 61e6d74 commit 9d3c27b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/factorization.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ function _ldiv!(x::Vector, A::Factorization, b::Vector)
66
end
77

88
# Specialize QR for the non-square case
9-
function _ldiv!(x::Vector, A::Union{SparseArrays.QR, LinearAlgebra.QRCompactWY, SuiteSparse.SPQR.QRSparse}, b::Vector)
9+
function _ldiv!(x::Vector,
10+
A::Union{SparseArrays.QR, LinearAlgebra.QRCompactWY,
11+
SuiteSparse.SPQR.QRSparse}, b::Vector)
1012
ldiv!(x, A, b)
1113
end
1214

0 commit comments

Comments
 (0)