mirror of
https://github.com/Z3Prover/z3
synced 2026-06-04 16:10:50 +00:00
ensure base class has propagation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a595e98707
commit
24e5a6ae3f
2 changed files with 2 additions and 1 deletions
|
|
@ -780,6 +780,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
void theory_array_full::propagate() {
|
||||
theory_array::propagate();
|
||||
if (m_choice_qhead == m_choice_terms.size())
|
||||
return;
|
||||
ctx.push_trail(value_trail(m_choice_qhead));
|
||||
|
|
|
|||
|
|
@ -534,7 +534,7 @@ int main(int argc, char ** argv) {
|
|||
}
|
||||
|
||||
#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);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue