From bcfa3b89e3b5f90a343fa727a5247d083b2ba6c6 Mon Sep 17 00:00:00 2001 From: Jacob de Nobel Date: Mon, 6 May 2024 12:41:35 +0200 Subject: [PATCH] added comma --- ioh/src/problem_helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioh/src/problem_helpers.cpp b/ioh/src/problem_helpers.cpp index b6100680..8c3c55d2 100644 --- a/ioh/src/problem_helpers.cpp +++ b/ioh/src/problem_helpers.cpp @@ -282,7 +282,7 @@ void define_helper_classes(py::module &m) py::class_(m, "MetaData") .def(py::init(), py::arg("problem_id"), py::arg("instance"), py::arg("name"), py::arg("n_variables"), py::arg("optimization_type"), - py::arg("final_target") = 1e-8 + py::arg("final_target") = 1e-8, R"pbdoc( Problem meta data. Contains static information about problems, such as their name and id.