From 4423de185263ed20dd10764d950dffa3b0557225 Mon Sep 17 00:00:00 2001 From: jacobdenobel Date: Thu, 15 Feb 2024 14:47:30 +0100 Subject: [PATCH] update workflow --- .github/workflows/python-publish.yml | 1 - ioh/__init__.py | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index dbc0aa8c..c6bd56d9 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -20,7 +20,6 @@ jobs: uses: pypa/cibuildwheel@v2.16.5 env: CIBW_SKIP: pp* - - uses: actions/upload-artifact@v4 with: name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} diff --git a/ioh/__init__.py b/ioh/__init__.py index afe26d28..b96979ce 100644 --- a/ioh/__init__.py +++ b/ioh/__init__.py @@ -104,6 +104,9 @@ class ProblemClass(enum.Enum): GRAPH = "GraphProblem" STAR_INTEGER = "IntegerStarDiscrepancy" + CEC2013 = "CEC2013" + CEC2022 = "CEC2022" + def is_real(self): return self in ( ProblemClass.REAL,