JuliaReach / ReachabilityAnalysis.jl

Computing reachable states of dynamical systems in Julia
https://juliareach.github.io/ReachabilityAnalysis.jl/
MIT License
192 stars 16 forks source link

Cache box and zonotope oa in TMJets #173

Open mforets opened 4 years ago

mforets commented 4 years ago

i'm thinking about computing the zonotopic oa by default, and add a plot recipe for taylor model flowpipes that uses it.


this can be done by returning a tuple,

function _is_intersection_empty(X::AbstractReachSet, Y::LazySet, ::ZonotopeEnclosure)
    Z = overapproximate(X, Zonotope)
    return (Z, _is_intersection_empty(set(Z), Y))
end