From 458d990d9fdc668f12a3363ef80eb0b73ce0d3b4 Mon Sep 17 00:00:00 2001 From: Yoshihiko Ozaki <30489874+y0z@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:05:58 +0900 Subject: [PATCH] Update recipes/007_benchmarks_advanced.py Co-authored-by: Shuhei Watanabe <47781922+nabenabe0928@users.noreply.github.com> --- recipes/007_benchmarks_advanced.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/007_benchmarks_advanced.py b/recipes/007_benchmarks_advanced.py index 2eb36a51..30d4b46f 100644 --- a/recipes/007_benchmarks_advanced.py +++ b/recipes/007_benchmarks_advanced.py @@ -82,7 +82,7 @@ def evaluate_constraints(self, params: dict[str, float]) -> tuple[float]: else: y = params["y"] c1 = x + y - 3 - return [c0, c1] + return c0, c1 ###################################################################################################