@@ -25,18 +25,18 @@ mutable struct LightGraphsDFG{T <: AbstractParams} <: AbstractDFG
25
25
end
26
26
27
27
# TODO ? do we not want props such as userId, robotId, sessionId, etc...
28
- function LightGraphsDFG {T} (g:: LFGType = MetaGraph (),
29
- d :: String = " LightGraphs.jl implementation" ,
28
+ function LightGraphsDFG {T} (g:: LFGType = MetaGraph ();
29
+ description :: String = " LightGraphs.jl implementation" ,
30
30
userId:: String = " User ID" ,
31
31
robotId:: String = " Robot ID" ,
32
- sessionId:: String = " Session ID" ;
32
+ sessionId:: String = " Session ID" ,
33
33
params:: T = NoSolverParams ()) where T <: AbstractParams
34
- set_prop! (g, :description , d )
34
+ set_prop! (g, :description , description )
35
35
set_prop! (g, :userId , userId)
36
36
set_prop! (g, :robotId , robotId)
37
37
set_prop! (g, :sessionId , sessionId)
38
38
set_indexing_prop! (g, :label )
39
- LightGraphsDFG {T} (g, d , userId, robotId, sessionId, Symbol[], params)
39
+ LightGraphsDFG {T} (g, description , userId, robotId, sessionId, Symbol[], params)
40
40
end
41
41
42
42
Base. propertynames (x:: LightGraphsDFG , private:: Bool = false ) =
0 commit comments