Skip to content

Commit

Permalink
Disable error throwing in RFLU
Browse files Browse the repository at this point in the history
All are supposed to be run with check=false
  • Loading branch information
ChrisRackauckas committed Jan 7, 2024
1 parent f4bbc08 commit dfa74a2
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 dfa74a2

Please sign in to comment.