Skip to content

Commit

Permalink
Fix isindomain
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Jun 22, 2018
1 parent 4e6a883 commit 437f228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codim2/diffeq.jl
Expand Up @@ -96,7 +96,7 @@ end
function isindomain(u, cache::DiffEqCodim2BifurcationCache)
t = SVector(u[end-1], u[end])
tmin, tmax = cache.prob.t_domain
return all(@. tmin <= t <= tmax)
return all(tmin .<= t .<= tmax)
end

residual!(H, u, cache::DiffEqCodim2BifurcationCache) =
Expand Down

0 comments on commit 437f228

Please sign in to comment.