Skip to content

Commit

Permalink
Merge pull request #272 from j-fu/typo-Pr
Browse files Browse the repository at this point in the history
fix typo when setting Pr to default
  • Loading branch information
ChrisRackauckas authored Feb 6, 2023
2 parents c8e1358 + ff5a503 commit f218598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iterative_wrappers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function SciMLBase.solve(cache::LinearCache, alg::KrylovJL; kwargs...)

# use no-op preconditioner for Krylov.jl (LinearAlgebra.I) when M/N is identity
M = _isidentity_struct(M) ? I : M
N = _isidentity_struct(M) ? I : N
N = _isidentity_struct(N) ? I : N

atol = float(cache.abstol)
rtol = float(cache.reltol)
Expand Down

0 comments on commit f218598

Please sign in to comment.