File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ timestamp(v::DFGVariable) = v.timestamp
65
65
tags (v:: DFGVariable ) = v. tags
66
66
estimates (v:: DFGVariable ) = v. estimateDict
67
67
estimate (v:: DFGVariable , key:: Symbol ) = 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 ) = haskey (v. solverDataDict, key) ? v. solverDataDict[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
70
solverDataDict (v:: DFGVariable ) = v. solverDataDict
71
71
id (v:: DFGVariable ) = v. _internalId
72
72
# Todo: Complete this.
You can’t perform that action at this time.
0 commit comments