Skip to content

Commit 91a190a

Browse files
disable multi-threading for validation code, masks #4196
1 parent 5e4276b commit 91a190a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/smt/smt_consequences.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,7 @@ namespace smt {
385385
TRACE("context", tout << "inconsistent\n";);
386386
SASSERT(inconsistent());
387387
m_conflict = null_b_justification;
388-
m_not_l = null_literal;
389-
SASSERT(m_search_lvl == get_search_level());
388+
m_not_l = null_literal;
390389
}
391390
}
392391
}
@@ -619,6 +618,7 @@ namespace smt {
619618
//
620619
void context::validate_consequences(expr_ref_vector const& assumptions, expr_ref_vector const& vars,
621620
expr_ref_vector const& conseq, expr_ref_vector const& unfixed) {
621+
m_fparams.m_threads = 1;
622622
expr_ref tmp(m);
623623
SASSERT(!inconsistent());
624624
for (expr* c : conseq) {

0 commit comments

Comments
 (0)