Skip to content

Commit

Permalink
Merge pull request #609 from JuliaReach/schillic/fix
Browse files Browse the repository at this point in the history
Fix overapproximate(::TMRS, ::Zonotope, ::AbstractFloat)
  • Loading branch information
schillic authored Mar 5, 2022
2 parents 624d22f + 75dab78 commit ddd9b9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ReachabilityAnalysis"
uuid = "1e97bd63-91d1-579d-8e8d-501d2b57c93f"
version = "0.16.4"
version = "0.16.5"

[deps]
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
Expand Down
2 changes: 1 addition & 1 deletion src/ReachSets/TaylorModelReachSet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ function overapproximate(R::TaylorModelReachSet{N}, ::Type{<:Zonotope}, t::Abstr

X = set(R)
tn = t - tstart(R) # normalize time (to TM-internal time)
tn = tn domain(R) # intersection handles round-off errors
tn = interval(tn) domain(R) # intersection handles round-off errors
X_Δt = evaluate(X, tn)
n = dim(R)
= [TaylorModelN(X_Δt[j], zeroI, zeroBox(n), symBox(n)) for j in 1:n]
Expand Down

2 comments on commit ddd9b9f

@schillic
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/56029

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.16.5 -m "<description of version>" ddd9b9fb039865604d45d43a177baed1cf33b242
git push origin v0.16.5

Please sign in to comment.