Skip to content

Commit b76d084

Browse files
committed
Update
1 parent 4bf30b4 commit b76d084

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/algorithms/EpsilonConstraint.jl

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,8 @@ function minimize_multiobjective!(
116116
)
117117
yN = max(solution_1[1].y[2], solution_2[1].y[2])
118118
constant_2 = MOI.constant(f2, Float64)
119-
ci_2 = MOI.Utilities.normalize_and_add_constraint(
120-
inner,
121-
f2,
122-
MOI.LessThan(yN)
123-
)
119+
ci_2 =
120+
MOI.Utilities.normalize_and_add_constraint(inner, f2, MOI.LessThan(yN))
124121
bound_1 -= constant_1
125122
status = MOI.OPTIMAL
126123
for _ in 3:n_points

0 commit comments

Comments
 (0)