Skip to content

Commit

Permalink
test VCABM
Browse files Browse the repository at this point in the history
  • Loading branch information
prbzrg committed Mar 2, 2024
1 parent dad37ca commit f2e9410
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/defaults.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
const sol_kwargs_defaults = (
high = (
alg = Tsit5(; thread = OrdinaryDiffEq.True()),
alg = VCABM(),
sensealg = QuadratureAdjoint(; autodiff = true, autojacvec = ZygoteVJP()),
reltol = eps(one(Float32)),
abstol = eps(one(Float32)) * eps(one(Float32)),
maxiters = typemax(Int32),
),
medium = (
save_everystep = false,
alg = Tsit5(; thread = OrdinaryDiffEq.True()),
alg = VCABM(),
sensealg = InterpolatingAdjoint(;
autodiff = true,
autojacvec = ZygoteVJP(),
Expand All @@ -20,14 +20,14 @@ const sol_kwargs_defaults = (
),
medium_noad = (
save_everystep = false,
alg = Tsit5(; thread = OrdinaryDiffEq.True()),
alg = VCABM(),
reltol = sqrt(eps(one(Float32))),
abstol = eps(one(Float32)),
maxiters = typemax(Int32),
),
low = (
save_everystep = false,
alg = Tsit5(; thread = OrdinaryDiffEq.True()),
alg = VCABM(),
sensealg = InterpolatingAdjoint(;
autodiff = true,
autojacvec = ZygoteVJP(),
Expand Down

0 comments on commit f2e9410

Please sign in to comment.