We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e1fbc commit 1f2adf8Copy full SHA for 1f2adf8
test/testBlocks.jl
@@ -795,7 +795,8 @@ function VSDTestBlock!(fg, v1)
795
@test mergeVariableState!(fg, :a, vnd) == 1
796
797
# Bulk copy update x0
798
- @test DFG.mergeVariableStates!(fg, Vector{Pair{Symbol, VariableState}}([:a=>vnd])) == 1
+ @test DFG.mergeVariableStates!(fg, [:a=>vnd]) == 1
799
+ @test DFG.mergeVariableStates!(fg, :a, [vnd]) == 1
800
altVnd = vnd |> deepcopy
801
keepVnd = getVariableState(getVariable(fg, :a), :parametric) |> deepcopy
802
altVnd.infoPerCoord .= [-99.0;]
0 commit comments