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 d6ab464 commit 80af7c0Copy full SHA for 80af7c0
src/systems/dependency_graphs.jl
@@ -15,7 +15,7 @@ end
15
equation_dependencies(sys::AbstractSystem; variables=states(sys)) = extract_variables(equations(sys), variables)
16
17
# modeled on LightGraphs SimpleGraph
18
-mutable struct BiPartiteGraph{T <: Integer}
+mutable struct BipartiteGraph{T <: Integer}
19
ne::Int
20
fadjlist::Vector{Vector{T}} # fadjlist[src] = [dest1,dest2,...]
21
badjlist::Vector{Vector{T}} # badjlist[dst] = [src1,src2,...]
@@ -35,7 +35,7 @@ function asgraph(eqdeps, vtois)
35
ne += 1
36
end
37
38
- BiPartiteGraph(ne, fadjlist, badjlist)
+ BipartiteGraph(ne, fadjlist, badjlist)
39
40
41
# could be made to directly generate graph and save memory
0 commit comments