Skip to content

Commit ad562ef

Browse files
committed
tight abstol
1 parent 94a4edd commit ad562ef

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/usage.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ icnf = ICNF(;
5454
save_everystep = false,
5555
maxiters = typemax(Int),
5656
reltol = 1.0e-4,
57-
abstol = 1.0e-4,
57+
abstol = 1.0e-8,
5858
alg = VCABM(; thread = Threaded()),
5959
sensealg = GaussAdjoint(;
6060
checkpointing = true,

src/core/icnf.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function ICNF(;
8585
save_everystep = false,
8686
maxiters = typemax(Int),
8787
reltol = convert(data_type, 1.0e-4),
88-
abstol = convert(data_type, 1.0e-4),
88+
abstol = convert(data_type, 1.0e-8),
8989
alg = OrdinaryDiffEqAdamsBashforthMoulton.VCABM(;
9090
thread = FastBroadcast.Threaded(),
9191
),

0 commit comments

Comments
 (0)