Skip to content

Commit 5100b0d

Browse files
committed
Fix format
1 parent 7296348 commit 5100b0d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Bridges/bridge_optimizer.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,10 @@ function _is_added_by_bridge(
554554
ret = get!(cache, (F, S)) do
555555
set = Set{Int64}()
556556
for bridge in values(c_map)
557-
for ci in MOI.get(bridge, MOI.ListOfConstraintIndices{F,S}())
557+
for ci in MOI.get(
558+
bridge,
559+
MOI.ListOfConstraintIndices{F,S}(),
560+
)
558561
push!(set, ci.value)
559562
end
560563
end

0 commit comments

Comments
 (0)