Skip to content

Commit 208cbc6

Browse files
Merge pull request #319 from SciML/genericlu
remove generic_lufact check
2 parents 6dd0f9d + 92b55f8 commit 208cbc6

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)