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 7bab68d commit 573a3e8Copy full SHA for 573a3e8
src/Bridges/bridge_optimizer.jl
@@ -736,7 +736,10 @@ function _get_all_including_bridged(
736
push!(user_only_variables, user_variable)
737
n = Variable.length_of_vector_of_variables(map, user_variable)
738
for i in 1:n-1
739
- push!(user_only_variables, MOI.VariableIndex(user_variable.value - i))
+ push!(
740
+ user_only_variables,
741
+ MOI.VariableIndex(user_variable.value - i),
742
+ )
743
end
744
else
745
# This bridge maps `user_variable` to a list of `variables`. We need
0 commit comments