Skip to content

Commit a5e678e

Browse files
committed
remove todo
1 parent 31c84f4 commit a5e678e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cpp/src/mip/solver.cu

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ solution_t<i_t, f_t> mip_solver_t<i_t, f_t>::run_solver()
138138
*context.problem_ptr->original_problem_ptr, *context.problem_ptr, settings);
139139

140140
solution_t<i_t, f_t> sol(*context.problem_ptr);
141-
sol.copy_new_assignment(
142-
host_copy(opt_sol.get_primal_solution())); // TODO: check if this is correct
141+
sol.copy_new_assignment(host_copy(opt_sol.get_primal_solution()));
143142
if (opt_sol.get_termination_status() == pdlp_termination_status_t::Optimal ||
144143
opt_sol.get_termination_status() == pdlp_termination_status_t::PrimalInfeasible ||
145144
opt_sol.get_termination_status() == pdlp_termination_status_t::DualInfeasible) {

0 commit comments

Comments
 (0)