Skip to content

Commit 5fb1b5c

Browse files
committed
longer time for clique table gen
1 parent 395d5f0 commit 5fb1b5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/mip_heuristics/diversity/diversity_manager.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ bool diversity_manager_t<i_t, f_t>::run_presolve(f_t time_limit, timer_t global_
213213
!problem_ptr->empty) {
214214
// TODO this is just CPU time and blocking the GPU time.
215215
// execute this in parallel with something else.
216-
f_t time_limit_for_clique_table = std::min(3., presolve_timer.remaining_time());
216+
f_t time_limit_for_clique_table = std::min(10., presolve_timer.remaining_time());
217217
// if it is deterministic run until the end
218218
if (context.settings.determinism_mode == CUOPT_MODE_DETERMINISTIC) {
219219
time_limit_for_clique_table = std::numeric_limits<f_t>::infinity();

0 commit comments

Comments
 (0)