Skip to content

Commit 0124125

Browse files
committed
Removing prefixes
1 parent 0aad730 commit 0124125

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/CompareUtils.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ function compareAllVariables(fgA::G1,
219219

220220
# compare each variable is the same in both A and B
221221
for var in vars
222-
TP = TP && compareVariable(DFG.getVariable(fgA, var), DFG.getVariable(fgB, var), skipsamples=skipsamples, skip=skip)
222+
TP = TP && compareVariable(getVariable(fgA, var), getVariable(fgB, var), skipsamples=skipsamples, skip=skip)
223223
end
224224

225225
# return comparison result
@@ -254,7 +254,7 @@ function compareSimilarVariables(fgA::G1,
254254
# compare the common set
255255
for var in xlAB
256256
@info var
257-
TP &= compareVariable(DFG.getVariable(fgA, var), DFG.getVariable(fgB, var), skipsamples=skipsamples, skip=skip)
257+
TP &= compareVariable(getVariable(fgA, var), getVariable(fgB, var), skipsamples=skipsamples, skip=skip)
258258
end
259259

260260
# return comparison result
@@ -285,7 +285,7 @@ function compareSimilarFactors(fgA::G1,
285285

286286
# compare the common set
287287
for var in xlAB
288-
TP = TP && compareFactor(DFG.getFactor(fgA, var), getFactor(fgB, var), skipsamples=skipsamples, skipcompute=skipcompute, show=show)
288+
TP = TP && compareFactor(getFactor(fgA, var), getFactor(fgB, var), skipsamples=skipsamples, skipcompute=skipcompute, show=show)
289289
end
290290

291291
# return comparison result

0 commit comments

Comments
 (0)