Skip to content
New issue

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

Drop ProductRepr, towards JL1.10 #238

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ApproxManifoldProducts"
uuid = "9bbbb610-88a1-53cd-9763-118ce10c1f89"
keywords = ["MM-iSAMv2", "SLAM", "inference", "sum-product", "belief-propagation", "nonparametric", "manifolds", "functional"]
version = "0.7.1"
version = "0.8.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/entities/ManifoldKernelDensity.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


struct ManifoldKernelDensity{M <: MB.AbstractManifold, B <: BallTreeDensity, L, P}
struct ManifoldKernelDensity{M <: MB.AbstractManifold, B <: BallTreeDensity, L, P <: Union{<:AbstractVector, <:ArrayPartition}}
manifold::M
""" legacy expects matrix of coordinates (as columns) """
belief::B
Expand Down
2 changes: 1 addition & 1 deletion test/testPartialProductSE2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ len = length(pts1)

# define test manifold
M = SpecialEuclidean(2)
e0 = identity_element(M)
e0 = ArrayPartition([0.0;0.0], [1 0; 0 1.0]) # identity_element(M)

# p1 full SpecialEuclidean(2)
p1 = manikde!(M, pts1)
Expand Down
Loading