3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-09 20:50:50 +00:00

disable multi-threading for validation code, masks #4196

This commit is contained in:
Nikolaj Bjorner 2020-05-03 10:37:29 -07:00
parent 5e4276b0bd
commit 91a190a785

View file

@ -385,8 +385,7 @@ namespace smt {
TRACE("context", tout << "inconsistent\n";); TRACE("context", tout << "inconsistent\n";);
SASSERT(inconsistent()); SASSERT(inconsistent());
m_conflict = null_b_justification; m_conflict = null_b_justification;
m_not_l = null_literal; m_not_l = null_literal;
SASSERT(m_search_lvl == get_search_level());
} }
} }
} }
@ -619,6 +618,7 @@ namespace smt {
// //
void context::validate_consequences(expr_ref_vector const& assumptions, expr_ref_vector const& vars, void context::validate_consequences(expr_ref_vector const& assumptions, expr_ref_vector const& vars,
expr_ref_vector const& conseq, expr_ref_vector const& unfixed) { expr_ref_vector const& conseq, expr_ref_vector const& unfixed) {
m_fparams.m_threads = 1;
expr_ref tmp(m); expr_ref tmp(m);
SASSERT(!inconsistent()); SASSERT(!inconsistent());
for (expr* c : conseq) { for (expr* c : conseq) {