4
4
# Use of this source code is governed by an MIT-style license that can be found
5
5
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
6
6
7
- import MathOptInterface
8
-
9
- const MOI = MathOptInterface
10
- const CleverDicts = MOI. Utilities. CleverDicts
7
+ import MathOptInterface as MOI
8
+ import MathOptInterface. Utilities: CleverDicts
11
9
12
10
@enum (
13
11
_BoundType,
@@ -18,6 +16,7 @@ const CleverDicts = MOI.Utilities.CleverDicts
18
16
_INTERVAL,
19
17
_EQUAL_TO
20
18
)
19
+
21
20
@enum (
22
21
_ObjectiveType,
23
22
_SINGLE_VARIABLE,
@@ -4292,13 +4291,13 @@ function MOI.add_constraint(
4292
4291
4293
4292
# First, check the lower bound on t.
4294
4293
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
4302
4301
ret = GRBsetdblattrelement (model, " LB" , Cint (t_info. column - 1 ), 0.0 )
4303
4302
_check_ret (model, ret)
4304
4303
end
0 commit comments