Skip to content

Commit 652008c

Browse files
Patch OrdinaryDiffEqDifferentiation for verbosity form change
This should just be short term until #2916 gets rid of the the interface break here.
1 parent 3d5432d commit 652008c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/OrdinaryDiffEqDifferentiation/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "OrdinaryDiffEqDifferentiation"
22
uuid = "4302a76b-040a-498a-8c04-15b101fed76b"
33
authors = ["Chris Rackauckas <[email protected]>", "Yingbo Ma <[email protected]>"]
4-
version = "1.17.0"
4+
version = "1.17.1"
55

66
[deps]
77
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"

lib/OrdinaryDiffEqDifferentiation/src/derivative_utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -866,10 +866,10 @@ build_uf(alg, nf, t, p, ::Val{false}) = UDerivativeWrapper(nf, t, p)
866866
function LinearSolve.init_cacheval(
867867
alg::LinearSolve.DefaultLinearSolver, A::WOperator, b, u,
868868
Pl, Pr,
869-
maxiters::Int, abstol, reltol, verbose::Bool,
869+
maxiters::Int, abstol, reltol, verbose::Union{LinearVerbosity,Bool},
870870
assumptions::OperatorAssumptions)
871871
LinearSolve.init_cacheval(alg, A.J, b, u, Pl, Pr,
872-
maxiters::Int, abstol, reltol, verbose::Bool,
872+
maxiters::Int, abstol, reltol, verbose::Union{LinearVerbosity,Bool},
873873
assumptions::OperatorAssumptions)
874874
end
875875

0 commit comments

Comments
 (0)