Skip to content

Commit

Permalink
fix overapproximate method
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Feb 2, 2024
1 parent 128724f commit a6c1e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ReachSets/TaylorModelReachSet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ end

# evaluate at a given time point and overapproximate the resulting set
function overapproximate(R::TaylorModelReachSet, T::Type{<:LazySet}, t::AbstractFloat; kwargs...)
return overapproximate(R, T, TimeInterval(t, t); kwargs...)
return overapproximate(R, T; Δt=TimeInterval(t, t), kwargs...)
end

# convert a hyperrectangular set to a taylor model reachset
Expand Down

0 comments on commit a6c1e33

Please sign in to comment.