Skip to content

Commit 80af7c0

Browse files
committed
BiPartite -> Bipartite
1 parent d6ab464 commit 80af7c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/systems/dependency_graphs.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ end
1515
equation_dependencies(sys::AbstractSystem; variables=states(sys)) = extract_variables(equations(sys), variables)
1616

1717
# modeled on LightGraphs SimpleGraph
18-
mutable struct BiPartiteGraph{T <: Integer}
18+
mutable struct BipartiteGraph{T <: Integer}
1919
ne::Int
2020
fadjlist::Vector{Vector{T}} # fadjlist[src] = [dest1,dest2,...]
2121
badjlist::Vector{Vector{T}} # badjlist[dst] = [src1,src2,...]
@@ -35,7 +35,7 @@ function asgraph(eqdeps, vtois)
3535
ne += 1
3636
end
3737

38-
BiPartiteGraph(ne, fadjlist, badjlist)
38+
BipartiteGraph(ne, fadjlist, badjlist)
3939
end
4040

4141
# could be made to directly generate graph and save memory

0 commit comments

Comments
 (0)