Skip to content

Commit

Permalink
Merge pull request #723 from JuliaRobotics/21Q1/maint/general
Browse files Browse the repository at this point in the history
general maintenance
  • Loading branch information
dehann authored Jan 7, 2021
2 parents ffcd9ca + 3781bf5 commit b2ae67e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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.11.2"
version = "0.11.3"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/LightDFG/services/LightDFG.jl
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function savedot_attributes(io::IO, dfg::LightDFG)
write(io, "$vl [color=red, shape=ellipse];\n")
end
for fl in listFactors(dfg)
write(io, "$fl [color=blue, shape=box];\n")
write(io, "$fl [color=blue, shape=box, fontsize=8, fixedsize=false, height=0.1, width=0.1];\n")
end

for e in edges(dfg.g)
Expand Down
4 changes: 2 additions & 2 deletions src/entities/DFGFactor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Notes
Designing (WIP)
- T <: Union{FactorOperationalMemory, PackedInferenceType}
- in IIF.CCW{T <: DFG.FunctorInferenceType}
- in DFG.AbstractRelativeFactorMinimize <: FunctorInferenceType
- in Main.SomeFactor <: AbstractRelativeFactorMinimize
- in DFG.AbstractRelativeMinimize <: FunctorInferenceType
- in Main.SomeFactor <: AbstractRelativeMinimize
"""
mutable struct GenericFunctionNodeData{T<:Union{PackedInferenceType, FunctorInferenceType, FactorOperationalMemory}}
eliminated::Bool
Expand Down
2 changes: 1 addition & 1 deletion test/iifCompareTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ using Test
# fg2 has been solved, so it should fail on the estimate dictionary
@test !compareSimilarVariables(fg, fg2, skipsamples=true, skip=Symbol[:initialized;:inferdim])

tree = resetBuildTree!(fg2)
tree = buildTreeReset!(fg2)

@test compareSimilarFactors(fg, fg2, skipsamples=true, skipcompute=true)

Expand Down
4 changes: 2 additions & 2 deletions test/testBlocks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ struct TestFunctorInferenceType1 <: AbstractRelative end
struct TestFunctorInferenceType2 <: AbstractRelative end

struct TestAbstractPrior <: AbstractPrior end
struct TestAbstractRelativeFactor <: AbstractRelativeFactor end
struct TestAbstractRelativeFactorMinimize <: AbstractRelativeFactorMinimize end
struct TestAbstractRelativeFactor <: AbstractRelativeRoots end
struct TestAbstractRelativeFactorMinimize <: AbstractRelativeMinimize end

struct PackedTestFunctorInferenceType1 <: PackedInferenceType
s::String
Expand Down

0 comments on commit b2ae67e

Please sign in to comment.