We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using ReachabilityAnalysis, Plots Z = Zonotope([0.0, 0], [1.0; 2;;]) TM = overapproximate(Z, TaylorModelReachSet) Z2 = overapproximate(TM, Zonotope) julia> Z Zonotope{Float64, Vector{Float64}, Matrix{Float64}}([0.0, 0.0], [1.0; 2.0;;]) julia> Z2.X Zonotope{Float64, Vector{Float64}, Matrix{Float64}}([0.0, 0.0], [1.0 1.0; 2.0 2.0]) plot(Z2.X, ls=:dash, lc=:red) plot!(Z, lc=:blue, lw=2)
This is probably the cause of #623.
The text was updated successfully, but these errors were encountered:
The problem is that the conversion from zonotope to Taylor model assumes that the order is at least 1.
ReachabilityAnalysis.jl/src/ReachSets/TaylorModelReachSet.jl
Lines 500 to 505 in 12451d0
Sorry, something went wrong.
Merge pull request #655 from JuliaReach/schillic/654
df4af14
#654 - Fix zonotope->TM conversion for low order
schillic
Successfully merging a pull request may close this issue.
This is probably the cause of #623.
The text was updated successfully, but these errors were encountered: