Skip to content

Commit

Permalink
Merge pull request #319 from SciML/genericlu
Browse files Browse the repository at this point in the history
remove generic_lufact check
  • Loading branch information
ChrisRackauckas authored Jun 2, 2023
2 parents 6dd0f9d + 92b55f8 commit 208cbc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factorization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ end

function do_factorization(alg::GenericLUFactorization, A, b, u)
A = convert(AbstractMatrix, A)
fact = LinearAlgebra.generic_lufact!(A, alg.pivot)
fact = LinearAlgebra.generic_lufact!(A, alg.pivot, check = false)
return fact
end

Expand Down

0 comments on commit 208cbc6

Please sign in to comment.