We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1162914 commit 4737575Copy full SHA for 4737575
MsSolver.cc
@@ -733,7 +733,8 @@ void MsSolver::maxsat_solve(solve_Command cmd)
733
return;
734
}
735
736
- if (opt_scip_parallel && scip_solver.asynch_result.valid() &&
+ if (opt_scip_parallel && scip_solver.asynch_result.valid() &&
737
+ scip_solver.asynch_result.wait_for(std::chrono::milliseconds(1)) == std::future_status::ready &&
738
l_True == scip_solver.asynch_result.get()) break;
739
#endif
740
sat_conflicts.clear();
0 commit comments