Skip to content

Commit e711b42

Browse files
committed
undid tags as set, to rather in a twig
1 parent bd40774 commit e711b42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/entities/DFGFactor.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mutable struct DFGFactor{T, S} <: AbstractDFGFactor
4747
timestamp::DateTime
4848
"""Factor tags, e.g [:FACTOR].
4949
Accessors: `getTags`, `addTags!`, and `deleteTags!`"""
50-
tags::Set{Symbol}#Vector{Symbol} #TODO I propose we use a set since tags can't be repeated.
50+
tags::Vector{Symbol}
5151
"""Solver data.
5252
Accessors: `getSolverData`, `setSolverData!`"""
5353
solverData::GenericFunctionNodeData{T, S}

src/entities/DFGVariable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct DFGVariable{T<:InferenceVariable} <: AbstractDFGVariable
2020
timestamp::DateTime
2121
"""Variable tags, e.g [:POSE, :VARIABLE, and :LANDMARK].
2222
Accessors: `getTags`, `addTags!`, and `deleteTags!`"""
23-
tags::tags::Set{Symbol}#Vector{Symbol} #TODO I propose we use a set since tags can't be repeated.
23+
tags::Vector{Symbol}
2424
"""Dictionary of estimates keyed by solverDataDict keys
2525
Accessors: `addEstimate!`, `updateEstimate!`, and `deleteEstimate!`"""
2626
ppeDict::Dict{Symbol, <: AbstractPointParametricEst}

0 commit comments

Comments
 (0)