Skip to content

Commit 9726dca

Browse files
committed
Update
1 parent 8641752 commit 9726dca

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
@@ -114,11 +114,8 @@ function minimize_multiobjective!(
114114
)
115115
yN = max(solution_1[1].y[2], solution_2[1].y[2])
116116
constant_2 = MOI.constant(f2, Float64)
117-
ci_2 = MOI.Utilities.normalize_and_add_constraint(
118-
model,
119-
f2,
120-
MOI.LessThan(yN)
121-
)
117+
ci_2 =
118+
MOI.Utilities.normalize_and_add_constraint(model, f2, MOI.LessThan(yN))
122119
bound_1 -= constant_1
123120
status = MOI.OPTIMAL
124121
for _ in 3:n_points

0 commit comments

Comments
 (0)