Skip to content

Commit e266d54

Browse files
committed
getData -> solverData
1 parent 971e09e commit e266d54

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
@@ -506,7 +506,7 @@ isFactor(dfg::G, sym::Symbol) where G <: AbstractDFG = hasFactor(dfg, sym)
506506
Return reference to the user factor in `<:AbstractDFG` identified by `::Symbol`.
507507
"""
508508
getFactorFunction(fcd::GenericFunctionNodeData) = fcd.fnc.usrfnc!
509-
getFactorFunction(fc::DFGFactor) = getFactorFunction(getData(fc))
509+
getFactorFunction(fc::DFGFactor) = getFactorFunction(solverData(fc))
510510
function getFactorFunction(dfg::G, fsym::Symbol) where G <: AbstractDFG
511511
getFactorFunction(getFactor(dfg, fsym))
512512
end

0 commit comments

Comments
 (0)