Skip to content

Commit 594bf94

Browse files
committed
Fix docstring
1 parent c1ce388 commit 594bf94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Utilities/penalty_relaxation.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ julia> f = MOI.modify(model, c, MOI.Utilities.ScalarPenaltyRelaxation(2.0));
4646
4747
julia> print(model)
4848
Minimize ScalarAffineFunction{Float64}:
49-
0.0 + 2.0 v[2]
49+
0.0 + 2.0 v[2]
5050
5151
Subject to:
5252
5353
ScalarAffineFunction{Float64}-in-LessThan{Float64}
54-
0.0 + 1.0 v[1] - 1.0 v[2] <= 2.0
54+
0.0 + 1.0 v[1] - 1.0 v[2] <= 2.0
5555
5656
VariableIndex-in-GreaterThan{Float64}
57-
v[2] >= 0.0
57+
v[2] >= 0.0
5858
5959
julia> f isa MOI.ScalarAffineFunction{Float64}
6060
true

0 commit comments

Comments
 (0)