We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5993735 commit 3896e18Copy full SHA for 3896e18
src/smt/smt_parallel.cpp
@@ -149,7 +149,7 @@ namespace smt {
149
expr_ref c(pm);
150
151
pctx.get_fparams().m_max_conflicts = std::min(thread_max_conflicts, max_conflicts);
152
- if (num_rounds > 0 && (pctx.get_fparams().m_threads_cube_frequency % num_rounds) == 0)
+ if (num_rounds > 0 && (num_rounds % pctx.get_fparams().m_threads_cube_frequency) == 0)
153
cube(pctx, lasms, c);
154
IF_VERBOSE(1, verbose_stream() << "(smt.thread " << i;
155
if (num_rounds > 0) verbose_stream() << " :round " << num_rounds;
0 commit comments