Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith authored May 20, 2024
1 parent 8c09f21 commit d296135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrator_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ function check_error(integrator::DEIntegrator)
return ReturnCode.Unstable

Check warning on line 634 in src/integrator_interface.jl

View check run for this annotation

Codecov / codecov/patch

src/integrator_interface.jl#L634

Added line #L634 was not covered by tests
end
end
bigtol = max(max(opts.reltol), max(opts.abstol))
bigtol = max(maximum(opts.reltol), maximum(opts.abstol))
if isdefined(integrator, :EEst) && integrator.EEst * bigtol < .1
if opts.unstable_check(integrator.dt, integrator.u, integrator.p,
integrator.t)
Expand Down

0 comments on commit d296135

Please sign in to comment.