Skip to content

Commit

Permalink
fix v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 11, 2018
1 parent 9893713 commit 08e66c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
@@ -1,4 +1,4 @@
julia 0.7.0-beta2
julia 0.7.0
BinaryProvider
DiffEqBase 4.6.0
Reexport
Expand Down
2 changes: 1 addition & 1 deletion src/common_interface/callbacks.jl
Expand Up @@ -131,7 +131,7 @@ function find_callback_time(integrator,callback)
out = callback.condition(tmp,integrator.tprev+Θ*dt,integrator)
out
end
Θ = prevfloat(find_zero(zero_func,(bottom_θ,top_Θ),FalsePosition(),abstol = callback.abstol/10))
Θ = prevfloat(find_zero(zero_func,(bottom_θ,top_Θ),FalsePosition(),atol = callback.abstol/10))
#Θ = prevfloat(...)
# prevfloat guerentees that the new time is either 1 floating point
# numbers just before the event or directly at zero, but not after.
Expand Down

0 comments on commit 08e66c5

Please sign in to comment.