Skip to content

Commit

Permalink
Remove dropped kwargs from DynamicSS
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal authored Nov 27, 2023
1 parent d68db18 commit e56cde3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/steady_state.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Random.seed!(12345)
# with jac, without param_jac
f2 = ODEFunction(f!; jac = jac!)
prob2 = SteadyStateProblem(f2, u0, p)
sol2 = solve(prob2, DynamicSS(Rodas5(), reltol = 1e-14, abstol = 1e-14),
sol2 = solve(prob2, DynamicSS(Rodas5()),
reltol = 1e-14, abstol = 1e-14)
res2a = adjoint_sensitivities(sol2, DynamicSS(Rodas5()),
sensealg = SteadyStateAdjoint(), dgdu = dgdu!,
Expand Down Expand Up @@ -210,7 +210,7 @@ Random.seed!(12345)
[dx, dy]
end
proboop = SteadyStateProblem(foop, u0, p)
soloop = solve(proboop, DynamicSS(Rodas5(), reltol = 1e-14, abstol = 1e-14),
soloop = solve(proboop, DynamicSS(Rodas5()),
reltol = 1e-14, abstol = 1e-14)

res4a = adjoint_sensitivities(soloop, DynamicSS(Rodas5()),
Expand Down

0 comments on commit e56cde3

Please sign in to comment.