Skip to content

Commit

Permalink
fix tests, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Oct 6, 2023
1 parent 604d0f7 commit c7da305
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Manifolds"
uuid = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e"
authors = ["Seth Axen <[email protected]>", "Mateusz Baran <[email protected]>", "Ronny Bergmann <[email protected]>", "Antoine Levitt <[email protected]>"]
version = "0.8.79"
version = "0.8.80"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down
10 changes: 6 additions & 4 deletions test/groups/special_euclidean.jl
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,11 @@ Random.seed!(10)
log(SE3, pts[1], pts[2])
vee(SE3, pts[1], Xs[2])
# @btime shows 0 but `@allocations` is inaccurate
@test (@allocations exp(SE3, pts[1], Xs[1])) <= 4
@test (@allocations compose(SE3, pts[1], pts[2])) <= 4
@test (@allocations log(SE3, pts[1], pts[2])) <= 12
@test (@allocations vee(SE3, pts[1], Xs[2])) <= 13
if VERSION >= v"1.9-DEV"
@test (@allocations exp(SE3, pts[1], Xs[1])) <= 4
@test (@allocations compose(SE3, pts[1], pts[2])) <= 4
@test (@allocations log(SE3, pts[1], pts[2])) <= 12
@test (@allocations vee(SE3, pts[1], Xs[2])) <= 13
end
end
end

0 comments on commit c7da305

Please sign in to comment.