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 0a79499 commit 1dcc191Copy full SHA for 1dcc191
src/entities/DFGVariable.jl
@@ -64,7 +64,7 @@ label(v::DFGVariable) = v.label
64
timestamp(v::DFGVariable) = v.timestamp
65
tags(v::DFGVariable) = v.tags
66
estimates(v::DFGVariable) = v.estimateDict
67
-estimate(v::DFGVariable, key::Symbol) = haskey(v.estimateDict, key) ? v.estimateDict[key] : nothing
+estimate(v::DFGVariable, key::Symbol=:default) = haskey(v.estimateDict, key) ? v.estimateDict[key] : nothing
68
#solverData(v::DFGVariable) = haskey(v.solverDataDict, :default) ? v.solverDataDict[:default] : nothing
69
solverData(v::DFGVariable, key::Symbol=:default) = haskey(v.solverDataDict, key) ? v.solverDataDict[key] : nothing
70
solverDataDict(v::DFGVariable) = v.solverDataDict
0 commit comments