mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 17:58:06 +00:00
ensure relevancy isn't increased between calls
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
61371b4abf
commit
5dfe4a4b48
11 changed files with 110 additions and 70 deletions
|
@ -53,6 +53,7 @@ namespace sat {
|
|||
m_asymm_branch(*this, p),
|
||||
m_probing(*this, p),
|
||||
m_mus(*this),
|
||||
m_binspr(*this),
|
||||
m_inconsistent(false),
|
||||
m_searching(false),
|
||||
m_conflict(justification(0)),
|
||||
|
@ -1921,6 +1922,10 @@ namespace sat {
|
|||
}
|
||||
}
|
||||
|
||||
if (m_config.m_binspr && !inconsistent()) {
|
||||
m_binspr();
|
||||
}
|
||||
|
||||
#if 0
|
||||
static unsigned file_no = 0;
|
||||
#pragma omp critical (print_sat)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue