Skip to content

Commit

Permalink
try a manual change to format
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Feb 19, 2024
1 parent decfb51 commit 60396c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bipartite_graph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ function Base.push!(m::Matching, v)
end
end

function complete(m::Matching{U}, N = length(m.match)) where {U}
function complete(m::Matching{U},
N = length(m.match)) where {U}
m.inv_match !== nothing && return m
inv_match = Union{U, Int}[unassigned for _ in 1:N]
for (i, eq) in enumerate(m.match)
Expand Down

0 comments on commit 60396c3

Please sign in to comment.