Skip to content

Commit

Permalink
Merge pull request #1069 from JuliaRobotics/master
Browse files Browse the repository at this point in the history
release v0.23.7-rc1
  • Loading branch information
dehann authored Jan 23, 2024
2 parents cf5062f + cc9b34b commit 101cfb1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "DistributedFactorGraphs"
uuid = "b5cc3c7e-6572-11e9-2517-99fb8daf2f04"
version = "0.23.6"
version = "0.23.7"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
6 changes: 3 additions & 3 deletions docs/src/GraphData.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ Solved graphs contain packed parametric estimates for the variables, which are k

For each PPE structure, there are accessors for getting individual values:

- [`getMaxPPE`](@ref)
- [`getMeanPPE`](@ref)
- [`getSuggestedPPE`](@ref)
- [`getPPEMax`](@ref)
- [`getPPEMean`](@ref)
- [`getPPESuggested`](@ref)


Related functions for getting, adding/updating, and deleting PPE structures:
Expand Down
8 changes: 7 additions & 1 deletion src/services/DFGVariable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,12 @@ Return full dictionary of PPEs in a variable, recommended to rather use CRUD: [`
"""
getVariablePPEDict(vari::VariableDataLevel1) = getPPEDict(vari)

"""
getVariablePPE(::DFGVariable)
getVariablePPE(::VariableNodeData)
Get the Parametric Point Estimate of the given variable.
"""
getVariablePPE(args...) = getPPE(args...)

##------------------------------------------------------------------------------
Expand Down Expand Up @@ -956,7 +962,7 @@ Notes
- Defaults on keywords `solveKey` and `method`
Related
[`getMeanPPE`](@ref), [`getMaxPPE`](@ref), [`updatePPE!`](@ref), getKDEMean, getKDEFit, getPPEs, getVariablePPEs
[`getPPEMean`](@ref), [`getPPEMax`](@ref), [`updatePPE!`](@ref), `mean(BeliefType)`
"""
function getPPE(v::DFGVariable, ppekey::Symbol = :default)
!haskey(v.ppeDict, ppekey) &&
Expand Down

0 comments on commit 101cfb1

Please sign in to comment.