Skip to content

Commit f8de82c

Browse files
committed
keyword params
1 parent 1b182cd commit f8de82c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/GraphsDFG.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ mutable struct GraphsDFG{T<:AbstractParams} <: AbstractDFG
6161
d::String="Graphs.jl implementation",
6262
n::Int64=0,
6363
l::Dict{Symbol, Int64}=Dict{Symbol, Int64}(),
64-
a::Vector{Symbol}=Symbol[],
65-
s::T=NoSolverParams()) where T <: AbstractParams = new{T}(g, d, n, l, a, s)
64+
a::Vector{Symbol}=Symbol[];
65+
params::T=NoSolverParams()) where T <: AbstractParams = new{T}(g, d, n, l, a, params)
6666
end
6767

6868

0 commit comments

Comments
 (0)