Skip to content

Commit ab0421a

Browse files
committed
format
1 parent 8701a13 commit ab0421a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/MOI_wrapper.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,11 @@ end
627627
MOI.supports(::Optimizer, ::MOI.NodeLimit) = true
628628

629629
function MOI.set(model::Optimizer, ::MOI.NodeLimit, ::Nothing)
630-
return MOI.set(model, MOI.RawOptimizerAttribute("mip_max_nodes"), typemax(Int32))
630+
return MOI.set(
631+
model,
632+
MOI.RawOptimizerAttribute("mip_max_nodes"),
633+
typemax(Int32),
634+
)
631635
end
632636

633637
function MOI.set(model::Optimizer, ::MOI.NodeLimit, limit::Real)

0 commit comments

Comments
 (0)