Skip to content

Commit b2ae67e

Browse files
authored
Merge pull request #723 from JuliaRobotics/21Q1/maint/general
general maintenance
2 parents ffcd9ca + 3781bf5 commit b2ae67e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "DistributedFactorGraphs"
22
uuid = "b5cc3c7e-6572-11e9-2517-99fb8daf2f04"
3-
version = "0.11.2"
3+
version = "0.11.3"
44

55
[deps]
66
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

src/LightDFG/services/LightDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ function savedot_attributes(io::IO, dfg::LightDFG)
336336
write(io, "$vl [color=red, shape=ellipse];\n")
337337
end
338338
for fl in listFactors(dfg)
339-
write(io, "$fl [color=blue, shape=box];\n")
339+
write(io, "$fl [color=blue, shape=box, fontsize=8, fixedsize=false, height=0.1, width=0.1];\n")
340340
end
341341

342342
for e in edges(dfg.g)

src/entities/DFGFactor.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Notes
3131
Designing (WIP)
3232
- T <: Union{FactorOperationalMemory, PackedInferenceType}
3333
- in IIF.CCW{T <: DFG.FunctorInferenceType}
34-
- in DFG.AbstractRelativeFactorMinimize <: FunctorInferenceType
35-
- in Main.SomeFactor <: AbstractRelativeFactorMinimize
34+
- in DFG.AbstractRelativeMinimize <: FunctorInferenceType
35+
- in Main.SomeFactor <: AbstractRelativeMinimize
3636
"""
3737
mutable struct GenericFunctionNodeData{T<:Union{PackedInferenceType, FunctorInferenceType, FactorOperationalMemory}}
3838
eliminated::Bool

test/iifCompareTests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ using Test
5656
# fg2 has been solved, so it should fail on the estimate dictionary
5757
@test !compareSimilarVariables(fg, fg2, skipsamples=true, skip=Symbol[:initialized;:inferdim])
5858

59-
tree = resetBuildTree!(fg2)
59+
tree = buildTreeReset!(fg2)
6060

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

test/testBlocks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ struct TestFunctorInferenceType1 <: AbstractRelative end
2424
struct TestFunctorInferenceType2 <: AbstractRelative end
2525

2626
struct TestAbstractPrior <: AbstractPrior end
27-
struct TestAbstractRelativeFactor <: AbstractRelativeFactor end
28-
struct TestAbstractRelativeFactorMinimize <: AbstractRelativeFactorMinimize end
27+
struct TestAbstractRelativeFactor <: AbstractRelativeRoots end
28+
struct TestAbstractRelativeFactorMinimize <: AbstractRelativeMinimize end
2929

3030
struct PackedTestFunctorInferenceType1 <: PackedInferenceType
3131
s::String

0 commit comments

Comments
 (0)