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:
parent
5e4276b0bd
commit
91a190a785
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue