We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 871ea8e commit d067071Copy full SHA for d067071
src/incidence_matrix.jl
@@ -70,9 +70,9 @@ function incidence_matrix(
70
val = Vector{Float64}()
71
M = length(igraph._con_node_map)
72
N = length(igraph._var_node_map)
73
- for e in edges(igraph._graph)
74
- i = src(e)
75
- j = dst(e)
+ for e in Graphs.edges(igraph._graph)
+ i = Graphs.src(e)
+ j = Graphs.dst(e)
76
if typeof(igraph._nodes[i]) <: JuMP.VariableRef
77
i, j = j, i
78
end
0 commit comments