3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 19:27:06 +00:00

disable multi-threading for validation code, masks

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