Skip to content

Commit

Permalink
Merge pull request #455 from SciML/rflu_chec
Browse files Browse the repository at this point in the history
Disable error throwing in RFLU
  • Loading branch information
ChrisRackauckas authored Jan 7, 2024
2 parents f4bbc08 + dfa74a2 commit 0fb0f93
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 @@ -957,7 +957,7 @@ function SciMLBase.solve!(cache::LinearCache, alg::RFLUFactorization{P, T};
if length(ipiv) != min(size(A)...)
ipiv = Vector{LinearAlgebra.BlasInt}(undef, min(size(A)...))
end
fact = RecursiveFactorization.lu!(A, ipiv, Val(P), Val(T))
fact = RecursiveFactorization.lu!(A, ipiv, Val(P), Val(T), check=false)
cache.cacheval = (fact, ipiv)
cache.isfresh = false
end
Expand Down

0 comments on commit 0fb0f93

Please sign in to comment.