Skip to content

Commit 7e8c2fc

Browse files
fix kwarg definition
1 parent d51e5d0 commit 7e8c2fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generic_lufact.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# From LinearAlgebra.lu.jl
22
# Modified to be non-allocating
33
function generic_lufact!(A::AbstractMatrix{T}, pivot::Union{RowMaximum,NoPivot,RowNonZero} = lupivottype(T);
4-
check::Bool = true, ipiv = Vector{BlasInt}(undef, min(size(A)))) where {T}
4+
check::Bool = true, ipiv = Vector{BlasInt}(undef, min(size(A)...))) where {T}
55
check && LinearAlgebra.LAPACK.chkfinite(A)
66
# Extract values
77
m, n = size(A)

0 commit comments

Comments
 (0)