3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-05 00:20:50 +00:00

ensure base class has propagation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-05-30 22:21:15 -07:00
parent a595e98707
commit 24e5a6ae3f
2 changed files with 2 additions and 1 deletions

View file

@ -780,6 +780,7 @@ namespace smt {
} }
void theory_array_full::propagate() { void theory_array_full::propagate() {
theory_array::propagate();
if (m_choice_qhead == m_choice_terms.size()) if (m_choice_qhead == m_choice_terms.size())
return; return;
ctx.push_trail(value_trail(m_choice_qhead)); ctx.push_trail(value_trail(m_choice_qhead));

View file

@ -534,7 +534,7 @@ int main(int argc, char ** argv) {
} }
#ifndef __EMSCRIPTEN__ #ifndef __EMSCRIPTEN__
if (num_jobs > 0) if (num_jobs > 0 && (test_all || requested_tests.size() > 1))
return run_parallel(argv[0], test_all, num_jobs, extra_args, requested_tests); return run_parallel(argv[0], test_all, num_jobs, extra_args, requested_tests);
#endif #endif