Skip to content

Commit

Permalink
rename ma namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdenobel committed Jun 28, 2023
1 parent d6053a9 commit cd12ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ioh/problem/bbob/many_affine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace ioh::problem::bbob
{
namespace affine {
namespace many_affine {
inline std::array<double, 24> get_weights(const int instance){
auto weights = common::random::bbob2009::uniform(24, 2000 + instance, 0., 1.);

Expand Down Expand Up @@ -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<int, 24>(instance), n_variables, ManyAffine::default_scales)
{
}
Expand Down

0 comments on commit cd12ad4

Please sign in to comment.