Skip to content

Commit

Permalink
fix bap tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Oct 28, 2024
1 parent fb74686 commit 0d7a669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/branch-and-price/assignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ TEST_CASE("Solve Generalized Assignment Problem instances with different branch-

Model model(env);

auto x = Var::make_vector(env, Dim<2>(n_agents, n_jobs), 0., 1., Binary, "x");
auto x = Var::make_vector(env, Dim<2>(n_agents, n_jobs), 0., 1., Binary, 0., "x");
model.add_vector<Var, 2>(x);

for (unsigned int i = 0 ; i < n_agents ; ++i) {
Expand Down

0 comments on commit 0d7a669

Please sign in to comment.