Skip to content

Commit 9ac88d1

Browse files
committed
compat, avoid show bw bug, comment
1 parent 0dd52e2 commit 9ac88d1

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ OrderedCollections = "1.4"
6262
Pkg = "1.4, 1.5"
6363
ProgressMeter = "1"
6464
Random = "1.11"
65-
RecursiveArrayTools = "2, 3"
65+
RecursiveArrayTools = "3"
6666
SHA = "0.7, 1"
6767
SparseArrays = "1.11"
6868
StaticArrays = "1"

src/entities/HomotopyDensity.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ provided by AMP for features like pdf evaluation.
7474
- When building a partial belief, use full points with necessary information in the specified partial coords.
7575
- Replaces ManellicTree, ManifoldKernelDensity, KernelDensityEstimate, GaussianMixtureModel, PCA, Mixtures
7676
- a.k.a. model order reduction given a topology selection
77+
78+
DevNotes:
79+
- Missing field? When joint tree belief message over Bayes/junction tree separator, we still need to name the dimensions, (x1,x3, l5, ...)
7780
"""
7881
@kwdef struct HomotopyDensityDFG{T <: StateType, P}
7982
"""reprkind allows for apples vs apples comparison between density representations. This allows for easy dispatch

src/services/print.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ function printVariable(
5858
println(ioc, " initialized: ", isInitialized(vert, :default))
5959
println(ioc, " marginalized: ", isMarginalized(vert, :default))
6060
println(ioc, " size bel. samples: ", size(vnd.belief.points))
61-
bws = refBandwidths(vnd)
62-
if !isempty(bws)
63-
print(ioc, " kde bandwidths: ")
64-
println(ioc, round.(first(bws); digits = 4))
65-
end
61+
# bws = refBandwidths(vnd)
62+
# if !isempty(bws)
63+
# print(ioc, " kde bandwidths: ")
64+
# println(ioc, round.(first(bws); digits = 4))
65+
# end
6666
printstyled(ioc, " VNDs: "; bold = true)
6767
println(ioc, solk[smsk], 4 < lsolk ? "..." : "")
6868
end

0 commit comments

Comments
 (0)