Skip to content

Commit b4d5b97

Browse files
committed
Update String-Symbol in constructor
1 parent 41f1ac0 commit b4d5b97

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
@@ -272,7 +272,7 @@ function DFGVariable(label::Symbol, softtype::T;
272272
tags::Set{Symbol}=Set{Symbol}(),
273273
estimateDict::Dict{Symbol, <: AbstractPointParametricEst}=Dict{Symbol, MeanMaxPPE}(),
274274
solverDataDict::Dict{Symbol, VariableNodeData{T}}=Dict{Symbol, VariableNodeData{T}}(),
275-
smallData::Dict{String, SmallDataTypes}=Dict{String, SmallDataTypes}(),
275+
smallData::Dict{Symbol, SmallDataTypes}=Dict{Symbol, SmallDataTypes}(),
276276
dataDict::Dict{Symbol, AbstractDataEntry}=Dict{Symbol,AbstractDataEntry}(),
277277
solvable::Int=1) where {T <: InferenceVariable}
278278

@@ -289,7 +289,7 @@ function DFGVariable(label::Symbol,
289289
nstime::Nanosecond = Nanosecond(0),
290290
tags::Set{Symbol}=Set{Symbol}(),
291291
estimateDict::Dict{Symbol, <: AbstractPointParametricEst}=Dict{Symbol, MeanMaxPPE}(),
292-
smallData::Dict{String, SmallDataTypes}=Dict{String, SmallDataTypes}(),
292+
smallData::Dict{Symbol, SmallDataTypes}=Dict{Symbol, SmallDataTypes}(),
293293
dataDict::Dict{Symbol, AbstractDataEntry}=Dict{Symbol,AbstractDataEntry}(),
294294
solvable::Int=1) where {T <: InferenceVariable}
295295
if timestamp isa DateTime

0 commit comments

Comments
 (0)