Skip to content

Commit 0465bcc

Browse files
committed
explicit SimpleGraph path
1 parent 8841111 commit 0465bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/staticgraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function StaticGraph(nvtx::I, sd::Vector{Tuple{T, T}}) where {T<:Integer, I<:Int
2929
return StaticGraph(nvtx, ss, ds)
3030
end
3131

32-
function StaticGraph(g::LightGraphs.SimpleGraph)
32+
function StaticGraph(g::LightGraphs.SimpleGraphs.SimpleGraph)
3333
sd1 = [Tuple(e) for e in edges(g)]
3434
ds1 = [Tuple(reverse(e)) for e in edges(g)]
3535
sd = sort(vcat(sd1, ds1))

0 commit comments

Comments
 (0)