Skip to content

Commit 23c46b9

Browse files
committed
dev testing insKinematic, issues with vscode
1 parent 8ef0459 commit 23c46b9

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

ext/IncrInfrDiffEqFactorExt.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ function _solveFactorODE!(measArr, prob, u0pts, Xtra...)
104104
end
105105

106106
# set the initial condition
107-
prob.u0[:] = u0pts[:]
107+
prob.u0 = u0pts
108+
108109
sol = DifferentialEquations.solve(prob)
109110

110111
# extract solution from solved ode

src/ExportAPI.jl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# the IncrementalInference API
22

3+
4+
# reexport
5+
export ℝ, AbstractManifold
6+
export Identity, hat , vee, ArrayPartition, exp!, exp, log!, log
7+
# common groups -- preferred defaults at this time.
8+
export TranslationGroup, RealCircleGroup
9+
# common non-groups -- TODO still teething problems to sort out in IIF v0.25-v0.26.
10+
export Euclidean, Circle
11+
312
# DFG SpecialDefinitions
413
export AbstractDFG,
514
getSolverParams,

src/IncrementalInference.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ using FiniteDifferences
1919

2020
using OrderedCollections: OrderedDict
2121

22-
export ℝ, AbstractManifold
23-
# export ProductRepr
24-
# common groups -- preferred defaults at this time.
25-
export TranslationGroup, RealCircleGroup
26-
# common non-groups -- TODO still teething problems to sort out in IIF v0.25-v0.26.
27-
export Euclidean, Circle
28-
2922
import Optim
3023

3124
using Dates,

0 commit comments

Comments
 (0)