From cd12ad4b0a3db9e7d84171abb04d10b006fc6029 Mon Sep 17 00:00:00 2001 From: jacobdenobel Date: Wed, 28 Jun 2023 21:26:20 +0200 Subject: [PATCH] rename ma namespace --- include/ioh/problem/bbob/many_affine.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ioh/problem/bbob/many_affine.hpp b/include/ioh/problem/bbob/many_affine.hpp index c16ee89e5..030371f50 100644 --- a/include/ioh/problem/bbob/many_affine.hpp +++ b/include/ioh/problem/bbob/many_affine.hpp @@ -4,7 +4,7 @@ namespace ioh::problem::bbob { - namespace affine { + namespace many_affine { inline std::array get_weights(const int instance){ auto weights = common::random::bbob2009::uniform(24, 2000 + instance, 0., 1.); @@ -64,7 +64,7 @@ namespace ioh::problem::bbob */ ManyAffine(const int instance, const int n_variables) : ManyAffine(common::random::bbob2009::uniform(n_variables, 1000 + instance, -4., 4.), - affine::get_weights(instance), + many_affine::get_weights(instance), common::fill_array(instance), n_variables, ManyAffine::default_scales) { }