Skip to content

Commit 60b1131

Browse files
committed
Fix LAPACK import inconsistency in generic_lufact.jl
- Standardize LAPACK.chkfinite call to use LinearAlgebra.LAPACK.chkfinite for consistency - Fixes potential Julia deprecation warning from inconsistent module usage 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 4aae208 commit 60b1131

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
@@ -69,7 +69,7 @@ elseif VERSION < v"1.13"
6969
pivot::Union{RowMaximum, NoPivot, RowNonZero} = LinearAlgebra.lupivottype(T),
7070
ipiv = Vector{LinearAlgebra.BlasInt}(undef, min(size(A)...));
7171
check::Bool = true, allowsingular::Bool = false) where {T}
72-
check && LAPACK.chkfinite(A)
72+
check && LinearAlgebra.LAPACK.chkfinite(A)
7373
# Extract values
7474
m, n = size(A)
7575
minmn = min(m, n)

0 commit comments

Comments
 (0)