Skip to content

Commit 810361e

Browse files
committed
Fix format
1 parent f85af6f commit 810361e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/Bridges/Constraint/bridges/SplitHyperRectangleBridge.jl

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

209-
_get_free_start(bridge, ::Union{MOI.ConstraintDualStart,MOI.ConstraintDual}) = bridge.free_dual_start
209+
function _get_free_start(
210+
bridge,
211+
::Union{MOI.ConstraintDualStart,MOI.ConstraintDual},
212+
)
213+
return bridge.free_dual_start
214+
end
210215

211-
function _set_free_start(bridge, ::Union{MOI.ConstraintDualStart,MOI.ConstraintDual}, value)
216+
function _set_free_start(
217+
bridge,
218+
::Union{MOI.ConstraintDualStart,MOI.ConstraintDual},
219+
value,
220+
)
212221
bridge.free_dual_start = value
213222
return
214223
end

0 commit comments

Comments
 (0)