Skip to content

Commit 46b138c

Browse files
authored
Fix performance of adding SecondOrderCone constraints (#561)
1 parent 3ffff36 commit 46b138c

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

src/MOI_wrapper/MOI_wrapper.jl

+10-11
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
# Use of this source code is governed by an MIT-style license that can be found
55
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
66

7-
import MathOptInterface
8-
9-
const MOI = MathOptInterface
10-
const CleverDicts = MOI.Utilities.CleverDicts
7+
import MathOptInterface as MOI
8+
import MathOptInterface.Utilities: CleverDicts
119

1210
@enum(
1311
_BoundType,
@@ -18,6 +16,7 @@ const CleverDicts = MOI.Utilities.CleverDicts
1816
_INTERVAL,
1917
_EQUAL_TO
2018
)
19+
2120
@enum(
2221
_ObjectiveType,
2322
_SINGLE_VARIABLE,
@@ -4292,13 +4291,13 @@ function MOI.add_constraint(
42924291

42934292
# First, check the lower bound on t.
42944293
t_info = _info(model, f.variables[1])
4295-
lb = _get_variable_lower_bound(model, t_info)
4296-
if isnan(t_info.lower_bound_if_soc) && lb < 0.0
4297-
# If `t_info.lower_bound_if_bounded` is active, this just makes
4298-
# `t_info.lower_bound_if_soc` equal to it. If `lower_bound_if_bounded`
4299-
# is set after, then it will call `_set_variable_lower_bound` and
4300-
# update `lower_bound_if_soc` accordingly.
4301-
t_info.lower_bound_if_soc = lb
4294+
# Check `.lower_bound_if_bounded` instead of `_get_variable_lower_bound` so
4295+
# that we don't incur a call to `GRBupdate`.
4296+
lb = t_info.lower_bound_if_bounded
4297+
if isnan(t_info.lower_bound_if_soc) && (isnan(lb) || lb < 0.0)
4298+
# If `isnan(lb)`, then we haven't set a bound. The default should be
4299+
# Gurobi's default. This is necessary for when we delete SOC constraints.
4300+
t_info.lower_bound_if_soc = isnan(lb) ? -GRB_INFINITY : lb
43024301
ret = GRBsetdblattrelement(model, "LB", Cint(t_info.column - 1), 0.0)
43034302
_check_ret(model, ret)
43044303
end

0 commit comments

Comments
 (0)