Skip to content

Commit 0a79499

Browse files
authored
hater
1 parent 6846880 commit 0a79499

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/entities/DFGVariable.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ timestamp(v::DFGVariable) = v.timestamp
6565
tags(v::DFGVariable) = v.tags
6666
estimates(v::DFGVariable) = v.estimateDict
6767
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
7070
solverDataDict(v::DFGVariable) = v.solverDataDict
7171
id(v::DFGVariable) = v._internalId
7272
# Todo: Complete this.

0 commit comments

Comments
 (0)