mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix the code to cube at the correct frequency (#7422)
Co-authored-by: stormckey <chenhaogao123@gmail.com>
This commit is contained in:
parent
5993735b34
commit
3896e18227
|
@ -149,7 +149,7 @@ namespace smt {
|
||||||
expr_ref c(pm);
|
expr_ref c(pm);
|
||||||
|
|
||||||
pctx.get_fparams().m_max_conflicts = std::min(thread_max_conflicts, max_conflicts);
|
pctx.get_fparams().m_max_conflicts = std::min(thread_max_conflicts, max_conflicts);
|
||||||
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)
|
||||||
cube(pctx, lasms, c);
|
cube(pctx, lasms, c);
|
||||||
IF_VERBOSE(1, verbose_stream() << "(smt.thread " << i;
|
IF_VERBOSE(1, verbose_stream() << "(smt.thread " << i;
|
||||||
if (num_rounds > 0) verbose_stream() << " :round " << num_rounds;
|
if (num_rounds > 0) verbose_stream() << " :round " << num_rounds;
|
||||||
|
|
Loading…
Reference in a new issue