Skip to content

Commit f85af6f

Browse files
committed
Fix
1 parent 2553c6c commit f85af6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Bridges/Constraint/bridges/SplitHyperRectangleBridge.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ function MOI.supports(
206206
return MOI.supports(model, attr, MOI.ConstraintIndex{G,MOI.Nonnegatives})
207207
end
208208

209-
_get_free_start(bridge, ::MOI.ConstraintDualStart) = bridge.free_dual_start
209+
_get_free_start(bridge, ::Union{MOI.ConstraintDualStart,MOI.ConstraintDual}) = bridge.free_dual_start
210210

211-
function _set_free_start(bridge, ::MOI.ConstraintDualStart, value)
211+
function _set_free_start(bridge, ::Union{MOI.ConstraintDualStart,MOI.ConstraintDual}, value)
212212
bridge.free_dual_start = value
213213
return
214214
end

0 commit comments

Comments
 (0)