Skip to content

Commit aa738b0

Browse files
GearsADAffie
authored andcommitted
getData -> solverData
1 parent 257ebc8 commit aa738b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CloudGraphsDFG/services/CloudGraphsDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function getFactor(dfg::CloudGraphsDFG, factorId::Int64)::DFGFactor
258258
factor = dfg.rebuildFactorMetadata!(dfg, factor)
259259
# GUARANTEED never to bite us in the future...
260260
# ... TODO: refactor if changed: https://github.com/JuliaRobotics/IncrementalInference.jl/issues/350
261-
getData(factor).fncargvID = _variableOrderSymbols
261+
solverData(factor).fncargvID = _variableOrderSymbols
262262

263263
# Add to cache
264264
push!(dfg.factorCache, factor.label=>factor)

src/services/AbstractDFG.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ isFactor(dfg::G, sym::Symbol) where G <: AbstractDFG = hasFactor(dfg, sym)
547547
Return reference to the user factor in `<:AbstractDFG` identified by `::Symbol`.
548548
"""
549549
getFactorFunction(fcd::GenericFunctionNodeData) = fcd.fnc.usrfnc!
550-
getFactorFunction(fc::DFGFactor) = getFactorFunction(getData(fc))
550+
getFactorFunction(fc::DFGFactor) = getFactorFunction(solverData(fc))
551551
function getFactorFunction(dfg::G, fsym::Symbol) where G <: AbstractDFG
552552
getFactorFunction(getFactor(dfg, fsym))
553553
end

0 commit comments

Comments
 (0)