Skip to content

Commit

Permalink
include dynamic bin val into this branch, fix function identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri Rusin committed Nov 10, 2023
1 parent 9cc3715 commit 9968fc3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 103 deletions.
3 changes: 1 addition & 2 deletions include/ioh/problem.hpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#pragma once

#include "problem/bbob.hpp"
#include "problem/bbob.hpp"
#include "problem/dynamic_bin_val.hpp"
#include "problem/pbo.hpp"
#include "problem/pbo.hpp"
#include "problem/cec.hpp"
#include "problem/problem.hpp"
#include "problem/single.hpp"
#include "problem/submodular.hpp"
Expand Down
100 changes: 0 additions & 100 deletions include/ioh/problem/dynamic_bin_val/dynamic_bin_val.hpp

This file was deleted.

2 changes: 1 addition & 1 deletion tests/cpp/problem/binval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
int main()
{
const auto &dyn_problem_factory = ioh::problem::ProblemRegistry<ioh::problem::DynamicBinValPareto>::instance();
auto d = dyn_problem_factory.create(10002, 1, 5);
auto d = dyn_problem_factory.create(10003, 1, 5);
auto x = std::vector<int>{1, 0, 1, 1, 1};
double value = (*d)(x);

Expand Down

0 comments on commit 9968fc3

Please sign in to comment.