Skip to content

Commit 92b55f8

Browse files
remove generic_lufact check
1 parent 6dd0f9d commit 92b55f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ end
8383

8484
function do_factorization(alg::GenericLUFactorization, A, b, u)
8585
A = convert(AbstractMatrix, A)
86-
fact = LinearAlgebra.generic_lufact!(A, alg.pivot)
86+
fact = LinearAlgebra.generic_lufact!(A, alg.pivot, check = false)
8787
return fact
8888
end
8989

0 commit comments

Comments
 (0)