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 9cd552f commit c4d1f89Copy full SHA for c4d1f89
src/services/Serialization.jl
@@ -226,7 +226,7 @@ function packVariable(v::DFGVariable)
226
props["nstime"] = string(v.nstime.value)
227
props["tags"] = v.tags # JSON2.write(v.tags)
228
props["ppeDict"] = v.ppeDict # JSON2.write(v.ppeDict)
229
- props["solverDataDict"] = (Dict(keys(v.solverDataDict) .=> map(vnd -> packVariableNodeData(dfg, vnd), values(v.solverDataDict)))) # JSON2.write
+ props["solverDataDict"] = (Dict(keys(v.solverDataDict) .=> map(vnd -> packVariableNodeData(vnd), values(v.solverDataDict)))) # JSON2.write
230
props["smallData"] = v.smallData # JSON2.write(v.smallData)
231
props["solvable"] = v.solvable
232
props["variableType"] = typeModuleName(getVariableType(v))
0 commit comments