File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
name = " DistributedFactorGraphs"
2
2
uuid = " b5cc3c7e-6572-11e9-2517-99fb8daf2f04"
3
- version = " 0.14.0 "
3
+ version = " 0.14.1 "
4
4
5
5
[deps ]
6
6
Base64 = " 2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Original file line number Diff line number Diff line change 2
2
3
3
Click on badges to follow links:
4
4
5
- Release v0.12 | Release v0.13 | Dev | Coverage | Documentation |
5
+ Release v0.13 | Release v0.14 | Dev | Coverage | Documentation |
6
6
---------|---------|-----|------------|------------|
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/ )
8
8
9
9
10
10
[ 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
12
12
13
13
[ dfg-cov-img ] : https://codecov.io/github/JuliaRobotics/DistributedFactorGraphs.jl/coverage.svg?branch=master
14
14
[ dfg-cov-url ] : https://codecov.io/github/JuliaRobotics/DistributedFactorGraphs.jl?branch=master
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ function printVariable( io::IO, vert::DFGVariable;
26
26
println (ioc, " initilized: " , isInitialized (vert))
27
27
println (ioc, " tags: " , getTags (vert))
28
28
try
29
- println (ioc, " manifold: " , getManifolds (vert))
29
+ print (ioc, " manifold: " )
30
+ show (ioc, getManifold (vert))
31
+ println (ioc, " " )
30
32
catch e
31
33
end
32
34
solk = listSolveKeys (vert) |> collect
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ function getDimension end
72
72
$SIGNATURES
73
73
Interface function to return the `<:ManifoldsBase.Manifold` object of `variableType<:InferenceVariable`, extend this function for all `Types<:InferenceVariable`.
74
74
"""
75
- function getManifold end
75
+ getManifold (vari :: DFGVariable ) = getVariableType (vari) |> getManifold
76
76
77
77
# """
78
78
# $SIGNATURES
Original file line number Diff line number Diff line change @@ -358,7 +358,7 @@ function DFGFactorSCA()
358
358
@test typeof (getFactorFunction (f1)) == TestFunctorInferenceType1
359
359
360
360
361
- # TODO here for now, don't reccomend usage.
361
+ # TODO here for now, don't recommend usage.
362
362
testTags = [:tag1 , :tag2 ]
363
363
@test setTags! (f1, testTags) == Set (testTags)
364
364
@test setTags! (f1, Set (testTags)) == Set (testTags)
You can’t perform that action at this time.
0 commit comments