Skip to content

Commit e876890

Browse files
authored
Merge pull request #758 from JuliaRobotics/master
v0.14.1-rc1
2 parents 054ea14 + 174473e commit e876890

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-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.14.0"
3+
version = "0.14.1"
44

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
Click on badges to follow links:
44

5-
Release v0.12 | Release v0.13 | Dev | Coverage | Documentation |
5+
Release v0.13 | Release v0.14 | Dev | Coverage | Documentation |
66
---------|---------|-----|------------|------------|
7-
[![Build Status][dfg-build-v0.12]][dfg-build-url] | [![Build Status][dfg-build-v0.13]][dfg-build-url] | [![Build Status][dfg-build-img]][dfg-build-url] <br> [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/JuliaRobotics/DistributedFactorGraphs.jl.svg)](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [![codecov.io][dfg-cov-img]][dfg-cov-url] <br> [![Percentage of issues still open](https://isitmaintained.com/badge/open/JuliaRobotics/DistributedFactorGraphs.jl.svg)](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [![docs](https://img.shields.io/badge/DFGDocs-latest-blue.svg)](http://juliarobotics.github.io/DistributedFactorGraphs.jl/latest/) <br> [![docs](https://img.shields.io/badge/CaesarDocs-latest-blue.svg)](http://juliarobotics.github.io/Caesar.jl/latest/)
7+
[![Build Status][dfg-build-v0.13]][dfg-build-url] | [![Build Status][dfg-build-v0.14]][dfg-build-url] | [![Build Status][dfg-build-img]][dfg-build-url] <br> [![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/JuliaRobotics/DistributedFactorGraphs.jl.svg)](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [![codecov.io][dfg-cov-img]][dfg-cov-url] <br> [![Percentage of issues still open](https://isitmaintained.com/badge/open/JuliaRobotics/DistributedFactorGraphs.jl.svg)](https://github.com/JuliaRobotics/DistributedFactorGraphs.jl/issues) | [![docs](https://img.shields.io/badge/DFGDocs-latest-blue.svg)](http://juliarobotics.github.io/DistributedFactorGraphs.jl/latest/) <br> [![docs](https://img.shields.io/badge/CaesarDocs-latest-blue.svg)](http://juliarobotics.github.io/Caesar.jl/latest/)
88

99

1010
[dfg-build-v0.13]: https://travis-ci.org/JuliaRobotics/DistributedFactorGraphs.jl.svg?branch=release/v0.13
11-
[dfg-build-v0.12]: https://travis-ci.org/JuliaRobotics/DistributedFactorGraphs.jl.svg?branch=release/v0.12
11+
[dfg-build-v0.14]: https://travis-ci.org/JuliaRobotics/DistributedFactorGraphs.jl.svg?branch=release/v0.14
1212

1313
[dfg-cov-img]: https://codecov.io/github/JuliaRobotics/DistributedFactorGraphs.jl/coverage.svg?branch=master
1414
[dfg-cov-url]: https://codecov.io/github/JuliaRobotics/DistributedFactorGraphs.jl?branch=master

src/services/CustomPrinting.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ function printVariable( io::IO, vert::DFGVariable;
2626
println(ioc, " initilized: ", isInitialized(vert))
2727
println(ioc, " tags: ", getTags(vert))
2828
try
29-
println(ioc, " manifold: ", getManifolds(vert))
29+
print(ioc, " manifold: ")
30+
show(ioc, getManifold(vert))
31+
println(ioc, "")
3032
catch e
3133
end
3234
solk = listSolveKeys(vert) |> collect

src/services/DFGVariable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function getDimension end
7272
$SIGNATURES
7373
Interface function to return the `<:ManifoldsBase.Manifold` object of `variableType<:InferenceVariable`, extend this function for all `Types<:InferenceVariable`.
7474
"""
75-
function getManifold end
75+
getManifold(vari::DFGVariable) = getVariableType(vari) |> getManifold
7676

7777
# """
7878
# $SIGNATURES

test/testBlocks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ function DFGFactorSCA()
358358
@test typeof(getFactorFunction(f1)) == TestFunctorInferenceType1
359359

360360

361-
#TODO here for now, don't reccomend usage.
361+
#TODO here for now, don't recommend usage.
362362
testTags = [:tag1, :tag2]
363363
@test setTags!(f1, testTags) == Set(testTags)
364364
@test setTags!(f1, Set(testTags)) == Set(testTags)

0 commit comments

Comments
 (0)