Skip to content

Commit 573a3e8

Browse files
committed
Fix formatting
1 parent 7bab68d commit 573a3e8

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
@@ -736,7 +736,10 @@ function _get_all_including_bridged(
736736
push!(user_only_variables, user_variable)
737737
n = Variable.length_of_vector_of_variables(map, user_variable)
738738
for i in 1:n-1
739-
push!(user_only_variables, MOI.VariableIndex(user_variable.value - i))
739+
push!(
740+
user_only_variables,
741+
MOI.VariableIndex(user_variable.value - i),
742+
)
740743
end
741744
else
742745
# This bridge maps `user_variable` to a list of `variables`. We need

0 commit comments

Comments
 (0)