Skip to content

Commit 1bd4b06

Browse files
authored
add whitespace
1 parent b124738 commit 1bd4b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lu.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ end
107107
#lu!(F::LU,A) should be dispatched on the type of matrix stored in the LU factorization.
108108

109109
function lu!(F::LU{<:Any,<:StridedMatrix{<:BlasFloat}}, A; check::Bool = true, allowsingular::Bool = false)
110-
copyto!(F.factors,A)
110+
copyto!(F.factors, A)
111111
lpt = LAPACK.getrf!(F.factors, F.ipiv; check)
112112
check && _check_lu_success(lpt[3], allowsingular)
113113
return LU{T,typeof(lpt[1]),typeof(lpt[2])}(lpt[1], lpt[2], lpt[3])
114114
end
115115

116116
function lu!(F::LU{<:Any,<:AbstractMatrix}, A; check::Bool = true, allowsingular::Bool = false)
117-
copyto!(F.factors,A)
117+
copyto!(F.factors, A)
118118
generic_lufact!(F.factors, lupivottype(eltype(A)), F.ipiv; check, allowsingular)
119119
return F
120120
end

0 commit comments

Comments
 (0)